Skip to content

Commit

Permalink
Update to latest models
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-python-automation committed Mar 19, 2024
1 parent 0d6ed4a commit be2ffaa
Show file tree
Hide file tree
Showing 12 changed files with 424 additions and 105 deletions.
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-cloudformation-92421.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``cloudformation``",
"description": "Documentation update, March 2024. Corrects some formatting."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-ec2-76583.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``ec2``",
"description": "This release adds the new DescribeMacHosts API operation for getting information about EC2 Mac Dedicated Hosts. Users can now see the latest macOS versions that their underlying Apple Mac can support without needing to be updated."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-finspace-82423.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``finspace``",
"description": "Adding new attributes readWrite and onDemand to dataview models for Database Maintenance operations."
}
5 changes: 5 additions & 0 deletions .changes/next-release/api-change-logs-50818.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``logs``",
"description": "Update LogSamples field in Anomaly model to be a list of LogEvent"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"type": "api-change",
"category": "``managedblockchain-query``",
"description": "Introduces a new API for Amazon Managed Blockchain Query: ListFilteredTransactionEvents."
}
88 changes: 44 additions & 44 deletions botocore/data/cloudformation/2010-05-15/service-2.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions botocore/data/ec2/2016-11-15/paginators-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,12 @@
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "Instances"
},
"DescribeMacHosts": {
"input_token": "NextToken",
"limit_key": "MaxResults",
"output_token": "NextToken",
"result_key": "MacHosts"
}
}
}
83 changes: 83 additions & 0 deletions botocore/data/ec2/2016-11-15/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2905,6 +2905,16 @@
"output":{"shape":"DescribeLockedSnapshotsResult"},
"documentation":"<p>Describes the lock status for a snapshot.</p>"
},
"DescribeMacHosts":{
"name":"DescribeMacHosts",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeMacHostsRequest"},
"output":{"shape":"DescribeMacHostsResult"},
"documentation":"<p>Describes the specified EC2 Mac Dedicated Host or all of your EC2 Mac Dedicated Hosts.</p>"
},
"DescribeManagedPrefixLists":{
"name":"DescribeManagedPrefixLists",
"http":{
Expand Down Expand Up @@ -21974,6 +21984,49 @@
}
}
},
"DescribeMacHostsRequest":{
"type":"structure",
"members":{
"Filters":{
"shape":"FilterList",
"documentation":"<p>The filters.</p> <ul> <li> <p> <code>availability-zone</code> - The Availability Zone of the EC2 Mac Dedicated Host.</p> </li> <li> <p> <code>instance-type</code> - The instance type size that the EC2 Mac Dedicated Host is configured to support.</p> </li> </ul>",
"locationName":"Filter"
},
"HostIds":{
"shape":"RequestHostIdList",
"documentation":"<p> The IDs of the EC2 Mac Dedicated Hosts. </p>",
"locationName":"HostId"
},
"MaxResults":{
"shape":"DescribeMacHostsRequestMaxResults",
"documentation":"<p>The maximum number of results to return for the request in a single page. The remaining results can be seen by sending another request with the returned <code>nextToken</code> value. This value can be between 5 and 500. If <code>maxResults</code> is given a larger value than 500, you receive an error.</p>"
},
"NextToken":{
"shape":"String",
"documentation":"<p>The token to use to retrieve the next page of results.</p>"
}
}
},
"DescribeMacHostsRequestMaxResults":{
"type":"integer",
"max":500,
"min":5
},
"DescribeMacHostsResult":{
"type":"structure",
"members":{
"MacHosts":{
"shape":"MacHostList",
"documentation":"<p> Information about the EC2 Mac Dedicated Hosts. </p>",
"locationName":"macHostSet"
},
"NextToken":{
"shape":"String",
"documentation":"<p>The token to use to retrieve the next page of results.</p>",
"locationName":"nextToken"
}
}
},
"DescribeManagedPrefixListsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -41210,6 +41263,36 @@
]
},
"Long":{"type":"long"},
"MacHost":{
"type":"structure",
"members":{
"HostId":{
"shape":"DedicatedHostId",
"documentation":"<p> The EC2 Mac Dedicated Host ID. </p>",
"locationName":"hostId"
},
"MacOSLatestSupportedVersions":{
"shape":"MacOSVersionStringList",
"documentation":"<p> The latest macOS versions that the EC2 Mac Dedicated Host can launch without being upgraded. </p>",
"locationName":"macOSLatestSupportedVersionSet"
}
},
"documentation":"<p> Information about the EC2 Mac Dedicated Host. </p>"
},
"MacHostList":{
"type":"list",
"member":{
"shape":"MacHost",
"locationName":"item"
}
},
"MacOSVersionStringList":{
"type":"list",
"member":{
"shape":"String",
"locationName":"item"
}
},
"MaintenanceDetails":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit be2ffaa

Please sign in to comment.