Skip to content

Commit 20946ad

Browse files
Updated API models and rebuilt service gems.
1 parent 5483c8b commit 20946ad

File tree

57 files changed

+1215
-89
lines changed

Some content is hidden

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

57 files changed

+1215
-89
lines changed

apis/application-autoscaling/2016-02-06/docs-2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@
490490
}
491491
},
492492
"PredictiveScalingPolicyConfiguration": {
493-
"base": "<p> Represents a predictive scaling policy configuration. </p>",
493+
"base": "<p> Represents a predictive scaling policy configuration. Predictive scaling is supported on Amazon ECS services. </p>",
494494
"refs": {
495495
"PutScalingPolicyRequest$PredictiveScalingPolicyConfiguration": "<p> The configuration of the predictive scaling policy. </p>",
496496
"ScalingPolicy$PredictiveScalingPolicyConfiguration": "<p> The predictive scaling policy configuration. </p>"

apis/bcm-pricing-calculator/2024-06-19/api-2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@
692692
"type":"string",
693693
"max":32,
694694
"min":0,
695-
"pattern":"[-a-zA-Z0-9\\.\\-_:,]*"
695+
"pattern":"[-a-zA-Z0-9\\.\\-_:, \\/()]*"
696696
},
697697
"BatchCreateBillScenarioCommitmentModificationEntries":{
698698
"type":"list",
@@ -2120,7 +2120,7 @@
21202120
"type":"string",
21212121
"max":32,
21222122
"min":0,
2123-
"pattern":"[-a-zA-Z0-9\\.\\-_:,]*"
2123+
"pattern":"[-a-zA-Z0-9\\.\\-_:, \\/()]*"
21242124
},
21252125
"PurchaseAgreementType":{
21262126
"type":"string",
@@ -2406,7 +2406,7 @@
24062406
"type":"string",
24072407
"max":128,
24082408
"min":0,
2409-
"pattern":"[-a-zA-Z0-9\\.\\-_:,]*"
2409+
"pattern":"[-a-zA-Z0-9\\.\\-_:, \\/()]*"
24102410
},
24112411
"Uuid":{
24122412
"type":"string",

apis/connect/2017-08-08/api-2.json

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,23 @@
630630
{"shape":"InternalServiceException"}
631631
]
632632
},
633+
"CreatePushNotificationRegistration":{
634+
"name":"CreatePushNotificationRegistration",
635+
"http":{
636+
"method":"PUT",
637+
"requestUri":"/push-notification/{InstanceId}/registrations"
638+
},
639+
"input":{"shape":"CreatePushNotificationRegistrationRequest"},
640+
"output":{"shape":"CreatePushNotificationRegistrationResponse"},
641+
"errors":[
642+
{"shape":"InvalidParameterException"},
643+
{"shape":"ResourceNotFoundException"},
644+
{"shape":"ThrottlingException"},
645+
{"shape":"InternalServiceException"},
646+
{"shape":"AccessDeniedException"},
647+
{"shape":"ServiceQuotaExceededException"}
648+
]
649+
},
633650
"CreateQueue":{
634651
"name":"CreateQueue",
635652
"http":{
@@ -1057,6 +1074,22 @@
10571074
{"shape":"InternalServiceException"}
10581075
]
10591076
},
1077+
"DeletePushNotificationRegistration":{
1078+
"name":"DeletePushNotificationRegistration",
1079+
"http":{
1080+
"method":"DELETE",
1081+
"requestUri":"/push-notification/{InstanceId}/registrations/{RegistrationId}"
1082+
},
1083+
"input":{"shape":"DeletePushNotificationRegistrationRequest"},
1084+
"output":{"shape":"DeletePushNotificationRegistrationResponse"},
1085+
"errors":[
1086+
{"shape":"InvalidParameterException"},
1087+
{"shape":"ResourceNotFoundException"},
1088+
{"shape":"ThrottlingException"},
1089+
{"shape":"InternalServiceException"},
1090+
{"shape":"AccessDeniedException"}
1091+
]
1092+
},
10601093
"DeleteQueue":{
10611094
"name":"DeleteQueue",
10621095
"http":{
@@ -5749,6 +5782,15 @@
57495782
"Transcript":{"shape":"Transcript"}
57505783
}
57515784
},
5785+
"ContactConfiguration":{
5786+
"type":"structure",
5787+
"required":["ContactId"],
5788+
"members":{
5789+
"ContactId":{"shape":"ContactId"},
5790+
"ParticipantRole":{"shape":"ParticipantRole"},
5791+
"IncludeRawMessage":{"shape":"IncludeRawMessage"}
5792+
}
5793+
},
57525794
"ContactDataRequest":{
57535795
"type":"structure",
57545796
"members":{
@@ -6545,6 +6587,38 @@
65456587
"PromptId":{"shape":"PromptId"}
65466588
}
65476589
},
6590+
"CreatePushNotificationRegistrationRequest":{
6591+
"type":"structure",
6592+
"required":[
6593+
"InstanceId",
6594+
"PinpointAppArn",
6595+
"DeviceToken",
6596+
"DeviceType",
6597+
"ContactConfiguration"
6598+
],
6599+
"members":{
6600+
"InstanceId":{
6601+
"shape":"InstanceId",
6602+
"location":"uri",
6603+
"locationName":"InstanceId"
6604+
},
6605+
"ClientToken":{
6606+
"shape":"ClientToken",
6607+
"idempotencyToken":true
6608+
},
6609+
"PinpointAppArn":{"shape":"ARN"},
6610+
"DeviceToken":{"shape":"DeviceToken"},
6611+
"DeviceType":{"shape":"DeviceType"},
6612+
"ContactConfiguration":{"shape":"ContactConfiguration"}
6613+
}
6614+
},
6615+
"CreatePushNotificationRegistrationResponse":{
6616+
"type":"structure",
6617+
"required":["RegistrationId"],
6618+
"members":{
6619+
"RegistrationId":{"shape":"RegistrationId"}
6620+
}
6621+
},
65486622
"CreateQueueRequest":{
65496623
"type":"structure",
65506624
"required":[
@@ -7369,6 +7443,36 @@
73697443
}
73707444
}
73717445
},
7446+
"DeletePushNotificationRegistrationRequest":{
7447+
"type":"structure",
7448+
"required":[
7449+
"InstanceId",
7450+
"RegistrationId",
7451+
"ContactId"
7452+
],
7453+
"members":{
7454+
"InstanceId":{
7455+
"shape":"InstanceId",
7456+
"location":"uri",
7457+
"locationName":"InstanceId"
7458+
},
7459+
"RegistrationId":{
7460+
"shape":"RegistrationId",
7461+
"location":"uri",
7462+
"locationName":"RegistrationId"
7463+
},
7464+
"ContactId":{
7465+
"shape":"ContactId",
7466+
"location":"querystring",
7467+
"locationName":"contactId"
7468+
}
7469+
}
7470+
},
7471+
"DeletePushNotificationRegistrationResponse":{
7472+
"type":"structure",
7473+
"members":{
7474+
}
7475+
},
73727476
"DeleteQueueRequest":{
73737477
"type":"structure",
73747478
"required":[
@@ -8332,6 +8436,19 @@
83328436
"OperatingSystem":{"shape":"OperatingSystem"}
83338437
}
83348438
},
8439+
"DeviceToken":{
8440+
"type":"string",
8441+
"max":500,
8442+
"min":1
8443+
},
8444+
"DeviceType":{
8445+
"type":"string",
8446+
"enum":[
8447+
"GCM",
8448+
"APNS",
8449+
"APNS_SANDBOX"
8450+
]
8451+
},
83358452
"Dimensions":{
83368453
"type":"structure",
83378454
"members":{
@@ -10415,6 +10532,7 @@
1041510532
"min":0,
1041610533
"sensitive":true
1041710534
},
10535+
"IncludeRawMessage":{"type":"boolean"},
1041810536
"Index":{"type":"integer"},
1041910537
"InitiateAs":{
1042010538
"type":"string",
@@ -14156,6 +14274,11 @@
1415614274
"type":"string",
1415714275
"pattern":"[a-z]{2}(-[a-z]+){1,2}(-[0-9])?"
1415814276
},
14277+
"RegistrationId":{
14278+
"type":"string",
14279+
"max":256,
14280+
"min":1
14281+
},
1415914282
"RehydrationType":{
1416014283
"type":"string",
1416114284
"enum":[

0 commit comments

Comments
 (0)