Skip to content

Commit e6ef6d8

Browse files
Updated API models and rebuilt service gems.
1 parent 53eb503 commit e6ef6d8

File tree

87 files changed

+5921
-447
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+5921
-447
lines changed

apis/codeconnections/2023-12-01/api-2.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,8 @@
595595
"RoleArn":{"shape":"IamRoleArn"},
596596
"SyncType":{"shape":"SyncConfigurationType"},
597597
"PublishDeploymentStatus":{"shape":"PublishDeploymentStatus"},
598-
"TriggerResourceUpdateOn":{"shape":"TriggerResourceUpdateOn"}
598+
"TriggerResourceUpdateOn":{"shape":"TriggerResourceUpdateOn"},
599+
"PullRequestComment":{"shape":"PullRequestComment"}
599600
}
600601
},
601602
"CreateSyncConfigurationOutput":{
@@ -996,6 +997,13 @@
996997
"DISABLED"
997998
]
998999
},
1000+
"PullRequestComment":{
1001+
"type":"string",
1002+
"enum":[
1003+
"ENABLED",
1004+
"DISABLED"
1005+
]
1006+
},
9991007
"RepositoryLinkArn":{
10001008
"type":"string",
10011009
"pattern":"^arn:aws(?:-[a-z]+)*:(codestar-connections|codeconnections):[a-z\\-0-9]+:\\d{12}:repository-link\\/[a-zA-Z0-9\\-:/]+"
@@ -1309,7 +1317,8 @@
13091317
"RoleArn":{"shape":"IamRoleArn"},
13101318
"SyncType":{"shape":"SyncConfigurationType"},
13111319
"PublishDeploymentStatus":{"shape":"PublishDeploymentStatus"},
1312-
"TriggerResourceUpdateOn":{"shape":"TriggerResourceUpdateOn"}
1320+
"TriggerResourceUpdateOn":{"shape":"TriggerResourceUpdateOn"},
1321+
"PullRequestComment":{"shape":"PullRequestComment"}
13131322
}
13141323
},
13151324
"SyncConfigurationList":{
@@ -1509,7 +1518,8 @@
15091518
"RoleArn":{"shape":"IamRoleArn"},
15101519
"SyncType":{"shape":"SyncConfigurationType"},
15111520
"PublishDeploymentStatus":{"shape":"PublishDeploymentStatus"},
1512-
"TriggerResourceUpdateOn":{"shape":"TriggerResourceUpdateOn"}
1521+
"TriggerResourceUpdateOn":{"shape":"TriggerResourceUpdateOn"},
1522+
"PullRequestComment":{"shape":"PullRequestComment"}
15131523
}
15141524
},
15151525
"UpdateSyncConfigurationOutput":{

apis/codeconnections/2023-12-01/docs-2.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"ConnectionArn": {
9999
"base": null,
100100
"refs": {
101-
"Connection$ConnectionArn": "<p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between Amazon Web Services.</p> <note> <p>The ARN is never reused if the connection is deleted.</p> </note>",
101+
"Connection$ConnectionArn": "<p>The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between Amazon Web Servicesservices.</p> <note> <p>The ARN is never reused if the connection is deleted.</p> </note>",
102102
"CreateConnectionOutput$ConnectionArn": "<p>The Amazon Resource Name (ARN) of the connection to be created. The ARN is used as the connection reference when the connection is shared between Amazon Web Services services.</p> <note> <p>The ARN is never reused if the connection is deleted.</p> </note>",
103103
"CreateRepositoryLinkInput$ConnectionArn": "<p>The Amazon Resource Name (ARN) of the connection to be associated with the repository link.</p>",
104104
"DeleteConnectionInput$ConnectionArn": "<p>The Amazon Resource Name (ARN) of the connection to be deleted.</p> <note> <p>The ARN is never reused if the connection is deleted.</p> </note>",
@@ -538,6 +538,14 @@
538538
"UpdateSyncConfigurationInput$PublishDeploymentStatus": "<p>Whether to enable or disable publishing of deployment status to source providers.</p>"
539539
}
540540
},
541+
"PullRequestComment": {
542+
"base": null,
543+
"refs": {
544+
"CreateSyncConfigurationInput$PullRequestComment": "<p>A toggle that specifies whether to enable or disable pull request comments for the sync configuration to be created.</p>",
545+
"SyncConfiguration$PullRequestComment": "<p>A toggle that specifies whether to enable or disable pull request comments for the sync configuration to be created.</p>",
546+
"UpdateSyncConfigurationInput$PullRequestComment": "<p>TA toggle that specifies whether to enable or disable pull request comments for the sync configuration to be updated.</p>"
547+
}
548+
},
541549
"RepositoryLinkArn": {
542550
"base": null,
543551
"refs": {

apis/glue/2017-03-31/api-2.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3109,6 +3109,26 @@
31093109
{"shape":"EntityNotFoundException"}
31103110
]
31113111
},
3112+
"TestConnection":{
3113+
"name":"TestConnection",
3114+
"http":{
3115+
"method":"POST",
3116+
"requestUri":"/"
3117+
},
3118+
"input":{"shape":"TestConnectionRequest"},
3119+
"output":{"shape":"TestConnectionResponse"},
3120+
"errors":[
3121+
{"shape":"InvalidInputException"},
3122+
{"shape":"OperationTimeoutException"},
3123+
{"shape":"ResourceNumberLimitExceededException"},
3124+
{"shape":"GlueEncryptionException"},
3125+
{"shape":"FederationSourceException"},
3126+
{"shape":"AccessDeniedException"},
3127+
{"shape":"EntityNotFoundException"},
3128+
{"shape":"ConflictException"},
3129+
{"shape":"InternalServiceException"}
3130+
]
3131+
},
31123132
"UntagResource":{
31133133
"name":"UntagResource",
31143134
"http":{
@@ -13453,6 +13473,30 @@
1345313473
"FIND_MATCHES"
1345413474
]
1345513475
},
13476+
"TestConnectionInput":{
13477+
"type":"structure",
13478+
"required":[
13479+
"ConnectionType",
13480+
"ConnectionProperties"
13481+
],
13482+
"members":{
13483+
"ConnectionType":{"shape":"ConnectionType"},
13484+
"ConnectionProperties":{"shape":"ConnectionProperties"},
13485+
"AuthenticationConfiguration":{"shape":"AuthenticationConfigurationInput"}
13486+
}
13487+
},
13488+
"TestConnectionRequest":{
13489+
"type":"structure",
13490+
"members":{
13491+
"ConnectionName":{"shape":"NameString"},
13492+
"TestConnectionInput":{"shape":"TestConnectionInput"}
13493+
}
13494+
},
13495+
"TestConnectionResponse":{
13496+
"type":"structure",
13497+
"members":{
13498+
}
13499+
},
1345613500
"ThrottlingException":{
1345713501
"type":"structure",
1345813502
"members":{

apis/glue/2017-03-31/docs-2.json

Lines changed: 24 additions & 3 deletions
Large diffs are not rendered by default.

apis/lambda/2015-03-31/api-2.json

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
{"shape":"InvalidParameterValueException"},
4848
{"shape":"PolicyLengthExceededException"},
4949
{"shape":"TooManyRequestsException"},
50-
{"shape":"PreconditionFailedException"}
50+
{"shape":"PreconditionFailedException"},
51+
{"shape":"PublicPolicyException"}
5152
]
5253
},
5354
"CreateAlias":{
@@ -1104,7 +1105,8 @@
11041105
{"shape":"ResourceNotFoundException"},
11051106
{"shape":"InvalidParameterValueException"},
11061107
{"shape":"TooManyRequestsException"},
1107-
{"shape":"PreconditionFailedException"}
1108+
{"shape":"PreconditionFailedException"},
1109+
{"shape":"PublicPolicyException"}
11081110
]
11091111
},
11101112
"TagResource":{
@@ -1598,7 +1600,8 @@
15981600
"members":{
15991601
"Description":{"shape":"Description"},
16001602
"AllowedPublishers":{"shape":"AllowedPublishers"},
1601-
"CodeSigningPolicies":{"shape":"CodeSigningPolicies"}
1603+
"CodeSigningPolicies":{"shape":"CodeSigningPolicies"},
1604+
"Tags":{"shape":"Tags"}
16021605
}
16031606
},
16041607
"CreateCodeSigningConfigResponse":{
@@ -1625,6 +1628,7 @@
16251628
"MaximumRecordAgeInSeconds":{"shape":"MaximumRecordAgeInSeconds"},
16261629
"BisectBatchOnFunctionError":{"shape":"BisectBatchOnFunctionError"},
16271630
"MaximumRetryAttempts":{"shape":"MaximumRetryAttemptsEventSourceMapping"},
1631+
"Tags":{"shape":"Tags"},
16281632
"TumblingWindowInSeconds":{"shape":"TumblingWindowInSeconds"},
16291633
"Topics":{"shape":"Topics"},
16301634
"Queues":{"shape":"Queues"},
@@ -2064,6 +2068,12 @@
20642068
"max":10240,
20652069
"min":512
20662070
},
2071+
"EventSourceMappingArn":{
2072+
"type":"string",
2073+
"max":120,
2074+
"min":85,
2075+
"pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\\d{1}:\\d{12}:event-source-mapping:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
2076+
},
20672077
"EventSourceMappingConfiguration":{
20682078
"type":"structure",
20692079
"members":{
@@ -2095,7 +2105,8 @@
20952105
"ScalingConfig":{"shape":"ScalingConfig"},
20962106
"DocumentDBEventSourceConfig":{"shape":"DocumentDBEventSourceConfig"},
20972107
"KMSKeyArn":{"shape":"KMSKeyArn"},
2098-
"FilterCriteriaError":{"shape":"FilterCriteriaError"}
2108+
"FilterCriteriaError":{"shape":"FilterCriteriaError"},
2109+
"EventSourceMappingArn":{"shape":"EventSourceMappingArn"}
20992110
}
21002111
},
21012112
"EventSourceMappingsList":{
@@ -3478,7 +3489,7 @@
34783489
"required":["Resource"],
34793490
"members":{
34803491
"Resource":{
3481-
"shape":"FunctionArn",
3492+
"shape":"TaggableResource",
34823493
"location":"uri",
34833494
"locationName":"ARN"
34843495
}
@@ -4480,14 +4491,20 @@
44804491
],
44814492
"members":{
44824493
"Resource":{
4483-
"shape":"FunctionArn",
4494+
"shape":"TaggableResource",
44844495
"location":"uri",
44854496
"locationName":"ARN"
44864497
},
44874498
"Tags":{"shape":"Tags"}
44884499
}
44894500
},
44904501
"TagValue":{"type":"string"},
4502+
"TaggableResource":{
4503+
"type":"string",
4504+
"max":256,
4505+
"min":1,
4506+
"pattern":"arn:(aws[a-zA-Z-]*):lambda:[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\\d{1}:\\d{12}:(function:[a-zA-Z0-9-_]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?|code-signing-config:csc-[a-z0-9]{17}|event-source-mapping:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})"
4507+
},
44914508
"Tags":{
44924509
"type":"map",
44934510
"key":{"shape":"TagKey"},
@@ -4593,7 +4610,7 @@
45934610
],
45944611
"members":{
45954612
"Resource":{
4596-
"shape":"FunctionArn",
4613+
"shape":"TaggableResource",
45974614
"location":"uri",
45984615
"locationName":"ARN"
45994616
},

0 commit comments

Comments
 (0)