Skip to content

Commit 254f8de

Browse files
Updated API models and rebuilt service gems.
1 parent 86cccb9 commit 254f8de

Some content is hidden

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

50 files changed

+3838
-57
lines changed

apis/mediapackagev2/2022-12-25/api-2.json

Lines changed: 450 additions & 1 deletion
Large diffs are not rendered by default.

apis/mediapackagev2/2022-12-25/docs-2.json

Lines changed: 220 additions & 0 deletions
Large diffs are not rendered by default.

apis/mediapackagev2/2022-12-25/examples-1.json

Lines changed: 467 additions & 0 deletions
Large diffs are not rendered by default.

apis/mediapackagev2/2022-12-25/paginators-1.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
"limit_key": "MaxResults",
1313
"result_key": "Items"
1414
},
15+
"ListHarvestJobs": {
16+
"input_token": "NextToken",
17+
"output_token": "NextToken",
18+
"limit_key": "MaxResults",
19+
"result_key": "Items"
20+
},
1521
"ListOriginEndpoints": {
1622
"input_token": "NextToken",
1723
"output_token": "NextToken",
Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
{
2-
"version": 2,
3-
"waiters": {
2+
"version" : 2,
3+
"waiters" : {
4+
"HarvestJobFinished" : {
5+
"delay" : 2,
6+
"maxAttempts" : 60,
7+
"operation" : "GetHarvestJob",
8+
"acceptors" : [ {
9+
"matcher" : "path",
10+
"argument" : "Status",
11+
"state" : "success",
12+
"expected" : "COMPLETED"
13+
}, {
14+
"matcher" : "path",
15+
"argument" : "Status",
16+
"state" : "success",
17+
"expected" : "CANCELLED"
18+
}, {
19+
"matcher" : "path",
20+
"argument" : "Status",
21+
"state" : "failure",
22+
"expected" : "FAILED"
23+
}, {
24+
"matcher" : "path",
25+
"argument" : "Status",
26+
"state" : "retry",
27+
"expected" : "QUEUED"
28+
}, {
29+
"matcher" : "path",
30+
"argument" : "Status",
31+
"state" : "retry",
32+
"expected" : "IN_PROGRESS"
33+
} ]
34+
}
435
}
5-
}
36+
}

apis/opensearch/2021-01-01/api-2.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,8 @@
15131513
"WarmType":{"shape":"OpenSearchWarmPartitionInstanceType"},
15141514
"WarmCount":{"shape":"IntegerClass"},
15151515
"ColdStorageOptions":{"shape":"ColdStorageOptions"},
1516-
"MultiAZWithStandbyEnabled":{"shape":"Boolean"}
1516+
"MultiAZWithStandbyEnabled":{"shape":"Boolean"},
1517+
"NodeOptions":{"shape":"NodeOptionsList"}
15171518
}
15181519
},
15191520
"ClusterConfigStatus":{
@@ -3420,11 +3421,34 @@
34203421
}
34213422
},
34223423
"NextToken":{"type":"string"},
3424+
"NodeConfig":{
3425+
"type":"structure",
3426+
"members":{
3427+
"Enabled":{"shape":"Boolean"},
3428+
"Type":{"shape":"OpenSearchPartitionInstanceType"},
3429+
"Count":{"shape":"IntegerClass"}
3430+
}
3431+
},
34233432
"NodeId":{
34243433
"type":"string",
34253434
"max":40,
34263435
"min":10
34273436
},
3437+
"NodeOption":{
3438+
"type":"structure",
3439+
"members":{
3440+
"NodeType":{"shape":"NodeOptionsNodeType"},
3441+
"NodeConfig":{"shape":"NodeConfig"}
3442+
}
3443+
},
3444+
"NodeOptionsList":{
3445+
"type":"list",
3446+
"member":{"shape":"NodeOption"}
3447+
},
3448+
"NodeOptionsNodeType":{
3449+
"type":"string",
3450+
"enum":["coordinator"]
3451+
},
34283452
"NodeStatus":{
34293453
"type":"string",
34303454
"enum":[

apis/opensearch/2021-01-01/docs-2.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@
412412
"JWTOptionsOutput$Enabled": "<p>True if JWT use is enabled.</p>",
413413
"ListInstanceTypeDetailsRequest$RetrieveAZs": "<p>An optional parameter that specifies the Availability Zones for the domain.</p>",
414414
"LogPublishingOption$Enabled": "<p>Whether the log should be published.</p>",
415+
"NodeConfig$Enabled": "<p>A boolean that indicates whether a particular node type is enabled or not.</p>",
415416
"NodeToNodeEncryptionOptions$Enabled": "<p>True to enable node-to-node encryption.</p>",
416417
"OffPeakWindowOptions$Enabled": "<p>Whether to enable an off-peak window.</p> <p>This option is only available when modifying a domain created prior to February 16, 2023, not when creating a new domain. All domains created after this date have the off-peak window enabled by default. You can't disable the off-peak window after it's enabled for a domain.</p>",
417418
"OptionStatus$PendingDeletion": "<p>Indicates whether the entity is being deleted.</p>",
@@ -1574,6 +1575,7 @@
15741575
"EBSOptions$VolumeSize": "<p>Specifies the size (in GiB) of EBS volumes attached to data nodes.</p>",
15751576
"EBSOptions$Iops": "<p>Specifies the baseline input/output (I/O) performance of EBS volumes attached to data nodes. Applicable only for the <code>gp3</code> and provisioned IOPS EBS volume types.</p>",
15761577
"EBSOptions$Throughput": "<p>Specifies the throughput (in MiB/s) of the EBS volumes attached to data nodes. Applicable only for the <code>gp3</code> volume type.</p>",
1578+
"NodeConfig$Count": "<p>The number of nodes of a particular node type in the cluster.</p>",
15771579
"SAMLOptionsInput$SessionTimeoutMinutes": "<p>The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440, and the default value is 60.</p>",
15781580
"SAMLOptionsOutput$SessionTimeoutMinutes": "<p>The duration, in minutes, after which a user session becomes inactive.</p>",
15791581
"SnapshotOptions$AutomatedSnapshotStartHour": "<p>The time, in UTC format, when OpenSearch Service takes a daily automated snapshot of the specified domain. Default is <code>0</code> hours.</p>",
@@ -1972,6 +1974,12 @@
19721974
"ListVpcEndpointsResponse$NextToken": "<p>When <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Send the request again using the returned token to retrieve the next page.</p>"
19731975
}
19741976
},
1977+
"NodeConfig": {
1978+
"base": "<p>Container for specifying configuration of any node type.</p>",
1979+
"refs": {
1980+
"NodeOption$NodeConfig": "<p>Container for specifying configuration of any node type.</p>"
1981+
}
1982+
},
19751983
"NodeId": {
19761984
"base": null,
19771985
"refs": {
@@ -1981,6 +1989,24 @@
19811989
"StartDomainMaintenanceRequest$NodeId": "<p>The ID of the data node.</p>"
19821990
}
19831991
},
1992+
"NodeOption": {
1993+
"base": "<p>Container for specifying node type.</p>",
1994+
"refs": {
1995+
"NodeOptionsList$member": null
1996+
}
1997+
},
1998+
"NodeOptionsList": {
1999+
"base": null,
2000+
"refs": {
2001+
"ClusterConfig$NodeOptions": "<p>List of node options for the domain.</p>"
2002+
}
2003+
},
2004+
"NodeOptionsNodeType": {
2005+
"base": null,
2006+
"refs": {
2007+
"NodeOption$NodeType": "<p>Container for node type like coordinating.</p>"
2008+
}
2009+
},
19842010
"NodeStatus": {
19852011
"base": null,
19862012
"refs": {
@@ -2071,6 +2097,7 @@
20712097
"DescribeInstanceTypeLimitsRequest$InstanceType": "<p>The OpenSearch Service instance type for which you need limit information.</p>",
20722098
"DomainNodesStatus$InstanceType": "<p>The instance type information of the node.</p>",
20732099
"InstanceTypeDetails$InstanceType": "<p>The instance type.</p>",
2100+
"NodeConfig$Type": "<p>The instance type of a particular node type in the cluster.</p>",
20742101
"ReservedInstance$InstanceType": "<p>The OpenSearch instance type offered by theReserved Instance offering.</p>",
20752102
"ReservedInstanceOffering$InstanceType": "<p>The OpenSearch instance type offered by the Reserved Instance offering.</p>"
20762103
}

apis/rds/2014-10-31/api-2.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9179,6 +9179,11 @@
91799179
"ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfiguration"},
91809180
"NetworkType":{"shape":"String"},
91819181
"RdsCustomClusterConfiguration":{"shape":"RdsCustomClusterConfiguration"},
9182+
"MonitoringInterval":{"shape":"IntegerOptional"},
9183+
"MonitoringRoleArn":{"shape":"String"},
9184+
"EnablePerformanceInsights":{"shape":"BooleanOptional"},
9185+
"PerformanceInsightsKMSKeyId":{"shape":"String"},
9186+
"PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"},
91829187
"EngineLifecycleSupport":{"shape":"String"}
91839188
}
91849189
},
@@ -9221,6 +9226,11 @@
92219226
"NetworkType":{"shape":"String"},
92229227
"SourceDbClusterResourceId":{"shape":"String"},
92239228
"RdsCustomClusterConfiguration":{"shape":"RdsCustomClusterConfiguration"},
9229+
"MonitoringInterval":{"shape":"IntegerOptional"},
9230+
"MonitoringRoleArn":{"shape":"String"},
9231+
"EnablePerformanceInsights":{"shape":"BooleanOptional"},
9232+
"PerformanceInsightsKMSKeyId":{"shape":"String"},
9233+
"PerformanceInsightsRetentionPeriod":{"shape":"IntegerOptional"},
92249234
"EngineLifecycleSupport":{"shape":"String"}
92259235
}
92269236
},

0 commit comments

Comments
 (0)