diff --git a/CHANGELOG.md b/CHANGELOG.md
index 680eb228784b..5c2b2e8e0946 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+# __1.12.74__ __2021-09-24__
+## __AWS License Manager__
+ - ### Features
+ - AWS License Manager now allows customers to get the LicenseArn in the Checkout API Response.
+
+## __Amazon Elastic Compute Cloud__
+ - ### Features
+ - DescribeInstances now returns Platform Details, Usage Operation, and Usage Operation Update Time.
+
# __1.12.73__ __2021-09-23__
## __AWS AppSync__
- ### Features
diff --git a/README.md b/README.md
index 1f08cdb02508..ed3b2a8b41b2 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ dependencies.
- * Change the instance tenancy of an instance from host
to dedicated
, or from
- * dedicated
to host
.
+ * Change the instance tenancy of an instance.
*
- * Change the instance tenancy of an instance from host
to dedicated
, or from
- * dedicated
to host
.
+ * Change the instance tenancy of an instance.
*
- * Change the instance tenancy of an instance from host
to dedicated
, or from
- * dedicated
to host
.
+ * Change the instance tenancy of an instance.
*
- * Change the instance tenancy of an instance from host
to dedicated
, or from
- * dedicated
to host
.
+ * Change the instance tenancy of an instance.
*
- * The license configurations. + * The license configurations for the instance. *
*/ private com.amazonaws.internal.SdkInternalList+ * The platform details value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ */ + private String platformDetails; + /** + *+ * The usage operation value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ */ + private String usageOperation; + /** + *+ * The time that the usage operation was last updated. + *
+ */ + private java.util.Date usageOperationUpdateTime; /** *@@ -2727,10 +2749,10 @@ public Instance withHibernationOptions(HibernationOptions hibernationOptions) { /** *
- * The license configurations. + * The license configurations for the instance. *
* - * @return The license configurations. + * @return The license configurations for the instance. */ public java.util.List- * The license configurations. + * The license configurations for the instance. *
* * @param licenses - * The license configurations. + * The license configurations for the instance. */ public void setLicenses(java.util.Collection- * The license configurations. + * The license configurations for the instance. *
*
* NOTE: This method appends the values to the existing list (if any). Use
@@ -2769,7 +2791,7 @@ public void setLicenses(java.util.Collection
- * The license configurations. + * The license configurations for the instance. *
* * @param licenses - * The license configurations. + * The license configurations for the instance. * @return Returns a reference to this object so that method calls can be chained together. */ @@ -2971,6 +2993,150 @@ public Instance withBootMode(BootModeValues bootMode) { return this; } + /** + *+ * The platform details value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ * + * @param platformDetails + * The platform details value for the instance. For more information, see AMI billing + * information fields in the Amazon EC2 User Guide. + */ + + public void setPlatformDetails(String platformDetails) { + this.platformDetails = platformDetails; + } + + /** + *+ * The platform details value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ * + * @return The platform details value for the instance. For more information, see AMI billing + * information fields in the Amazon EC2 User Guide. + */ + + public String getPlatformDetails() { + return this.platformDetails; + } + + /** + *+ * The platform details value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ * + * @param platformDetails + * The platform details value for the instance. For more information, see AMI billing + * information fields in the Amazon EC2 User Guide. + * @return Returns a reference to this object so that method calls can be chained together. + */ + + public Instance withPlatformDetails(String platformDetails) { + setPlatformDetails(platformDetails); + return this; + } + + /** + *+ * The usage operation value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ * + * @param usageOperation + * The usage operation value for the instance. For more information, see AMI billing + * information fields in the Amazon EC2 User Guide. + */ + + public void setUsageOperation(String usageOperation) { + this.usageOperation = usageOperation; + } + + /** + *+ * The usage operation value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ * + * @return The usage operation value for the instance. For more information, see AMI billing + * information fields in the Amazon EC2 User Guide. + */ + + public String getUsageOperation() { + return this.usageOperation; + } + + /** + *+ * The usage operation value for the instance. For more information, see AMI billing information + * fields in the Amazon EC2 User Guide. + *
+ * + * @param usageOperation + * The usage operation value for the instance. For more information, see AMI billing + * information fields in the Amazon EC2 User Guide. + * @return Returns a reference to this object so that method calls can be chained together. + */ + + public Instance withUsageOperation(String usageOperation) { + setUsageOperation(usageOperation); + return this; + } + + /** + *+ * The time that the usage operation was last updated. + *
+ * + * @param usageOperationUpdateTime + * The time that the usage operation was last updated. + */ + + public void setUsageOperationUpdateTime(java.util.Date usageOperationUpdateTime) { + this.usageOperationUpdateTime = usageOperationUpdateTime; + } + + /** + *+ * The time that the usage operation was last updated. + *
+ * + * @return The time that the usage operation was last updated. + */ + + public java.util.Date getUsageOperationUpdateTime() { + return this.usageOperationUpdateTime; + } + + /** + *+ * The time that the usage operation was last updated. + *
+ * + * @param usageOperationUpdateTime + * The time that the usage operation was last updated. + * @return Returns a reference to this object so that method calls can be chained together. + */ + + public Instance withUsageOperationUpdateTime(java.util.Date usageOperationUpdateTime) { + setUsageOperationUpdateTime(usageOperationUpdateTime); + return this; + } + /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. @@ -3080,7 +3246,13 @@ public String toString() { if (getEnclaveOptions() != null) sb.append("EnclaveOptions: ").append(getEnclaveOptions()).append(","); if (getBootMode() != null) - sb.append("BootMode: ").append(getBootMode()); + sb.append("BootMode: ").append(getBootMode()).append(","); + if (getPlatformDetails() != null) + sb.append("PlatformDetails: ").append(getPlatformDetails()).append(","); + if (getUsageOperation() != null) + sb.append("UsageOperation: ").append(getUsageOperation()).append(","); + if (getUsageOperationUpdateTime() != null) + sb.append("UsageOperationUpdateTime: ").append(getUsageOperationUpdateTime()); sb.append("}"); return sb.toString(); } @@ -3293,6 +3465,18 @@ public boolean equals(Object obj) { return false; if (other.getBootMode() != null && other.getBootMode().equals(this.getBootMode()) == false) return false; + if (other.getPlatformDetails() == null ^ this.getPlatformDetails() == null) + return false; + if (other.getPlatformDetails() != null && other.getPlatformDetails().equals(this.getPlatformDetails()) == false) + return false; + if (other.getUsageOperation() == null ^ this.getUsageOperation() == null) + return false; + if (other.getUsageOperation() != null && other.getUsageOperation().equals(this.getUsageOperation()) == false) + return false; + if (other.getUsageOperationUpdateTime() == null ^ this.getUsageOperationUpdateTime() == null) + return false; + if (other.getUsageOperationUpdateTime() != null && other.getUsageOperationUpdateTime().equals(this.getUsageOperationUpdateTime()) == false) + return false; return true; } @@ -3350,6 +3534,9 @@ public int hashCode() { hashCode = prime * hashCode + ((getMetadataOptions() == null) ? 0 : getMetadataOptions().hashCode()); hashCode = prime * hashCode + ((getEnclaveOptions() == null) ? 0 : getEnclaveOptions().hashCode()); hashCode = prime * hashCode + ((getBootMode() == null) ? 0 : getBootMode().hashCode()); + hashCode = prime * hashCode + ((getPlatformDetails() == null) ? 0 : getPlatformDetails().hashCode()); + hashCode = prime * hashCode + ((getUsageOperation() == null) ? 0 : getUsageOperation().hashCode()); + hashCode = prime * hashCode + ((getUsageOperationUpdateTime() == null) ? 0 : getUsageOperationUpdateTime().hashCode()); return hashCode; } diff --git a/aws-java-sdk-ec2/src/main/java/com/amazonaws/services/ec2/model/ModifyInstancePlacementRequest.java b/aws-java-sdk-ec2/src/main/java/com/amazonaws/services/ec2/model/ModifyInstancePlacementRequest.java index 84dd09fe1ec0..ac2588b582b2 100644 --- a/aws-java-sdk-ec2/src/main/java/com/amazonaws/services/ec2/model/ModifyInstancePlacementRequest.java +++ b/aws-java-sdk-ec2/src/main/java/com/amazonaws/services/ec2/model/ModifyInstancePlacementRequest.java @@ -59,11 +59,13 @@ public class ModifyInstancePlacementRequest extends AmazonWebServiceRequest impl ** The tenancy for the instance. *
+ *
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes results
* in the InvalidTenancy
error code.
*
* The tenancy for the instance. *
+ *
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes results
* in the InvalidTenancy
error code.
*
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes
* results in the InvalidTenancy
error code.
+ *
* The tenancy for the instance. *
+ *
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes results
* in the InvalidTenancy
error code.
*
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes
* results in the InvalidTenancy
error code.
+ *
* The tenancy for the instance. *
+ *
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes results
* in the InvalidTenancy
error code.
*
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes
* results in the InvalidTenancy
error code.
+ *
* The tenancy for the instance. *
+ *
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes results
* in the InvalidTenancy
error code.
*
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes
* results in the InvalidTenancy
error code.
+ *
* The tenancy for the instance. *
+ *
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes results
* in the InvalidTenancy
error code.
*
* For T3 instances, you can't change the tenancy from dedicated
to host
, or from
* host
to dedicated
. Attempting to make one of these unsupported tenancy changes
* results in the InvalidTenancy
error code.
+ *
+ * Amazon Resource Name (ARN) of the checkout license. + *
+ */ + private String licenseArn; /** *@@ -395,6 +401,46 @@ public CheckoutLicenseResult withExpiration(String expiration) { return this; } + /** + *
+ * Amazon Resource Name (ARN) of the checkout license. + *
+ * + * @param licenseArn + * Amazon Resource Name (ARN) of the checkout license. + */ + + public void setLicenseArn(String licenseArn) { + this.licenseArn = licenseArn; + } + + /** + *+ * Amazon Resource Name (ARN) of the checkout license. + *
+ * + * @return Amazon Resource Name (ARN) of the checkout license. + */ + + public String getLicenseArn() { + return this.licenseArn; + } + + /** + *+ * Amazon Resource Name (ARN) of the checkout license. + *
+ * + * @param licenseArn + * Amazon Resource Name (ARN) of the checkout license. + * @return Returns a reference to this object so that method calls can be chained together. + */ + + public CheckoutLicenseResult withLicenseArn(String licenseArn) { + setLicenseArn(licenseArn); + return this; + } + /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. @@ -420,7 +466,9 @@ public String toString() { if (getIssuedAt() != null) sb.append("IssuedAt: ").append(getIssuedAt()).append(","); if (getExpiration() != null) - sb.append("Expiration: ").append(getExpiration()); + sb.append("Expiration: ").append(getExpiration()).append(","); + if (getLicenseArn() != null) + sb.append("LicenseArn: ").append(getLicenseArn()); sb.append("}"); return sb.toString(); } @@ -463,6 +511,10 @@ public boolean equals(Object obj) { return false; if (other.getExpiration() != null && other.getExpiration().equals(this.getExpiration()) == false) return false; + if (other.getLicenseArn() == null ^ this.getLicenseArn() == null) + return false; + if (other.getLicenseArn() != null && other.getLicenseArn().equals(this.getLicenseArn()) == false) + return false; return true; } @@ -478,6 +530,7 @@ public int hashCode() { hashCode = prime * hashCode + ((getNodeId() == null) ? 0 : getNodeId().hashCode()); hashCode = prime * hashCode + ((getIssuedAt() == null) ? 0 : getIssuedAt().hashCode()); hashCode = prime * hashCode + ((getExpiration() == null) ? 0 : getExpiration().hashCode()); + hashCode = prime * hashCode + ((getLicenseArn() == null) ? 0 : getLicenseArn().hashCode()); return hashCode; } diff --git a/aws-java-sdk-licensemanager/src/main/java/com/amazonaws/services/licensemanager/model/transform/CheckoutLicenseResultJsonUnmarshaller.java b/aws-java-sdk-licensemanager/src/main/java/com/amazonaws/services/licensemanager/model/transform/CheckoutLicenseResultJsonUnmarshaller.java index 1e25886d771d..348bb5b19125 100644 --- a/aws-java-sdk-licensemanager/src/main/java/com/amazonaws/services/licensemanager/model/transform/CheckoutLicenseResultJsonUnmarshaller.java +++ b/aws-java-sdk-licensemanager/src/main/java/com/amazonaws/services/licensemanager/model/transform/CheckoutLicenseResultJsonUnmarshaller.java @@ -78,6 +78,10 @@ public CheckoutLicenseResult unmarshall(JsonUnmarshallerContext context) throws context.nextToken(); checkoutLicenseResult.setExpiration(context.getUnmarshaller(String.class).unmarshall(context)); } + if (context.testExpression("LicenseArn", targetDepth)) { + context.nextToken(); + checkoutLicenseResult.setLicenseArn(context.getUnmarshaller(String.class).unmarshall(context)); + } } else if (token == END_ARRAY || token == END_OBJECT) { if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) { if (context.getCurrentDepth() <= originalDepth) diff --git a/aws-java-sdk-lightsail/pom.xml b/aws-java-sdk-lightsail/pom.xml index a2164e63e19f..6e7733a8c0b8 100644 --- a/aws-java-sdk-lightsail/pom.xml +++ b/aws-java-sdk-lightsail/pom.xml @@ -5,7 +5,7 @@Modifies the placement attributes for a specified instance. You can do the following:
Modify the affinity between an instance and a Dedicated Host. When affinity is set to host
and the instance is not associated with a specific Dedicated Host, the next time the instance is launched, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists.
Change the Dedicated Host with which an instance is associated.
Change the instance tenancy of an instance from host
to dedicated
, or from dedicated
to host
.
Move an instance to or from a placement group.
At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request.
To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped
state.
Modifies the placement attributes for a specified instance. You can do the following:
Modify the affinity between an instance and a Dedicated Host. When affinity is set to host
and the instance is not associated with a specific Dedicated Host, the next time the instance is launched, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists.
Change the Dedicated Host with which an instance is associated.
Change the instance tenancy of an instance.
Move an instance to or from a placement group.
At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request.
To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped
state.
The license configurations.
", + "documentation" : "The license configurations for the instance.
", "endpointDiscoveryId" : false, "enumType" : null, - "fluentSetterDocumentation" : "/**The license configurations.
\n@param licenses The license configurations.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterDocumentation" : "/**The license configurations for the instance.
\n@param licenses The license configurations for the instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withLicenses", - "getterDocumentation" : "/**The license configurations.
\n@return The license configurations.*/", + "getterDocumentation" : "/**The license configurations for the instance.
\n@return The license configurations for the instance.*/", "getterMethodName" : "getLicenses", "getterModel" : { "returnType" : "java.util.ListThe license configurations.
\n@param licenses The license configurations.*/", + "setterDocumentation" : "/**The license configurations for the instance.
\n@param licenses The license configurations for the instance.*/", "setterMethodName" : "setLicenses", "setterModel" : { "timestampFormat" : null, @@ -528676,13 +528676,13 @@ "shouldFullyQualify" : false, "simple" : false, "unmarshallingType" : null, - "varargSetterDocumentation" : "/**The license configurations.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setLicenses(java.util.Collection)} or {@link #withLicenses(java.util.Collection)} if you want to override the existing values.
\n@param licenses The license configurations.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "varargSetterDocumentation" : "/**The license configurations for the instance.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setLicenses(java.util.Collection)} or {@link #withLicenses(java.util.Collection)} if you want to override the existing values.
\n@param licenses The license configurations for the instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "timestampFormat" : null, "variableDeclarationType" : "com.amazonaws.internal.SdkInternalListThe license configurations.
", + "documentation" : "The license configurations for the instance.
", "simpleType" : "ListThe platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param platformDetails The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withPlatformDetails", + "getterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@return The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "getterMethodName" : "getPlatformDetails", + "getterModel" : { + "returnType" : "String", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "PlatformDetails", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "platformDetails", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "String", + "marshallingType" : "STRING", + "name" : "PlatformDetails", + "sensitive" : false, + "setterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param platformDetails The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "setterMethodName" : "setPlatformDetails", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "platformDetails", + "variableType" : "String", + "documentation" : "", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "shouldEmitLegacyEnumSetter" : true, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param platformDetails The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "platformDetails", + "variableType" : "String", + "documentation" : "The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "xmlNameSpaceUri" : null + }, { + "c2jName" : "UsageOperation", + "c2jShape" : "String", + "deprecated" : false, + "documentation" : "The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param usageOperation The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withUsageOperation", + "getterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@return The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "getterMethodName" : "getUsageOperation", + "getterModel" : { + "returnType" : "String", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "UsageOperation", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "usageOperation", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "String", + "marshallingType" : "STRING", + "name" : "UsageOperation", + "sensitive" : false, + "setterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param usageOperation The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "setterMethodName" : "setUsageOperation", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "usageOperation", + "variableType" : "String", + "documentation" : "", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "shouldEmitLegacyEnumSetter" : true, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param usageOperation The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "usageOperation", + "variableType" : "String", + "documentation" : "The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "xmlNameSpaceUri" : null + }, { + "c2jName" : "UsageOperationUpdateTime", + "c2jShape" : "MillisecondDateTime", + "deprecated" : false, + "documentation" : "The time that the usage operation was last updated.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**The time that the usage operation was last updated.
\n@param usageOperationUpdateTime The time that the usage operation was last updated.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withUsageOperationUpdateTime", + "getterDocumentation" : "/**The time that the usage operation was last updated.
\n@return The time that the usage operation was last updated.*/", + "getterMethodName" : "getUsageOperationUpdateTime", + "getterModel" : { + "returnType" : "java.util.Date", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "UsageOperationUpdateTime", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "usageOperationUpdateTime", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "java.util.Date", + "marshallingType" : "DATE", + "name" : "UsageOperationUpdateTime", + "sensitive" : false, + "setterDocumentation" : "/**The time that the usage operation was last updated.
\n@param usageOperationUpdateTime The time that the usage operation was last updated.*/", + "setterMethodName" : "setUsageOperationUpdateTime", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "java.util.Date", + "variableName" : "usageOperationUpdateTime", + "variableType" : "java.util.Date", + "documentation" : "", + "simpleType" : "Date", + "variableSetterType" : "java.util.Date" + }, + "shouldEmitLegacyEnumSetter" : true, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**The time that the usage operation was last updated.
\n@param usageOperationUpdateTime The time that the usage operation was last updated.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : "iso8601", + "variableDeclarationType" : "java.util.Date", + "variableName" : "usageOperationUpdateTime", + "variableType" : "java.util.Date", + "documentation" : "The time that the usage operation was last updated.
", + "simpleType" : "Date", + "variableSetterType" : "java.util.Date" + }, + "xmlNameSpaceUri" : null } ], "membersAsMap" : { "AmiLaunchIndex" : { @@ -530762,12 +530969,12 @@ "c2jName" : "Licenses", "c2jShape" : "LicenseList", "deprecated" : false, - "documentation" : "The license configurations.
", + "documentation" : "The license configurations for the instance.
", "endpointDiscoveryId" : false, "enumType" : null, - "fluentSetterDocumentation" : "/**The license configurations.
\n@param licenses The license configurations.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterDocumentation" : "/**The license configurations for the instance.
\n@param licenses The license configurations for the instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "fluentSetterMethodName" : "withLicenses", - "getterDocumentation" : "/**The license configurations.
\n@return The license configurations.*/", + "getterDocumentation" : "/**The license configurations for the instance.
\n@return The license configurations for the instance.*/", "getterMethodName" : "getLicenses", "getterModel" : { "returnType" : "java.util.ListThe license configurations.
\n@param licenses The license configurations.*/", + "setterDocumentation" : "/**The license configurations for the instance.
\n@param licenses The license configurations for the instance.*/", "setterMethodName" : "setLicenses", "setterModel" : { "timestampFormat" : null, @@ -530900,13 +531107,13 @@ "shouldFullyQualify" : false, "simple" : false, "unmarshallingType" : null, - "varargSetterDocumentation" : "/**The license configurations.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setLicenses(java.util.Collection)} or {@link #withLicenses(java.util.Collection)} if you want to override the existing values.
\n@param licenses The license configurations.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "varargSetterDocumentation" : "/**The license configurations for the instance.
\nNOTE: This method appends the values to the existing list (if any). Use {@link #setLicenses(java.util.Collection)} or {@link #withLicenses(java.util.Collection)} if you want to override the existing values.
\n@param licenses The license configurations for the instance.\n@return Returns a reference to this object so that method calls can be chained together.*/", "variable" : { "timestampFormat" : null, "variableDeclarationType" : "com.amazonaws.internal.SdkInternalListThe license configurations.
", + "documentation" : "The license configurations for the instance.
", "simpleType" : "ListThe platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param platformDetails The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withPlatformDetails", + "getterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@return The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "getterMethodName" : "getPlatformDetails", + "getterModel" : { + "returnType" : "String", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "PlatformDetails", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "platformDetails", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "String", + "marshallingType" : "STRING", + "name" : "PlatformDetails", + "sensitive" : false, + "setterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param platformDetails The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "setterMethodName" : "setPlatformDetails", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "platformDetails", + "variableType" : "String", + "documentation" : "", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "shouldEmitLegacyEnumSetter" : true, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param platformDetails The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "platformDetails", + "variableType" : "String", + "documentation" : "The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "xmlNameSpaceUri" : null + }, "PrivateDnsName" : { "c2jName" : "PrivateDnsName", "c2jShape" : "String", @@ -532858,6 +533135,146 @@ }, "xmlNameSpaceUri" : null }, + "UsageOperation" : { + "c2jName" : "UsageOperation", + "c2jShape" : "String", + "deprecated" : false, + "documentation" : "The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param usageOperation The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withUsageOperation", + "getterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@return The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "getterMethodName" : "getUsageOperation", + "getterModel" : { + "returnType" : "String", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "UsageOperation", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "usageOperation", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "String", + "marshallingType" : "STRING", + "name" : "UsageOperation", + "sensitive" : false, + "setterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param usageOperation The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.*/", + "setterMethodName" : "setUsageOperation", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "usageOperation", + "variableType" : "String", + "documentation" : "", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "shouldEmitLegacyEnumSetter" : true, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
\n@param usageOperation The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "usageOperation", + "variableType" : "String", + "documentation" : "The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "xmlNameSpaceUri" : null + }, + "UsageOperationUpdateTime" : { + "c2jName" : "UsageOperationUpdateTime", + "c2jShape" : "MillisecondDateTime", + "deprecated" : false, + "documentation" : "The time that the usage operation was last updated.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**The time that the usage operation was last updated.
\n@param usageOperationUpdateTime The time that the usage operation was last updated.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withUsageOperationUpdateTime", + "getterDocumentation" : "/**The time that the usage operation was last updated.
\n@return The time that the usage operation was last updated.*/", + "getterMethodName" : "getUsageOperationUpdateTime", + "getterModel" : { + "returnType" : "java.util.Date", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "UsageOperationUpdateTime", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "usageOperationUpdateTime", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "java.util.Date", + "marshallingType" : "DATE", + "name" : "UsageOperationUpdateTime", + "sensitive" : false, + "setterDocumentation" : "/**The time that the usage operation was last updated.
\n@param usageOperationUpdateTime The time that the usage operation was last updated.*/", + "setterMethodName" : "setUsageOperationUpdateTime", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "java.util.Date", + "variableName" : "usageOperationUpdateTime", + "variableType" : "java.util.Date", + "documentation" : "", + "simpleType" : "Date", + "variableSetterType" : "java.util.Date" + }, + "shouldEmitLegacyEnumSetter" : true, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**The time that the usage operation was last updated.
\n@param usageOperationUpdateTime The time that the usage operation was last updated.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : "iso8601", + "variableDeclarationType" : "java.util.Date", + "variableName" : "usageOperationUpdateTime", + "variableType" : "java.util.Date", + "documentation" : "The time that the usage operation was last updated.
", + "simpleType" : "Date", + "variableSetterType" : "java.util.Date" + }, + "xmlNameSpaceUri" : null + }, "VirtualizationType" : { "c2jName" : "VirtualizationType", "c2jShape" : "VirtualizationType", @@ -639106,12 +639523,12 @@ "c2jName" : "Tenancy", "c2jShape" : "HostTenancy", "deprecated" : false, - "documentation" : "The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@return Returns a reference to this object so that method calls can be chained together.\n@see HostTenancy*/",
+ "fluentSetterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@see HostTenancy*/",
+ "getterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@see HostTenancy*/",
+ "setterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@return Returns a reference to this object so that method calls can be chained together.\n@see HostTenancy*/",
+ "varargSetterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@return Returns a reference to this object so that method calls can be chained together.\n@see HostTenancy*/",
+ "fluentSetterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@see HostTenancy*/",
+ "getterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@see HostTenancy*/",
+ "setterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.\n@return Returns a reference to this object so that method calls can be chained together.\n@see HostTenancy*/",
+ "varargSetterDocumentation" : "/**
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The name of the placement group the instance is in.
", "endpointDiscoveryId" : false, @@ -705979,7 +706396,7 @@ }, "GroupName" : { "c2jName" : "GroupName", - "c2jShape" : "String", + "c2jShape" : "PlacementGroupName", "deprecated" : false, "documentation" : "The name of the placement group the instance is in.
", "endpointDiscoveryId" : false, diff --git a/aws-java-sdk-models/src/main/resources/models/ec2-2016-11-15-model.json b/aws-java-sdk-models/src/main/resources/models/ec2-2016-11-15-model.json index b69e133aa0ed..1585d7257b0b 100644 --- a/aws-java-sdk-models/src/main/resources/models/ec2-2016-11-15-model.json +++ b/aws-java-sdk-models/src/main/resources/models/ec2-2016-11-15-model.json @@ -3800,7 +3800,7 @@ }, "input":{"shape":"ModifyInstancePlacementRequest"}, "output":{"shape":"ModifyInstancePlacementResult"}, - "documentation":"Modifies the placement attributes for a specified instance. You can do the following:
Modify the affinity between an instance and a Dedicated Host. When affinity is set to host
and the instance is not associated with a specific Dedicated Host, the next time the instance is launched, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists.
Change the Dedicated Host with which an instance is associated.
Change the instance tenancy of an instance from host
to dedicated
, or from dedicated
to host
.
Move an instance to or from a placement group.
At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request.
To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped
state.
Modifies the placement attributes for a specified instance. You can do the following:
Modify the affinity between an instance and a Dedicated Host. When affinity is set to host
and the instance is not associated with a specific Dedicated Host, the next time the instance is launched, it is automatically associated with the host on which it lands. If the instance is restarted or rebooted, this relationship persists.
Change the Dedicated Host with which an instance is associated.
Change the instance tenancy of an instance.
Move an instance to or from a placement group.
At least one attribute for affinity, host ID, tenancy, or placement group name must be specified in the request. Affinity and tenancy can be modified in the same request.
To modify the host ID, tenancy, placement group, or partition for an instance, the instance must be in the stopped
state.
The license configurations.
", + "documentation":"The license configurations for the instance.
", "locationName":"licenseSet" }, "MetadataOptions":{ @@ -25786,6 +25786,21 @@ "shape":"BootModeValues", "documentation":"The boot mode of the instance. For more information, see Boot modes in the Amazon EC2 User Guide.
", "locationName":"bootMode" + }, + "PlatformDetails":{ + "shape":"String", + "documentation":"The platform details value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "locationName":"platformDetails" + }, + "UsageOperation":{ + "shape":"String", + "documentation":"The usage operation value for the instance. For more information, see AMI billing information fields in the Amazon EC2 User Guide.
", + "locationName":"usageOperation" + }, + "UsageOperationUpdateTime":{ + "shape":"MillisecondDateTime", + "documentation":"The time that the usage operation was last updated.
", + "locationName":"usageOperationUpdateTime" } }, "documentation":"Describes an instance.
" @@ -30871,7 +30886,7 @@ }, "Tenancy":{ "shape":"HostTenancy", - "documentation":"The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The tenancy for the instance.
For T3 instances, you can't change the tenancy from dedicated
to host
, or from host
to dedicated
. Attempting to make one of these unsupported tenancy changes results in the InvalidTenancy
error code.
The name of the placement group the instance is in.
", "locationName":"groupName" }, diff --git a/aws-java-sdk-models/src/main/resources/models/ec2-instance-connect-2018-04-02-intermediate.json b/aws-java-sdk-models/src/main/resources/models/ec2-instance-connect-2018-04-02-intermediate.json index e370418c00ac..f6350f12a8b1 100644 --- a/aws-java-sdk-models/src/main/resources/models/ec2-instance-connect-2018-04-02-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/ec2-instance-connect-2018-04-02-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/entitlement.marketplace-2017-01-11-intermediate.json b/aws-java-sdk-models/src/main/resources/models/entitlement.marketplace-2017-01-11-intermediate.json index fe4b4c743ae8..6f6b7d8fbec1 100644 --- a/aws-java-sdk-models/src/main/resources/models/entitlement.marketplace-2017-01-11-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/entitlement.marketplace-2017-01-11-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/eventbridge-2015-10-07-intermediate.json b/aws-java-sdk-models/src/main/resources/models/eventbridge-2015-10-07-intermediate.json index cb99ae162bcd..440f85be5c63 100644 --- a/aws-java-sdk-models/src/main/resources/models/eventbridge-2015-10-07-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/eventbridge-2015-10-07-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/finspace-2020-07-13-intermediate.json b/aws-java-sdk-models/src/main/resources/models/finspace-2020-07-13-intermediate.json index 0e68c43fbe49..3b825168d714 100644 --- a/aws-java-sdk-models/src/main/resources/models/finspace-2020-07-13-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/finspace-2020-07-13-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/finspace-2021-03-12-intermediate.json b/aws-java-sdk-models/src/main/resources/models/finspace-2021-03-12-intermediate.json index ed32895ad841..09e314cd0351 100644 --- a/aws-java-sdk-models/src/main/resources/models/finspace-2021-03-12-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/finspace-2021-03-12-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/fms-2018-01-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/fms-2018-01-01-intermediate.json index 25d0bbb5b9f7..197155a22eef 100644 --- a/aws-java-sdk-models/src/main/resources/models/fms-2018-01-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/fms-2018-01-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/forecastquery-2018-06-26-intermediate.json b/aws-java-sdk-models/src/main/resources/models/forecastquery-2018-06-26-intermediate.json index 8168be55320f..911a3239314f 100644 --- a/aws-java-sdk-models/src/main/resources/models/forecastquery-2018-06-26-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/forecastquery-2018-06-26-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/fsx-2018-03-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/fsx-2018-03-01-intermediate.json index 4f1604c51952..27242ad3e1fd 100644 --- a/aws-java-sdk-models/src/main/resources/models/fsx-2018-03-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/fsx-2018-03-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/greengrassv2-2020-11-30-intermediate.json b/aws-java-sdk-models/src/main/resources/models/greengrassv2-2020-11-30-intermediate.json index 44c715be0172..1ea173136bb6 100644 --- a/aws-java-sdk-models/src/main/resources/models/greengrassv2-2020-11-30-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/greengrassv2-2020-11-30-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/healthlake-2017-07-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/healthlake-2017-07-01-intermediate.json index 090ac937d8c6..9ab92ba09fa3 100644 --- a/aws-java-sdk-models/src/main/resources/models/healthlake-2017-07-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/healthlake-2017-07-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/identitystore-2020-06-15-intermediate.json b/aws-java-sdk-models/src/main/resources/models/identitystore-2020-06-15-intermediate.json index 58fb90d9b4ba..9042d0348773 100644 --- a/aws-java-sdk-models/src/main/resources/models/identitystore-2020-06-15-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/identitystore-2020-06-15-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/iotdeviceadvisor-2020-09-18-intermediate.json b/aws-java-sdk-models/src/main/resources/models/iotdeviceadvisor-2020-09-18-intermediate.json index ec6d649aa9e2..e8f8c388653c 100644 --- a/aws-java-sdk-models/src/main/resources/models/iotdeviceadvisor-2020-09-18-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/iotdeviceadvisor-2020-09-18-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/iotfleethub-2020-11-03-intermediate.json b/aws-java-sdk-models/src/main/resources/models/iotfleethub-2020-11-03-intermediate.json index 3f5580760015..0e62bc1d2879 100644 --- a/aws-java-sdk-models/src/main/resources/models/iotfleethub-2020-11-03-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/iotfleethub-2020-11-03-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/iotsecuretunneling-2018-10-05-intermediate.json b/aws-java-sdk-models/src/main/resources/models/iotsecuretunneling-2018-10-05-intermediate.json index f7536ceec5f8..36549db7acb1 100644 --- a/aws-java-sdk-models/src/main/resources/models/iotsecuretunneling-2018-10-05-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/iotsecuretunneling-2018-10-05-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/iotsitewise-2019-12-02-intermediate.json b/aws-java-sdk-models/src/main/resources/models/iotsitewise-2019-12-02-intermediate.json index 18ec4542e916..150576bf09e8 100644 --- a/aws-java-sdk-models/src/main/resources/models/iotsitewise-2019-12-02-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/iotsitewise-2019-12-02-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/iotthingsgraph-2018-09-06-intermediate.json b/aws-java-sdk-models/src/main/resources/models/iotthingsgraph-2018-09-06-intermediate.json index ad577f0fcc8e..f0fe608b2cb1 100644 --- a/aws-java-sdk-models/src/main/resources/models/iotthingsgraph-2018-09-06-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/iotthingsgraph-2018-09-06-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/kinesisanalyticsv2-2018-05-23-intermediate.json b/aws-java-sdk-models/src/main/resources/models/kinesisanalyticsv2-2018-05-23-intermediate.json index 3ca4e1c55327..b20dab9408fb 100644 --- a/aws-java-sdk-models/src/main/resources/models/kinesisanalyticsv2-2018-05-23-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/kinesisanalyticsv2-2018-05-23-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/lakeformation-2017-03-31-intermediate.json b/aws-java-sdk-models/src/main/resources/models/lakeformation-2017-03-31-intermediate.json index edc3eb9dfc6e..c4e2e0078af6 100644 --- a/aws-java-sdk-models/src/main/resources/models/lakeformation-2017-03-31-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/lakeformation-2017-03-31-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-intermediate.json index 0ae461a3969c..77cdc3a7c529 100644 --- a/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-intermediate.json @@ -9091,6 +9091,75 @@ "variableSetterType" : "String" }, "xmlNameSpaceUri" : null + }, { + "c2jName" : "LicenseArn", + "c2jShape" : "String", + "deprecated" : false, + "documentation" : "Amazon Resource Name (ARN) of the checkout license.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@param licenseArn Amazon Resource Name (ARN) of the checkout license.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withLicenseArn", + "getterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@return Amazon Resource Name (ARN) of the checkout license.*/", + "getterMethodName" : "getLicenseArn", + "getterModel" : { + "returnType" : "String", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "LicenseArn", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "LicenseArn", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "String", + "marshallingType" : "STRING", + "name" : "LicenseArn", + "sensitive" : false, + "setterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@param licenseArn Amazon Resource Name (ARN) of the checkout license.*/", + "setterMethodName" : "setLicenseArn", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "licenseArn", + "variableType" : "String", + "documentation" : "", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "shouldEmitLegacyEnumSetter" : false, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@param licenseArn Amazon Resource Name (ARN) of the checkout license.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "licenseArn", + "variableType" : "String", + "documentation" : "Amazon Resource Name (ARN) of the checkout license.
", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "xmlNameSpaceUri" : null } ], "membersAsMap" : { "CheckoutType" : { @@ -9457,6 +9526,76 @@ }, "xmlNameSpaceUri" : null }, + "LicenseArn" : { + "c2jName" : "LicenseArn", + "c2jShape" : "String", + "deprecated" : false, + "documentation" : "Amazon Resource Name (ARN) of the checkout license.
", + "endpointDiscoveryId" : false, + "enumType" : null, + "fluentSetterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@param licenseArn Amazon Resource Name (ARN) of the checkout license.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "fluentSetterMethodName" : "withLicenseArn", + "getterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@return Amazon Resource Name (ARN) of the checkout license.*/", + "getterMethodName" : "getLicenseArn", + "getterModel" : { + "returnType" : "String", + "documentation" : null + }, + "http" : { + "additionalMarshallingPath" : null, + "additionalUnmarshallingPath" : null, + "flattened" : false, + "greedy" : false, + "header" : false, + "isPayload" : false, + "isStreaming" : false, + "location" : null, + "marshallLocation" : "PAYLOAD", + "marshallLocationName" : "LicenseArn", + "queryString" : false, + "requiresLength" : false, + "statusCode" : false, + "unmarshallLocationName" : "LicenseArn", + "uri" : false + }, + "idempotencyToken" : false, + "isBinary" : false, + "jsonValue" : false, + "list" : false, + "listModel" : null, + "map" : false, + "mapModel" : null, + "marshallingTargetClass" : "String", + "marshallingType" : "STRING", + "name" : "LicenseArn", + "sensitive" : false, + "setterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@param licenseArn Amazon Resource Name (ARN) of the checkout license.*/", + "setterMethodName" : "setLicenseArn", + "setterModel" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "licenseArn", + "variableType" : "String", + "documentation" : "", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "shouldEmitLegacyEnumSetter" : false, + "shouldFullyQualify" : false, + "simple" : true, + "unmarshallingType" : null, + "varargSetterDocumentation" : "/**Amazon Resource Name (ARN) of the checkout license.
\n@param licenseArn Amazon Resource Name (ARN) of the checkout license.\n@return Returns a reference to this object so that method calls can be chained together.*/", + "variable" : { + "timestampFormat" : null, + "variableDeclarationType" : "String", + "variableName" : "licenseArn", + "variableType" : "String", + "documentation" : "Amazon Resource Name (ARN) of the checkout license.
", + "simpleType" : "String", + "variableSetterType" : "String" + }, + "xmlNameSpaceUri" : null + }, "LicenseConsumptionToken" : { "c2jName" : "LicenseConsumptionToken", "c2jShape" : "String", diff --git a/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-model.json b/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-model.json index 6d72ae6bd22b..7f33eadcefc0 100644 --- a/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-model.json +++ b/aws-java-sdk-models/src/main/resources/models/license-manager-2018-08-01-model.json @@ -1167,6 +1167,10 @@ "Expiration":{ "shape":"ISO8601DateTime", "documentation":"Date and time at which the license checkout expires.
" + }, + "LicenseArn":{ + "shape":"String", + "documentation":"Amazon Resource Name (ARN) of the checkout license.
" } } }, diff --git a/aws-java-sdk-models/src/main/resources/models/lookoutvision-2020-11-20-intermediate.json b/aws-java-sdk-models/src/main/resources/models/lookoutvision-2020-11-20-intermediate.json index 7d1504490406..b2a46f66dcfc 100644 --- a/aws-java-sdk-models/src/main/resources/models/lookoutvision-2020-11-20-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/lookoutvision-2020-11-20-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/marketplace-catalog-2018-09-17-intermediate.json b/aws-java-sdk-models/src/main/resources/models/marketplace-catalog-2018-09-17-intermediate.json index 9399ecafd3fe..20598b9e3cb3 100644 --- a/aws-java-sdk-models/src/main/resources/models/marketplace-catalog-2018-09-17-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/marketplace-catalog-2018-09-17-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/mediaconnect-2018-11-14-intermediate.json b/aws-java-sdk-models/src/main/resources/models/mediaconnect-2018-11-14-intermediate.json index 2e870f2a888d..1711be36fb14 100644 --- a/aws-java-sdk-models/src/main/resources/models/mediaconnect-2018-11-14-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/mediaconnect-2018-11-14-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/mediapackage-2017-10-12-intermediate.json b/aws-java-sdk-models/src/main/resources/models/mediapackage-2017-10-12-intermediate.json index 3bf89a35f873..f3ad53becc16 100644 --- a/aws-java-sdk-models/src/main/resources/models/mediapackage-2017-10-12-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/mediapackage-2017-10-12-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/mediapackage-vod-2018-11-07-intermediate.json b/aws-java-sdk-models/src/main/resources/models/mediapackage-vod-2018-11-07-intermediate.json index f5cb74509a21..c5abaf8f9d37 100644 --- a/aws-java-sdk-models/src/main/resources/models/mediapackage-vod-2018-11-07-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/mediapackage-vod-2018-11-07-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/mediastore-2017-09-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/mediastore-2017-09-01-intermediate.json index 376e1c0257e5..cab22a326196 100644 --- a/aws-java-sdk-models/src/main/resources/models/mediastore-2017-09-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/mediastore-2017-09-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/memorydb-2021-01-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/memorydb-2021-01-01-intermediate.json index 29e5fd31c350..d75ac44e5636 100644 --- a/aws-java-sdk-models/src/main/resources/models/memorydb-2021-01-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/memorydb-2021-01-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/mgh-2017-05-31-intermediate.json b/aws-java-sdk-models/src/main/resources/models/mgh-2017-05-31-intermediate.json index 0ac13844fcc1..c52489f46977 100644 --- a/aws-java-sdk-models/src/main/resources/models/mgh-2017-05-31-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/mgh-2017-05-31-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/migrationhub-config-2019-06-30-intermediate.json b/aws-java-sdk-models/src/main/resources/models/migrationhub-config-2019-06-30-intermediate.json index 7fa606477520..b0460b75eb3c 100644 --- a/aws-java-sdk-models/src/main/resources/models/migrationhub-config-2019-06-30-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/migrationhub-config-2019-06-30-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/mturk-requester-2017-01-17-intermediate.json b/aws-java-sdk-models/src/main/resources/models/mturk-requester-2017-01-17-intermediate.json index ebfb1fc15ca2..0dccab2d6a38 100644 --- a/aws-java-sdk-models/src/main/resources/models/mturk-requester-2017-01-17-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/mturk-requester-2017-01-17-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : { "Assignment" : [ "AssignmentStatus" ], "CreateQualificationTypeRequest" : [ "QualificationTypeStatus" ], diff --git a/aws-java-sdk-models/src/main/resources/models/mwaa-2020-07-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/mwaa-2020-07-01-intermediate.json index f0f051318405..8a69e435a17c 100644 --- a/aws-java-sdk-models/src/main/resources/models/mwaa-2020-07-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/mwaa-2020-07-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/neptune-2014-10-31-intermediate.json b/aws-java-sdk-models/src/main/resources/models/neptune-2014-10-31-intermediate.json index a2ceb8545c8d..a4bdeee2c16f 100644 --- a/aws-java-sdk-models/src/main/resources/models/neptune-2014-10-31-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/neptune-2014-10-31-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/networkmanager-2019-07-05-intermediate.json b/aws-java-sdk-models/src/main/resources/models/networkmanager-2019-07-05-intermediate.json index eab416a85cac..f25c805fe718 100644 --- a/aws-java-sdk-models/src/main/resources/models/networkmanager-2019-07-05-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/networkmanager-2019-07-05-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/opensearch-2021-01-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/opensearch-2021-01-01-intermediate.json index 296626a8a062..980a83487acd 100644 --- a/aws-java-sdk-models/src/main/resources/models/opensearch-2021-01-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/opensearch-2021-01-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/personalize-events-2018-03-22-intermediate.json b/aws-java-sdk-models/src/main/resources/models/personalize-events-2018-03-22-intermediate.json index c1b3b5435e92..4e482cc671ab 100644 --- a/aws-java-sdk-models/src/main/resources/models/personalize-events-2018-03-22-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/personalize-events-2018-03-22-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/pi-2018-02-27-intermediate.json b/aws-java-sdk-models/src/main/resources/models/pi-2018-02-27-intermediate.json index 7a1c0295a3af..88e9f0385a7a 100644 --- a/aws-java-sdk-models/src/main/resources/models/pi-2018-02-27-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/pi-2018-02-27-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/pinpoint-email-2018-07-26-intermediate.json b/aws-java-sdk-models/src/main/resources/models/pinpoint-email-2018-07-26-intermediate.json index 71f5e22ebe8c..3cc66cf84455 100644 --- a/aws-java-sdk-models/src/main/resources/models/pinpoint-email-2018-07-26-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/pinpoint-email-2018-07-26-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/pinpoint-sms-voice-2018-09-05-intermediate.json b/aws-java-sdk-models/src/main/resources/models/pinpoint-sms-voice-2018-09-05-intermediate.json index 3b4906f98f70..03e2a448791d 100644 --- a/aws-java-sdk-models/src/main/resources/models/pinpoint-sms-voice-2018-09-05-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/pinpoint-sms-voice-2018-09-05-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/qldb-2019-01-02-intermediate.json b/aws-java-sdk-models/src/main/resources/models/qldb-2019-01-02-intermediate.json index 790ec14957ef..acb42b37b9bb 100644 --- a/aws-java-sdk-models/src/main/resources/models/qldb-2019-01-02-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/qldb-2019-01-02-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/qldb-session-2019-07-11-intermediate.json b/aws-java-sdk-models/src/main/resources/models/qldb-session-2019-07-11-intermediate.json index 3a0ca69b5891..efb4f95b98da 100644 --- a/aws-java-sdk-models/src/main/resources/models/qldb-session-2019-07-11-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/qldb-session-2019-07-11-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/redshift-data-2019-12-20-intermediate.json b/aws-java-sdk-models/src/main/resources/models/redshift-data-2019-12-20-intermediate.json index cfdf60394032..b9df2ee1cec9 100644 --- a/aws-java-sdk-models/src/main/resources/models/redshift-data-2019-12-20-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/redshift-data-2019-12-20-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/route53-recovery-cluster-2019-12-02-intermediate.json b/aws-java-sdk-models/src/main/resources/models/route53-recovery-cluster-2019-12-02-intermediate.json index 198065923d2e..bb37aa993eca 100644 --- a/aws-java-sdk-models/src/main/resources/models/route53-recovery-cluster-2019-12-02-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/route53-recovery-cluster-2019-12-02-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/route53-recovery-control-config-2020-11-02-intermediate.json b/aws-java-sdk-models/src/main/resources/models/route53-recovery-control-config-2020-11-02-intermediate.json index 58b5dc0f178f..4bf7af47fd85 100644 --- a/aws-java-sdk-models/src/main/resources/models/route53-recovery-control-config-2020-11-02-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/route53-recovery-control-config-2020-11-02-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/route53-recovery-readiness-2019-12-02-intermediate.json b/aws-java-sdk-models/src/main/resources/models/route53-recovery-readiness-2019-12-02-intermediate.json index 6aec3d335e4f..889bf8582eb6 100644 --- a/aws-java-sdk-models/src/main/resources/models/route53-recovery-readiness-2019-12-02-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/route53-recovery-readiness-2019-12-02-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/runtime.sagemaker-2017-05-13-intermediate.json b/aws-java-sdk-models/src/main/resources/models/runtime.sagemaker-2017-05-13-intermediate.json index ea28c3cd179a..5daab429d156 100644 --- a/aws-java-sdk-models/src/main/resources/models/runtime.sagemaker-2017-05-13-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/runtime.sagemaker-2017-05-13-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/s3-control-2018-08-20-intermediate.json b/aws-java-sdk-models/src/main/resources/models/s3-control-2018-08-20-intermediate.json index 8f73e5e145b4..b5b729e882c1 100644 --- a/aws-java-sdk-models/src/main/resources/models/s3-control-2018-08-20-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/s3-control-2018-08-20-intermediate.json @@ -120,7 +120,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/s3outposts-2017-07-25-intermediate.json b/aws-java-sdk-models/src/main/resources/models/s3outposts-2017-07-25-intermediate.json index 93691f963c38..032b8207849e 100644 --- a/aws-java-sdk-models/src/main/resources/models/s3outposts-2017-07-25-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/s3outposts-2017-07-25-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/sagemaker-a2i-runtime-2019-11-07-intermediate.json b/aws-java-sdk-models/src/main/resources/models/sagemaker-a2i-runtime-2019-11-07-intermediate.json index a13c9c733ec2..6c23ff38b89d 100644 --- a/aws-java-sdk-models/src/main/resources/models/sagemaker-a2i-runtime-2019-11-07-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/sagemaker-a2i-runtime-2019-11-07-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/sagemaker-edge-2020-09-23-intermediate.json b/aws-java-sdk-models/src/main/resources/models/sagemaker-edge-2020-09-23-intermediate.json index a855d2b7d1fa..fab69702d503 100644 --- a/aws-java-sdk-models/src/main/resources/models/sagemaker-edge-2020-09-23-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/sagemaker-edge-2020-09-23-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/savingsplans-2019-06-28-intermediate.json b/aws-java-sdk-models/src/main/resources/models/savingsplans-2019-06-28-intermediate.json index 7b56495975ae..3bd523a74e13 100644 --- a/aws-java-sdk-models/src/main/resources/models/savingsplans-2019-06-28-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/savingsplans-2019-06-28-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/securityhub-2018-10-26-intermediate.json b/aws-java-sdk-models/src/main/resources/models/securityhub-2018-10-26-intermediate.json index 689c37a975b9..cd79977ffc22 100644 --- a/aws-java-sdk-models/src/main/resources/models/securityhub-2018-10-26-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/securityhub-2018-10-26-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/service-quotas-2019-06-24-intermediate.json b/aws-java-sdk-models/src/main/resources/models/service-quotas-2019-06-24-intermediate.json index 5e1a0a9121d7..1f1ff0aa00fa 100644 --- a/aws-java-sdk-models/src/main/resources/models/service-quotas-2019-06-24-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/service-quotas-2019-06-24-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/sesv2-2019-09-27-intermediate.json b/aws-java-sdk-models/src/main/resources/models/sesv2-2019-09-27-intermediate.json index 2b9a719422f3..e6d629494504 100644 --- a/aws-java-sdk-models/src/main/resources/models/sesv2-2019-09-27-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/sesv2-2019-09-27-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/snow-device-management-2021-08-04-intermediate.json b/aws-java-sdk-models/src/main/resources/models/snow-device-management-2021-08-04-intermediate.json index 7569543cc563..db2244bac949 100644 --- a/aws-java-sdk-models/src/main/resources/models/snow-device-management-2021-08-04-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/snow-device-management-2021-08-04-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/ssm-contacts-2021-05-03-intermediate.json b/aws-java-sdk-models/src/main/resources/models/ssm-contacts-2021-05-03-intermediate.json index 0c5579b6aa02..be8da1d0018d 100644 --- a/aws-java-sdk-models/src/main/resources/models/ssm-contacts-2021-05-03-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/ssm-contacts-2021-05-03-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/ssm-incidents-2018-05-10-intermediate.json b/aws-java-sdk-models/src/main/resources/models/ssm-incidents-2018-05-10-intermediate.json index ac5574be1066..615c036640f1 100644 --- a/aws-java-sdk-models/src/main/resources/models/ssm-incidents-2018-05-10-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/ssm-incidents-2018-05-10-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/sso-admin-2020-07-20-intermediate.json b/aws-java-sdk-models/src/main/resources/models/sso-admin-2020-07-20-intermediate.json index a64f2a53c6fe..2d84148c2b59 100644 --- a/aws-java-sdk-models/src/main/resources/models/sso-admin-2020-07-20-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/sso-admin-2020-07-20-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/sso-oidc-2019-06-10-intermediate.json b/aws-java-sdk-models/src/main/resources/models/sso-oidc-2019-06-10-intermediate.json index d01651364b58..8ae27061b26d 100644 --- a/aws-java-sdk-models/src/main/resources/models/sso-oidc-2019-06-10-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/sso-oidc-2019-06-10-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientMutationMethods", "ClientConstructors", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/translate-2017-07-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/translate-2017-07-01-intermediate.json index 4a2a710cd79c..a97792fe742e 100644 --- a/aws-java-sdk-models/src/main/resources/models/translate-2017-07-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/translate-2017-07-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientConstructors", "ClientMutationMethods" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/wafv2-2019-07-29-intermediate.json b/aws-java-sdk-models/src/main/resources/models/wafv2-2019-07-29-intermediate.json index aee154f91941..2fa9d62eb68e 100644 --- a/aws-java-sdk-models/src/main/resources/models/wafv2-2019-07-29-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/wafv2-2019-07-29-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/wellarchitected-2020-03-31-intermediate.json b/aws-java-sdk-models/src/main/resources/models/wellarchitected-2020-03-31-intermediate.json index 6c46407ed3fe..d85b13682ffb 100644 --- a/aws-java-sdk-models/src/main/resources/models/wellarchitected-2020-03-31-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/wellarchitected-2020-03-31-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "EnumSetterOverload", "ClientMutationMethods" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-models/src/main/resources/models/workdocs-2016-05-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/workdocs-2016-05-01-intermediate.json index e75bebd13e2a..0b3a32f34026 100644 --- a/aws-java-sdk-models/src/main/resources/models/workdocs-2016-05-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/workdocs-2016-05-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "ClientMutationMethods", "EnumSetterOverload", "ClientConstructors" ], "emitLegacyEnumSetterFor" : { "Activity" : [ "Type" ], "Comment" : [ "Status", "Visibility" ], diff --git a/aws-java-sdk-models/src/main/resources/models/workmailmessageflow-2019-05-01-intermediate.json b/aws-java-sdk-models/src/main/resources/models/workmailmessageflow-2019-05-01-intermediate.json index f139bc0fa0c3..b4ef780a8829 100644 --- a/aws-java-sdk-models/src/main/resources/models/workmailmessageflow-2019-05-01-intermediate.json +++ b/aws-java-sdk-models/src/main/resources/models/workmailmessageflow-2019-05-01-intermediate.json @@ -20,7 +20,7 @@ "customServiceMetadata" : null, "customServiceNameForRequest" : null, "customSignerProvider" : null, - "deprecatedSuppressions" : [ "ClientConstructors", "ClientMutationMethods", "EnumSetterOverload" ], + "deprecatedSuppressions" : [ "EnumSetterOverload", "ClientMutationMethods", "ClientConstructors" ], "emitLegacyEnumSetterFor" : null, "operationModifiers" : null, "operationsWithResponseStreamContentLengthValidation" : null, diff --git a/aws-java-sdk-mq/pom.xml b/aws-java-sdk-mq/pom.xml index d41275d537f5..4216e40bd06e 100644 --- a/aws-java-sdk-mq/pom.xml +++ b/aws-java-sdk-mq/pom.xml @@ -5,7 +5,7 @@