Skip to content

Commit

Permalink
Release v1.44.105 (2022-09-23) (#4567)
Browse files Browse the repository at this point in the history
Release v1.44.105 (2022-09-23)
===

### Service Client Updates
* `service/apprunner`: Updates service API
* `service/ec2`: Updates service API and documentation
  * Letting external AWS customers provide ImageId as a Launch Template override in FleetLaunchTemplateOverridesRequest
* `service/lightsail`: Updates service API and documentation
  * This release adds Instance Metadata Service (IMDS) support for Lightsail instances.
* `service/models.lex.v2`: Updates service API and documentation
* `service/nimble`: Updates service API, documentation, and waiters
* `service/ssm`: Updates service API
  * This release adds new SSM document types ConformancePackTemplate and CloudFormation
* `service/wafv2`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation committed Sep 23, 2022
1 parent 60cc9e7 commit 5a9633d
Show file tree
Hide file tree
Showing 25 changed files with 1,642 additions and 126 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,18 @@
Release v1.44.105 (2022-09-23)
===

### Service Client Updates
* `service/apprunner`: Updates service API
* `service/ec2`: Updates service API and documentation
* Letting external AWS customers provide ImageId as a Launch Template override in FleetLaunchTemplateOverridesRequest
* `service/lightsail`: Updates service API and documentation
* This release adds Instance Metadata Service (IMDS) support for Lightsail instances.
* `service/models.lex.v2`: Updates service API and documentation
* `service/nimble`: Updates service API, documentation, and waiters
* `service/ssm`: Updates service API
* This release adds new SSM document types ConformancePackTemplate and CloudFormation
* `service/wafv2`: Updates service documentation

Release v1.44.104 (2022-09-22)
===

Expand Down
21 changes: 21 additions & 0 deletions aws/endpoints/defaults.go

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

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.104"
const SDKVersion = "1.44.105"
3 changes: 2 additions & 1 deletion models/apis/apprunner/2020-05-15/api-2.json
Expand Up @@ -1365,7 +1365,8 @@
"NODEJS_12",
"NODEJS_14",
"CORRETTO_8",
"CORRETTO_11"
"CORRETTO_11",
"NODEJS_16"
]
},
"RuntimeEnvironmentVariables":{
Expand Down
7 changes: 6 additions & 1 deletion models/apis/ec2/2016-11-15/api-2.json
Expand Up @@ -20014,6 +20014,10 @@
"InstanceRequirements":{
"shape":"InstanceRequirements",
"locationName":"instanceRequirements"
},
"ImageId":{
"shape":"ImageId",
"locationName":"imageId"
}
}
},
Expand Down Expand Up @@ -20041,7 +20045,8 @@
"WeightedCapacity":{"shape":"Double"},
"Priority":{"shape":"Double"},
"Placement":{"shape":"Placement"},
"InstanceRequirements":{"shape":"InstanceRequirementsRequest"}
"InstanceRequirements":{"shape":"InstanceRequirementsRequest"},
"ImageId":{"shape":"ImageId"}
}
},
"FleetLaunchTemplateSpecification":{
Expand Down
2 changes: 2 additions & 0 deletions models/apis/ec2/2016-11-15/docs-2.json
Expand Up @@ -9543,6 +9543,8 @@
"EnableImageDeprecationRequest$ImageId": "<p>The ID of the AMI.</p>",
"ExportImageRequest$ImageId": "<p>The ID of the image.</p>",
"FastLaunchImageIdList$member": null,
"FleetLaunchTemplateOverrides$ImageId": "<p>The ID of the AMI. An AMI is required to launch an instance. The AMI ID must be specified here or in the launch template.</p>",
"FleetLaunchTemplateOverridesRequest$ImageId": "<p>The ID of the AMI. An AMI is required to launch an instance. The AMI ID must be specified here or in the launch template.</p>",
"ImageIdList$member": null,
"ImageIdStringList$member": null,
"ModifyImageAttributeRequest$ImageId": "<p>The ID of the AMI.</p>",
Expand Down
82 changes: 79 additions & 3 deletions models/apis/lightsail/2016-11-28/api-2.json
Expand Up @@ -2645,6 +2645,24 @@
{"shape":"UnauthenticatedException"}
]
},
"UpdateInstanceMetadataOptions":{
"name":"UpdateInstanceMetadataOptions",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateInstanceMetadataOptionsRequest"},
"output":{"shape":"UpdateInstanceMetadataOptionsResult"},
"errors":[
{"shape":"ServiceException"},
{"shape":"InvalidInputException"},
{"shape":"NotFoundException"},
{"shape":"OperationFailureException"},
{"shape":"AccessDeniedException"},
{"shape":"AccountSetupInProgressException"},
{"shape":"UnauthenticatedException"}
]
},
"UpdateLoadBalancerAttribute":{
"name":"UpdateLoadBalancerAttribute",
"http":{
Expand Down Expand Up @@ -5743,6 +5761,27 @@
"type":"list",
"member":{"shape":"HostKeyAttributes"}
},
"HttpEndpoint":{
"type":"string",
"enum":[
"disabled",
"enabled"
]
},
"HttpProtocolIpv6":{
"type":"string",
"enum":[
"disabled",
"enabled"
]
},
"HttpTokens":{
"type":"string",
"enum":[
"optional",
"required"
]
},
"IAMAccessKeyId":{
"type":"string",
"max":20,
Expand Down Expand Up @@ -5800,7 +5839,8 @@
"networking":{"shape":"InstanceNetworking"},
"state":{"shape":"InstanceState"},
"username":{"shape":"NonEmptyString"},
"sshKeyName":{"shape":"ResourceName"}
"sshKeyName":{"shape":"ResourceName"},
"metadataOptions":{"shape":"InstanceMetadataOptions"}
}
},
"InstanceAccessDetails":{
Expand Down Expand Up @@ -5896,6 +5936,23 @@
"type":"list",
"member":{"shape":"Instance"}
},
"InstanceMetadataOptions":{
"type":"structure",
"members":{
"state":{"shape":"InstanceMetadataState"},
"httpTokens":{"shape":"HttpTokens"},
"httpEndpoint":{"shape":"HttpEndpoint"},
"httpPutResponseHopLimit":{"shape":"integer"},
"httpProtocolIpv6":{"shape":"HttpProtocolIpv6"}
}
},
"InstanceMetadataState":{
"type":"string",
"enum":[
"pending",
"applied"
]
},
"InstanceMetricName":{
"type":"string",
"enum":[
Expand All @@ -5906,7 +5963,8 @@
"StatusCheckFailed_Instance",
"StatusCheckFailed_System",
"BurstCapacityTime",
"BurstCapacityPercentage"
"BurstCapacityPercentage",
"MetadataNoToken"
]
},
"InstanceNetworking":{
Expand Down Expand Up @@ -6606,7 +6664,8 @@
"DeleteBucketAccessKey",
"UpdateBucketBundle",
"UpdateBucket",
"SetResourceAccessForBucket"
"SetResourceAccessForBucket",
"UpdateInstanceMetadataOptions"
]
},
"Origin":{
Expand Down Expand Up @@ -7512,6 +7571,23 @@
"operations":{"shape":"OperationList"}
}
},
"UpdateInstanceMetadataOptionsRequest":{
"type":"structure",
"required":["instanceName"],
"members":{
"instanceName":{"shape":"ResourceName"},
"httpTokens":{"shape":"HttpTokens"},
"httpEndpoint":{"shape":"HttpEndpoint"},
"httpPutResponseHopLimit":{"shape":"integer"},
"httpProtocolIpv6":{"shape":"HttpProtocolIpv6"}
}
},
"UpdateInstanceMetadataOptionsResult":{
"type":"structure",
"members":{
"operation":{"shape":"Operation"}
}
},
"UpdateLoadBalancerAttributeRequest":{
"type":"structure",
"required":[
Expand Down

0 comments on commit 5a9633d

Please sign in to comment.