Skip to content
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

Release v1.40.39 #4089

Merged
merged 1 commit into from
Sep 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Release v1.40.39 (2021-09-08)
===

### Service Client Updates
* `service/kafka`: Updates service API and documentation
* `service/opensearch`: Adds new service
* `service/ram`: Updates service documentation

Release v1.40.38 (2021-09-07)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.40.38"
const SDKVersion = "1.40.39"
138 changes: 114 additions & 24 deletions models/apis/kafka/2018-11-14/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,35 @@
}, {
"shape" : "ForbiddenException"
} ]
},
"UpdateSecurity" : {
"name" : "UpdateSecurity",
"http" : {
"method" : "PATCH",
"requestUri" : "/v1/clusters/{clusterArn}/security",
"responseCode" : 200
},
"input" : {
"shape" : "UpdateSecurityRequest"
},
"output" : {
"shape" : "UpdateSecurityResponse"
},
"errors" : [ {
"shape" : "BadRequestException"
}, {
"shape" : "UnauthorizedException"
}, {
"shape" : "InternalServerErrorException"
}, {
"shape" : "ForbiddenException"
}, {
"shape" : "NotFoundException"
}, {
"shape" : "ServiceUnavailableException"
}, {
"shape" : "TooManyRequestsException"
} ]
}
},
"shapes": {
Expand Down Expand Up @@ -1108,6 +1137,10 @@
"Tls" : {
"shape" : "Tls",
"locationName" : "tls"
},
"Unauthenticated" : {
"shape" : "Unauthenticated",
"locationName" : "unauthenticated"
}
}
},
Expand Down Expand Up @@ -2220,20 +2253,20 @@
},
"required": [ "BrokerLogs" ]
},
"MutableClusterInfo": {
"type": "structure",
"members": {
"BrokerEBSVolumeInfo": {
"shape": "__listOfBrokerEBSVolumeInfo",
"locationName": "brokerEBSVolumeInfo"
"MutableClusterInfo" : {
"type" : "structure",
"members" : {
"BrokerEBSVolumeInfo" : {
"shape" : "__listOfBrokerEBSVolumeInfo",
"locationName" : "brokerEBSVolumeInfo"
},
"ConfigurationInfo": {
"shape": "ConfigurationInfo",
"locationName": "configurationInfo"
"ConfigurationInfo" : {
"shape" : "ConfigurationInfo",
"locationName" : "configurationInfo"
},
"NumberOfBrokerNodes": {
"shape": "__integer",
"locationName": "numberOfBrokerNodes"
"NumberOfBrokerNodes" : {
"shape" : "__integer",
"locationName" : "numberOfBrokerNodes"
},
"OpenMonitoring" : {
"shape" : "OpenMonitoring",
Expand All @@ -2247,13 +2280,21 @@
"shape" : "__string",
"locationName" : "kafkaVersion"
},
"LoggingInfo": {
"shape": "LoggingInfo",
"locationName": "loggingInfo"
"LoggingInfo" : {
"shape" : "LoggingInfo",
"locationName" : "loggingInfo"
},
"InstanceType": {
"shape": "__stringMin5Max32",
"locationName": "instanceType"
"InstanceType" : {
"shape" : "__string",
"locationName" : "instanceType"
},
"ClientAuthentication" : {
"shape" : "ClientAuthentication",
"locationName" : "clientAuthentication"
},
"EncryptionInfo" : {
"shape" : "EncryptionInfo",
"locationName" : "encryptionInfo"
}
}
},
Expand Down Expand Up @@ -2397,12 +2438,16 @@
"Tags"
]
},
"Tls": {
"type": "structure",
"members": {
"CertificateAuthorityArnList": {
"shape": "__listOf__string",
"locationName": "certificateAuthorityArnList"
"Tls" : {
"type" : "structure",
"members" : {
"CertificateAuthorityArnList" : {
"shape" : "__listOf__string",
"locationName" : "certificateAuthorityArnList"
},
"Enabled" : {
"shape" : "__boolean",
"locationName" : "enabled"
}
}
},
Expand All @@ -2423,6 +2468,15 @@
"httpStatusCode": 429
}
},
"Unauthenticated" : {
"type" : "structure",
"members" : {
"Enabled" : {
"shape" : "__boolean",
"locationName" : "enabled"
}
}
},
"UnauthorizedException": {
"type": "structure",
"members": {
Expand Down Expand Up @@ -2731,6 +2785,42 @@
}
}
},
"UpdateSecurityRequest" : {
"type" : "structure",
"members" : {
"ClientAuthentication" : {
"shape" : "ClientAuthentication",
"locationName" : "clientAuthentication"
},
"ClusterArn" : {
"shape" : "__string",
"location" : "uri",
"locationName" : "clusterArn"
},
"CurrentVersion" : {
"shape" : "__string",
"locationName" : "currentVersion"
},
"EncryptionInfo" : {
"shape" : "EncryptionInfo",
"locationName" : "encryptionInfo"
}
},
"required" : [ "ClusterArn", "CurrentVersion" ]
},
"UpdateSecurityResponse" : {
"type" : "structure",
"members" : {
"ClusterArn" : {
"shape" : "__string",
"locationName" : "clusterArn"
},
"ClusterOperationArn" : {
"shape" : "__string",
"locationName" : "clusterOperationArn"
}
}
},
"ZookeeperNodeInfo": {
"type": "structure",
"members": {
Expand Down
34 changes: 30 additions & 4 deletions models/apis/kafka/2018-11-14/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"UpdateConfiguration" : "<p>Updates an existing MSK configuration. The configuration must be in the Active state.</p>",
"UpdateClusterConfiguration" : "<p>Updates the cluster with the configuration that is specified in the request body.</p>",
"UpdateClusterKafkaVersion" : "<p>Updates the Apache Kafka version for the cluster.</p>",
"UpdateMonitoring" : "<p>Updates the monitoring settings for the cluster. You can use this operation to specify which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can also specify settings for open monitoring with Prometheus.</p>"
"UpdateMonitoring" : "<p>Updates the monitoring settings for the cluster. You can use this operation to specify which Apache Kafka metrics you want Amazon MSK to send to Amazon CloudWatch. You can also specify settings for open monitoring with Prometheus.</p>",
"UpdateSecurity" : "<p>You can use this operation to update the encrypting and authentication settings for an existing cluster.</p>"
},
"shapes" : {
"BatchAssociateScramSecretRequest" : {
Expand Down Expand Up @@ -88,7 +89,9 @@
"base" : "<p>Includes all client authentication information.</p>",
"refs" : {
"ClusterInfo$ClientAuthentication" : "<p>Includes all client authentication information.</p>",
"CreateClusterRequest$ClientAuthentication" : "<p>Includes all client authentication related information.</p>"
"CreateClusterRequest$ClientAuthentication" : "<p>Includes all client authentication related information.</p>",
"MutableClusterInfo$ClientAuthentication" : "<p>Includes all client authentication related information.</p>",
"UpdateSecurityRequest$ClientAuthentication" : "<p>Includes all client authentication related information.</p>"
}
},
"ClientBroker" : {
Expand Down Expand Up @@ -253,7 +256,9 @@
"base" : "<p>Includes encryption-related information, such as the AWS KMS key used for encrypting data at rest and whether you want MSK to encrypt your data in transit.</p>",
"refs" : {
"ClusterInfo$EncryptionInfo" : "<p>Includes all encryption-related information.</p>",
"CreateClusterRequest$EncryptionInfo" : "<p>Includes all encryption-related information.</p>"
"CreateClusterRequest$EncryptionInfo" : "<p>Includes all encryption-related information.</p>",
"MutableClusterInfo$EncryptionInfo" : "<p>Includes all encryption-related information.</p>",
"UpdateSecurityRequest$EncryptionInfo" : "<p>Includes all encryption-related information.</p>"
}
},
"EnhancedMonitoring" : {
Expand Down Expand Up @@ -467,6 +472,12 @@
"base" : "<p>Returns information about an error.</p>",
"refs" : { }
},
"Unauthenticated" : {
"base" : "<p>Contains information about unauthenticated traffic to the cluster.</p>",
"refs" : {
"ClientAuthentication$Unauthenticated" : "<p>Contains information about unauthenticated traffic to the cluster.</p>"
}
},
"UnauthorizedException" : {
"base" : "<p>Returns information about an error.</p>",
"refs" : { }
Expand Down Expand Up @@ -527,6 +538,14 @@
"base" : "<p>Response body for UpdateMonitoring.</p>",
"refs" : { }
},
"UpdateSecurityRequest" : {
"base" : "<p>Request body for UpdateSecurity.</p>",
"refs" : { }
},
"UpdateSecurityResponse" : {
"base" : "<p>Response body for UpdateSecurity.</p>",
"refs" : { }
},
"ZookeeperNodeInfo" : {
"base" : "<p>Zookeeper node information.</p>",
"refs" : {
Expand All @@ -539,11 +558,15 @@
"CloudWatchLogs$Enabled" : "<p>Specifies whether broker logs get sent to the specified CloudWatch Logs destination.</p>",
"EncryptionInTransit$InCluster" : "<p>When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plaintext.</p> <p>The default value is true.</p>",
"Firehose$Enabled" : "<p>Specifies whether broker logs get sent to the specified Kinesis Data Firehose delivery stream.</p>",
"IAM$Enabled" : "<p>IAM authentication is enabled or not.</p>",
"JmxExporter$EnabledInBroker" : "<p>Indicates whether you want to enable or disable the JMX Exporter.</p>",
"JmxExporterInfo$EnabledInBroker" : "<p>JMX Exporter being enabled in broker.</p>",
"NodeExporter$EnabledInBroker" : "<p>Indicates whether you want to enable or disable the Node Exporter.</p>",
"NodeExporterInfo$EnabledInBroker" : "<p>Node Exporter being enabled in broker.</p>",
"S3$Enabled" : "<p>Specifies whether broker logs get sent to the specified Amazon S3 destination.</p>"
"S3$Enabled" : "<p>Specifies whether broker logs get sent to the specified Amazon S3 destination.</p>",
"Scram$Enabled" : "<p>SASL/SCRAM authentication is enabled or not.</p>",
"Tls$Enabled" : "<p>TLS authentication is enabled or not.</p>",
"Unauthenticated$Enabled" : "<p>Specifies whether you want to enable or disable unauthenticated traffic to your cluster.</p>"
}
},
"__double" : {
Expand Down Expand Up @@ -766,6 +789,9 @@
"UpdateMonitoringRequest$CurrentVersion" : "<p>The version of cluster to update from. A successful operation will then generate a new version.</p>",
"UpdateMonitoringResponse$ClusterArn" : "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
"UpdateMonitoringResponse$ClusterOperationArn" : "<p>The Amazon Resource Name (ARN) of the cluster operation.</p>",
"UpdateSecurityRequest$CurrentVersion" : "<p>You can use the DescribeCluster operation to get the current version of the cluster. After the security update is complete, the cluster will have a new version.</p>",
"UpdateSecurityResponse$ClusterArn" : "<p>The Amazon Resource Name (ARN) of the cluster.</p>",
"UpdateSecurityResponse$ClusterOperationArn" : "<p>The Amazon Resource Name (ARN) of the cluster operation.</p>",
"ZookeeperNodeInfo$AttachedENIId" : "<p>The attached elastic network interface of the broker.</p>",
"ZookeeperNodeInfo$ClientVpcIpAddress" : "<p>The virtual private cloud (VPC) IP address of the client.</p>",
"ZookeeperNodeInfo$ZookeeperVersion" : "<p>The version of Zookeeper.</p>",
Expand Down
Loading