-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug Fix - azurerm_api_management_api_operation] - Handling example.value none-string types #14848
Merged
stephybun
merged 4 commits into
hashicorp:main
from
xuzhang3:f/apim_operation_import_crash
Apr 7, 2022
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,12 +1,13 @@ | ||||||||||||||||||||||||||||
package schemaz | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||
"encoding/json" | ||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||
"reflect" | ||||||||||||||||||||||||||||
"strings" | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/features" | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
"github.com/Azure/azure-sdk-for-go/services/apimanagement/mgmt/2021-08-01/apimanagement" | ||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/features" | ||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/services/apimanagement/validate" | ||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" | ||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation" | ||||||||||||||||||||||||||||
|
@@ -180,9 +181,9 @@ func ExpandApiManagementOperationRepresentation(d *pluginsdk.ResourceData, schem | |||||||||||||||||||||||||||
return &outputs, nil | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
func FlattenApiManagementOperationRepresentation(input *[]apimanagement.RepresentationContract) []interface{} { | ||||||||||||||||||||||||||||
func FlattenApiManagementOperationRepresentation(input *[]apimanagement.RepresentationContract) ([]interface{}, error) { | ||||||||||||||||||||||||||||
if input == nil { | ||||||||||||||||||||||||||||
return []interface{}{} | ||||||||||||||||||||||||||||
return []interface{}{}, nil | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
outputs := make([]interface{}, 0) | ||||||||||||||||||||||||||||
|
@@ -197,10 +198,18 @@ func FlattenApiManagementOperationRepresentation(input *[]apimanagement.Represen | |||||||||||||||||||||||||||
output["form_parameter"] = FlattenApiManagementOperationParameterContract(v.FormParameters) | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
if v.Examples != nil { | ||||||||||||||||||||||||||||
output["example"] = FlattenApiManagementOperationParameterExampleContract(v.Examples) | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
if features.ThreePointOhBeta() && v.Examples["default"] != nil && v.Examples["default"].Value != nil { | ||||||||||||||||||||||||||||
output["sample"] = v.Examples["default"].Value.(string) | ||||||||||||||||||||||||||||
example, err := FlattenApiManagementOperationParameterExampleContract(v.Examples) | ||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
output["example"] = example | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
if !features.ThreePointOhBeta() && v.Examples["default"] != nil && v.Examples["default"].Value != nil { | ||||||||||||||||||||||||||||
value, err := convert2Json(v.Examples["default"].Value) | ||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
output["sample"] = value | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
@@ -215,7 +224,7 @@ func FlattenApiManagementOperationRepresentation(input *[]apimanagement.Represen | |||||||||||||||||||||||||||
outputs = append(outputs, output) | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
return outputs | ||||||||||||||||||||||||||||
return outputs, nil | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
func SchemaApiManagementOperationParameterContract() *pluginsdk.Schema { | ||||||||||||||||||||||||||||
|
@@ -355,8 +364,9 @@ func SchemaApiManagementOperationParameterExampleContract() *pluginsdk.Schema { | |||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
"value": { | ||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||
Optional: true, | ||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||
Optional: true, | ||||||||||||||||||||||||||||
DiffSuppressFunc: exampleSuppressEquivalentJSONDiffs, | ||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
"external_value": { | ||||||||||||||||||||||||||||
|
@@ -392,7 +402,12 @@ func ExpandApiManagementOperationParameterExampleContract(input []interface{}) m | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
if vs["value"] != nil { | ||||||||||||||||||||||||||||
outputs[name].Value = utils.String(vs["value"].(string)) | ||||||||||||||||||||||||||||
var js interface{} | ||||||||||||||||||||||||||||
if json.Unmarshal([]byte(vs["value"].(string)), &js) == nil { | ||||||||||||||||||||||||||||
outputs[name].Value = js | ||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
outputs[name].Value = utils.String(vs["value"].(string)) | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
if vs["external_value"] != nil { | ||||||||||||||||||||||||||||
|
@@ -403,9 +418,9 @@ func ExpandApiManagementOperationParameterExampleContract(input []interface{}) m | |||||||||||||||||||||||||||
return outputs | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
func FlattenApiManagementOperationParameterExampleContract(input map[string]*apimanagement.ParameterExampleContract) []interface{} { | ||||||||||||||||||||||||||||
func FlattenApiManagementOperationParameterExampleContract(input map[string]*apimanagement.ParameterExampleContract) ([]interface{}, error) { | ||||||||||||||||||||||||||||
if input == nil { | ||||||||||||||||||||||||||||
return []interface{}{} | ||||||||||||||||||||||||||||
return []interface{}{}, nil | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
outputs := make([]interface{}, 0) | ||||||||||||||||||||||||||||
|
@@ -422,8 +437,14 @@ func FlattenApiManagementOperationParameterExampleContract(input map[string]*api | |||||||||||||||||||||||||||
output["description"] = *v.Description | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
// value can be any type, may be a primitive value or an object | ||||||||||||||||||||||||||||
// https://github.com/Azure/azure-sdk-for-go/blob/main/services/apimanagement/mgmt/2021-08-01/apimanagement/models.go#L10236 | ||||||||||||||||||||||||||||
if v.Value != nil { | ||||||||||||||||||||||||||||
output["value"] = v.Value.(string) | ||||||||||||||||||||||||||||
value, err := convert2Json(v.Value) | ||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
output["value"] = value | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
if v.ExternalValue != nil { | ||||||||||||||||||||||||||||
|
@@ -433,7 +454,7 @@ func FlattenApiManagementOperationParameterExampleContract(input map[string]*api | |||||||||||||||||||||||||||
outputs = append(outputs, output) | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
return outputs | ||||||||||||||||||||||||||||
return outputs, nil | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
// CopyCertificateAndPassword copies any certificate and password attributes | ||||||||||||||||||||||||||||
|
@@ -452,3 +473,31 @@ func CopyCertificateAndPassword(vals []interface{}, hostName string, output map[ | |||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
func convert2Json(rawVal interface{}) (string, error) { | ||||||||||||||||||||||||||||
value := "" | ||||||||||||||||||||||||||||
if val, ok := rawVal.(string); ok { | ||||||||||||||||||||||||||||
value = val | ||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||
val, err := json.Marshal(rawVal) | ||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||
return "", fmt.Errorf("failed to marshal `representations.examples.value` to json: %+v", err) | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
value = string(val) | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
return value, nil | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
func exampleSuppressEquivalentJSONDiffs(k, old, new string, d *pluginsdk.ResourceData) bool { | ||||||||||||||||||||||||||||
var ojs interface{} | ||||||||||||||||||||||||||||
if json.Unmarshal([]byte(old), &ojs) != nil { | ||||||||||||||||||||||||||||
return strings.Compare(old, new) == 0 | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
var njs interface{} | ||||||||||||||||||||||||||||
if json.Unmarshal([]byte(new), &njs) != nil { | ||||||||||||||||||||||||||||
return strings.Compare(old, new) == 0 | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
return reflect.DeepEqual(ojs, njs) | ||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is an existing diff suppress func for JSONs in the provider.
Suggested change
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.