Skip to content

Commit

Permalink
Merge pull request #50 from mulesoft-anypoint/dev
Browse files Browse the repository at this point in the history
v1.7.0
  • Loading branch information
soufi authored Aug 26, 2024
2 parents f60b94d + 544f90f commit d48c719
Show file tree
Hide file tree
Showing 65 changed files with 7,294 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ HOSTNAME=anypoint.mulesoft.com
NAMESPACE=automation
NAME=anypoint
BINARY=terraform-provider-${NAME}
VERSION=1.6.1-SNAPSHOT
VERSION=1.6.2-SNAPSHOT
OS_ARCH=darwin_amd64

default: install
Expand Down
2 changes: 1 addition & 1 deletion anypoint/data_source_apim_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ func flattenApimAudit(audit *apim.Audit) map[string]interface{} {
}
}
if updated, ok := audit.GetUpdatedOk(); ok && updated != nil {
if val, ok := updated.GetDateOk(); ok && updated != nil {
if val, ok := updated.GetDateOk(); ok {
result["updated"] = *val
}
}
Expand Down
2 changes: 1 addition & 1 deletion anypoint/data_source_apim_instance_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func flattenApimInstancePolicyAudit(audit *apim_policy.Audit) map[string]interfa
}
}
if updated, ok := audit.GetUpdatedOk(); ok && updated != nil {
if val, ok := updated.GetDateOk(); ok && updated != nil {
if val, ok := updated.GetDateOk(); ok {
result["updated"] = val
}
}
Expand Down
2 changes: 1 addition & 1 deletion anypoint/data_source_apim_instance_upstreams.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func flattenApimUpstreamAudit(audit *apim_upstream.Audit) map[string]interface{}
}
}
if updated, ok := audit.GetUpdatedOk(); ok && updated != nil {
if val, ok := updated.GetDateOk(); ok && updated != nil {
if val, ok := updated.GetDateOk(); ok {
result["updated"] = val.String()
}
}
Expand Down
Loading

0 comments on commit d48c719

Please sign in to comment.