Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit e752071

Browse files
Release v1.51.7 (2024-03-25) (#5206)
Release v1.51.7 (2024-03-25) === ### Service Client Updates * `service/codebuild`: Updates service API and documentation * Supporting GitLab and GitLab Self Managed as source types in AWS CodeBuild. * `service/ec2`: Updates service API and documentation * Added support for ModifyInstanceMetadataDefaults and GetInstanceMetadataDefaults to set Instance Metadata Service account defaults * `service/ecs`: Updates service documentation * Documentation only update for Amazon ECS. * `service/emr-containers`: Updates service API * `service/globalaccelerator`: Updates service API and documentation * `service/medialive`: Updates service API and documentation * Exposing TileMedia H265 options * `service/sagemaker`: Updates service API * Introduced support for the following new instance types on SageMaker Studio for JupyterLab and CodeEditor applications: m6i, m6id, m7i, c6i, c6id, c7i, r6i, r6id, r7i, and p5
1 parent 40b0a0b commit e752071

File tree

23 files changed

+1843
-450
lines changed

23 files changed

+1843
-450
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
Release v1.51.7 (2024-03-25)
2+
===
3+
4+
### Service Client Updates
5+
* `service/codebuild`: Updates service API and documentation
6+
* Supporting GitLab and GitLab Self Managed as source types in AWS CodeBuild.
7+
* `service/ec2`: Updates service API and documentation
8+
* Added support for ModifyInstanceMetadataDefaults and GetInstanceMetadataDefaults to set Instance Metadata Service account defaults
9+
* `service/ecs`: Updates service documentation
10+
* Documentation only update for Amazon ECS.
11+
* `service/emr-containers`: Updates service API
12+
* `service/globalaccelerator`: Updates service API and documentation
13+
* `service/medialive`: Updates service API and documentation
14+
* Exposing TileMedia H265 options
15+
* `service/sagemaker`: Updates service API
16+
* Introduced support for the following new instance types on SageMaker Studio for JupyterLab and CodeEditor applications: m6i, m6id, m7i, c6i, c6id, c7i, r6i, r6id, r7i, and p5
17+
118
Release v1.51.6 (2024-03-22)
219
===
320

aws/endpoints/defaults.go

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.51.6"
8+
const SDKVersion = "1.51.7"

models/apis/codebuild/2016-10-06/api-2.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,8 @@
681681
"enum":[
682682
"OAUTH",
683683
"BASIC_AUTH",
684-
"PERSONAL_ACCESS_TOKEN"
684+
"PERSONAL_ACCESS_TOKEN",
685+
"CODECONNECTIONS"
685686
]
686687
},
687688
"BatchDeleteBuildsInput":{
@@ -2446,7 +2447,9 @@
24462447
"enum":[
24472448
"GITHUB",
24482449
"BITBUCKET",
2449-
"GITHUB_ENTERPRISE"
2450+
"GITHUB_ENTERPRISE",
2451+
"GITLAB",
2452+
"GITLAB_SELF_MANAGED"
24502453
]
24512454
},
24522455
"SharedResourceSortByType":{
@@ -2473,14 +2476,18 @@
24732476
},
24742477
"SourceAuthType":{
24752478
"type":"string",
2476-
"enum":["OAUTH"]
2479+
"enum":[
2480+
"OAUTH",
2481+
"CODECONNECTIONS"
2482+
]
24772483
},
24782484
"SourceCredentialsInfo":{
24792485
"type":"structure",
24802486
"members":{
24812487
"arn":{"shape":"NonEmptyString"},
24822488
"serverType":{"shape":"ServerType"},
2483-
"authType":{"shape":"AuthType"}
2489+
"authType":{"shape":"AuthType"},
2490+
"resource":{"shape":"String"}
24842491
}
24852492
},
24862493
"SourceCredentialsInfos":{
@@ -2493,6 +2500,8 @@
24932500
"CODECOMMIT",
24942501
"CODEPIPELINE",
24952502
"GITHUB",
2503+
"GITLAB",
2504+
"GITLAB_SELF_MANAGED",
24962505
"S3",
24972506
"BITBUCKET",
24982507
"GITHUB_ENTERPRISE",

models/apis/codebuild/2016-10-06/docs-2.json

Lines changed: 10 additions & 9 deletions
Large diffs are not rendered by default.

models/apis/ec2/2016-11-15/api-2.json

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3937,6 +3937,15 @@
39373937
"input":{"shape":"GetImageBlockPublicAccessStateRequest"},
39383938
"output":{"shape":"GetImageBlockPublicAccessStateResult"}
39393939
},
3940+
"GetInstanceMetadataDefaults":{
3941+
"name":"GetInstanceMetadataDefaults",
3942+
"http":{
3943+
"method":"POST",
3944+
"requestUri":"/"
3945+
},
3946+
"input":{"shape":"GetInstanceMetadataDefaultsRequest"},
3947+
"output":{"shape":"GetInstanceMetadataDefaultsResult"}
3948+
},
39403949
"GetInstanceTypesFromInstanceRequirements":{
39413950
"name":"GetInstanceTypesFromInstanceRequirements",
39423951
"http":{
@@ -4482,6 +4491,15 @@
44824491
"input":{"shape":"ModifyInstanceMaintenanceOptionsRequest"},
44834492
"output":{"shape":"ModifyInstanceMaintenanceOptionsResult"}
44844493
},
4494+
"ModifyInstanceMetadataDefaults":{
4495+
"name":"ModifyInstanceMetadataDefaults",
4496+
"http":{
4497+
"method":"POST",
4498+
"requestUri":"/"
4499+
},
4500+
"input":{"shape":"ModifyInstanceMetadataDefaultsRequest"},
4501+
"output":{"shape":"ModifyInstanceMetadataDefaultsResult"}
4502+
},
44854503
"ModifyInstanceMetadataOptions":{
44864504
"name":"ModifyInstanceMetadataOptions",
44874505
"http":{
@@ -8086,6 +8104,7 @@
80868104
]
80878105
},
80888106
"BoxedDouble":{"type":"double"},
8107+
"BoxedInteger":{"type":"integer"},
80898108
"BundleId":{"type":"string"},
80908109
"BundleIdStringList":{
80918110
"type":"list",
@@ -13055,6 +13074,22 @@
1305513074
"locationName":"item"
1305613075
}
1305713076
},
13077+
"DefaultInstanceMetadataEndpointState":{
13078+
"type":"string",
13079+
"enum":[
13080+
"disabled",
13081+
"enabled",
13082+
"no-preference"
13083+
]
13084+
},
13085+
"DefaultInstanceMetadataTagsState":{
13086+
"type":"string",
13087+
"enum":[
13088+
"disabled",
13089+
"enabled",
13090+
"no-preference"
13091+
]
13092+
},
1305813093
"DefaultNetworkCardIndex":{"type":"integer"},
1305913094
"DefaultRouteTableAssociationValue":{
1306013095
"type":"string",
@@ -23599,6 +23634,21 @@
2359923634
}
2360023635
}
2360123636
},
23637+
"GetInstanceMetadataDefaultsRequest":{
23638+
"type":"structure",
23639+
"members":{
23640+
"DryRun":{"shape":"Boolean"}
23641+
}
23642+
},
23643+
"GetInstanceMetadataDefaultsResult":{
23644+
"type":"structure",
23645+
"members":{
23646+
"AccountLevel":{
23647+
"shape":"InstanceMetadataDefaultsResponse",
23648+
"locationName":"accountLevel"
23649+
}
23650+
}
23651+
},
2360223652
"GetInstanceTypesFromInstanceRequirementsRequest":{
2360323653
"type":"structure",
2360423654
"required":[
@@ -26931,6 +26981,27 @@
2693126981
"targeted"
2693226982
]
2693326983
},
26984+
"InstanceMetadataDefaultsResponse":{
26985+
"type":"structure",
26986+
"members":{
26987+
"HttpTokens":{
26988+
"shape":"HttpTokensState",
26989+
"locationName":"httpTokens"
26990+
},
26991+
"HttpPutResponseHopLimit":{
26992+
"shape":"BoxedInteger",
26993+
"locationName":"httpPutResponseHopLimit"
26994+
},
26995+
"HttpEndpoint":{
26996+
"shape":"InstanceMetadataEndpointState",
26997+
"locationName":"httpEndpoint"
26998+
},
26999+
"InstanceMetadataTags":{
27000+
"shape":"InstanceMetadataTagsState",
27001+
"locationName":"instanceMetadataTags"
27002+
}
27003+
}
27004+
},
2693427005
"InstanceMetadataEndpointState":{
2693527006
"type":"string",
2693627007
"enum":[
@@ -32273,6 +32344,14 @@
3227332344
}
3227432345
},
3227532346
"MemorySize":{"type":"long"},
32347+
"MetadataDefaultHttpTokensState":{
32348+
"type":"string",
32349+
"enum":[
32350+
"optional",
32351+
"required",
32352+
"no-preference"
32353+
]
32354+
},
3227632355
"MetricPoint":{
3227732356
"type":"structure",
3227832357
"members":{
@@ -32805,6 +32884,25 @@
3280532884
}
3280632885
}
3280732886
},
32887+
"ModifyInstanceMetadataDefaultsRequest":{
32888+
"type":"structure",
32889+
"members":{
32890+
"HttpTokens":{"shape":"MetadataDefaultHttpTokensState"},
32891+
"HttpPutResponseHopLimit":{"shape":"BoxedInteger"},
32892+
"HttpEndpoint":{"shape":"DefaultInstanceMetadataEndpointState"},
32893+
"InstanceMetadataTags":{"shape":"DefaultInstanceMetadataTagsState"},
32894+
"DryRun":{"shape":"Boolean"}
32895+
}
32896+
},
32897+
"ModifyInstanceMetadataDefaultsResult":{
32898+
"type":"structure",
32899+
"members":{
32900+
"Return":{
32901+
"shape":"Boolean",
32902+
"locationName":"return"
32903+
}
32904+
}
32905+
},
3280832906
"ModifyInstanceMetadataOptionsRequest":{
3280932907
"type":"structure",
3281032908
"required":["InstanceId"],

0 commit comments

Comments
 (0)