Skip to content

Commit

Permalink
Batch sync API models from upstream (#1752)
Browse files Browse the repository at this point in the history
Syncs API models from upstream pulling in model updates that did not get published via the SDK's standard release flow.
  • Loading branch information
jasdel committed Aug 5, 2022
1 parent a01a5c4 commit 876fd54
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 26 deletions.
16 changes: 9 additions & 7 deletions codegen/sdk-codegen/aws-models/appconfigdata.json
Expand Up @@ -82,9 +82,6 @@
]
}
},
"com.amazonaws.appconfigdata#Blob": {
"type": "blob"
},
"com.amazonaws.appconfigdata#ConfigurationSession": {
"type": "resource",
"identifiers": {
Expand Down Expand Up @@ -166,11 +163,10 @@
}
},
"Configuration": {
"target": "com.amazonaws.appconfigdata#Blob",
"target": "com.amazonaws.appconfigdata#SensitiveBlob",
"traits": {
"smithy.api#documentation": "<p>The data of the configuration. This may be empty if the client already has the latest\n version of configuration.</p>",
"smithy.api#httpPayload": {},
"smithy.api#sensitive": {}
"smithy.api#httpPayload": {}
}
}
}
Expand Down Expand Up @@ -318,6 +314,12 @@
]
}
},
"com.amazonaws.appconfigdata#SensitiveBlob": {
"type": "blob",
"traits": {
"smithy.api#sensitive": {}
}
},
"com.amazonaws.appconfigdata#StartConfigurationSession": {
"type": "operation",
"input": {
Expand Down Expand Up @@ -424,4 +426,4 @@
}
}
}
}
}
33 changes: 19 additions & 14 deletions codegen/sdk-codegen/aws-models/kafkaconnect.json
Expand Up @@ -471,11 +471,10 @@
}
},
"connectorConfiguration": {
"target": "com.amazonaws.kafkaconnect#__mapOf__string",
"target": "com.amazonaws.kafkaconnect#__sensitive__mapOf__string",
"traits": {
"smithy.api#documentation": "<p>A map of keys to values that represent the configuration for the connector.</p>",
"smithy.api#required": {},
"smithy.api#sensitive": {}
"smithy.api#required": {}
}
},
"connectorDescription": {
Expand Down Expand Up @@ -734,11 +733,10 @@
}
},
"propertiesFileContent": {
"target": "com.amazonaws.kafkaconnect#__string",
"target": "com.amazonaws.kafkaconnect#__sensitiveString",
"traits": {
"smithy.api#documentation": "<p>Base64 encoded contents of connect-distributed.properties file.</p>",
"smithy.api#required": {},
"smithy.api#sensitive": {}
"smithy.api#required": {}
}
}
}
Expand Down Expand Up @@ -1216,10 +1214,9 @@
}
},
"connectorConfiguration": {
"target": "com.amazonaws.kafkaconnect#__mapOf__string",
"target": "com.amazonaws.kafkaconnect#__sensitive__mapOf__string",
"traits": {
"smithy.api#documentation": "<p>A map of keys to values that represent the configuration for the connector.</p>",
"smithy.api#sensitive": {}
"smithy.api#documentation": "<p>A map of keys to values that represent the configuration for the connector.</p>"
}
},
"connectorDescription": {
Expand Down Expand Up @@ -2586,10 +2583,9 @@
}
},
"propertiesFileContent": {
"target": "com.amazonaws.kafkaconnect#__string",
"target": "com.amazonaws.kafkaconnect#__sensitiveString",
"traits": {
"smithy.api#documentation": "<p>Base64 encoded contents of the connect-distributed.properties file.</p>",
"smithy.api#sensitive": {}
"smithy.api#documentation": "<p>Base64 encoded contents of the connect-distributed.properties file.</p>"
}
},
"revision": {
Expand Down Expand Up @@ -2800,13 +2796,22 @@
}
}
},
"com.amazonaws.kafkaconnect#__mapOf__string": {
"com.amazonaws.kafkaconnect#__sensitiveString": {
"type": "string",
"traits": {
"smithy.api#sensitive": {}
}
},
"com.amazonaws.kafkaconnect#__sensitive__mapOf__string": {
"type": "map",
"key": {
"target": "com.amazonaws.kafkaconnect#__string"
},
"value": {
"target": "com.amazonaws.kafkaconnect#__string"
},
"traits": {
"smithy.api#sensitive": {}
}
},
"com.amazonaws.kafkaconnect#__string": {
Expand Down Expand Up @@ -2837,4 +2842,4 @@
}
}
}
}
}
6 changes: 3 additions & 3 deletions service/kafkaconnect/deserializers.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions service/kafkaconnect/serializers.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 876fd54

Please sign in to comment.