Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C2DEVEL-13979: Add RenameKeyPair request #112

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions botocore/data/ec2/2016-11-15/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4099,6 +4099,16 @@
"output":{"shape":"ReleaseHostsResult"},
"documentation":"<p>When you no longer want to use an On-Demand Dedicated Host it can be released. On-Demand billing is stopped and the host goes into <code>released</code> state. The host ID of Dedicated Hosts that have been released can no longer be specified in another request, for example, to modify the host. You must stop or terminate all instances on a host before it can be released.</p> <p>When Dedicated Hosts are released, it may take some time for them to stop counting toward your limit and you may receive capacity errors when trying to allocate new Dedicated Hosts. Wait a few minutes and then try again.</p> <p>Released hosts still appear in a <a>DescribeHosts</a> response.</p>"
},
"RenameKeyPair":{
"name":"RenameKeyPair",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"RenameKeyPairRequest"},
"output":{"shape":"KeyPair"},
"documentation":"<p>Update name of key pair.</p>"
},
"ReplaceIamInstanceProfileAssociation":{
"name":"ReplaceIamInstanceProfileAssociation",
"http":{
Expand Down Expand Up @@ -34031,6 +34041,19 @@
}
}
},
"RenameKeyPairRequest":{
"type":"structure",
"members":{
"KeyName":{
"shape":"String",
"documentation":"<p>The name of the key pair.</p>"
},
"NewName":{
"shape":"String",
"documentation":"<p>A unique name for the key pair.</p> <p>Constraints: Up to 255 ASCII characters</p>"
}
}
},
"RemovePrefixListEntries":{
"type":"list",
"member":{"shape":"RemovePrefixListEntry"},
Expand Down