In AWS , How can I attached volumes list for particular VM using REST APIsHow can I get the size of an Amazon S3 bucket?What is causing Access Denied when using the aws cli to download from Amazon S3?How can I be certain EBS volume is mounted at a particular point?Is there a command to list AWS instances that results in short output?How to list ec2 instance using aws cliHow to automatically update EC2 Linux instances without downtime by switching between two instances?List all volumes attached to list of instances using aws cliExport all AWS VPC data to a file?AWS: How do I find the list of instances associated with a particular subnet?Aws cli: The filter condition returns all the running instance instead of those with a particular tag
Why there is a red color in right side?
Do details of my undergraduate title matter?
Why one uses 了 and the other one doesn’t?
What is the highest power supply a Raspberry pi 3 B can handle without getting damaged?
What mathematical theory is required for high frequency trading?
In Street Fighter, what does the M stand for in M Bison?
Are there examples of rowers who also fought?
If the mass of the Earth is decreasing by sending debris in space, does its angular momentum also decrease?
Counterfeit checks were created for my account. How does this type of fraud work?
Can a character learn spells from someone else's spellbook and then sell it?
How can I improve my violin intonation for enharmonic notes?
Kelvin type connection
Is Newton's third law really correct?
I just entered the USA without passport control at Atlanta airport
What kind of chart is this?
Boundaries and Buddhism
Why does a Force divides equally on a Multiple Support/Legs?
The Amazing Sliding Crossword
How to make all magic-casting innate, but still rare?
How to modify a string without altering its text properties
How are で and いう being used in this context?
How to ask if I can mow my neighbor's lawn
Does there exist a non-trivial group that is both perfect and complete?
What does this Swiss black on yellow rectangular traffic sign with a symbol looking like a dart mean?
In AWS , How can I attached volumes list for particular VM using REST APIs
How can I get the size of an Amazon S3 bucket?What is causing Access Denied when using the aws cli to download from Amazon S3?How can I be certain EBS volume is mounted at a particular point?Is there a command to list AWS instances that results in short output?How to list ec2 instance using aws cliHow to automatically update EC2 Linux instances without downtime by switching between two instances?List all volumes attached to list of instances using aws cliExport all AWS VPC data to a file?AWS: How do I find the list of instances associated with a particular subnet?Aws cli: The filter condition returns all the running instance instead of those with a particular tag
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
How can I get the attached Volumes list for a particular instanceVM using the REST API?
IE: What is the REST API equivalent for this AWS CLI command:
aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3
amazon-web-services amazon-ec2 aws-cli
add a comment |
How can I get the attached Volumes list for a particular instanceVM using the REST API?
IE: What is the REST API equivalent for this AWS CLI command:
aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3
amazon-web-services amazon-ec2 aws-cli
add a comment |
How can I get the attached Volumes list for a particular instanceVM using the REST API?
IE: What is the REST API equivalent for this AWS CLI command:
aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3
amazon-web-services amazon-ec2 aws-cli
How can I get the attached Volumes list for a particular instanceVM using the REST API?
IE: What is the REST API equivalent for this AWS CLI command:
aws ec2 describe-volumes --region us-west --filters Name=attachment.instance-id,values=i-eeh33heue3
amazon-web-services amazon-ec2 aws-cli
amazon-web-services amazon-ec2 aws-cli
edited Jun 2 at 11:43
asktyagi
521110
521110
asked Jun 2 at 3:16
alok tannaalok tanna
162
162
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The API command is typically the CLI command without punctuation. It's documented here.
Sample request (you can add parameters for instance ID)
https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS
Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'
– alok tanna
Jun 4 at 17:47
I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.
– Tim
Jun 4 at 18:44
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f969815%2fin-aws-how-can-i-attached-volumes-list-for-particular-vm-using-rest-apis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The API command is typically the CLI command without punctuation. It's documented here.
Sample request (you can add parameters for instance ID)
https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS
Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'
– alok tanna
Jun 4 at 17:47
I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.
– Tim
Jun 4 at 18:44
add a comment |
The API command is typically the CLI command without punctuation. It's documented here.
Sample request (you can add parameters for instance ID)
https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS
Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'
– alok tanna
Jun 4 at 17:47
I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.
– Tim
Jun 4 at 18:44
add a comment |
The API command is typically the CLI command without punctuation. It's documented here.
Sample request (you can add parameters for instance ID)
https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS
The API command is typically the CLI command without punctuation. It's documented here.
Sample request (you can add parameters for instance ID)
https://ec2.amazonaws.com/?Action=DescribeVolumes&AUTHPARAMS
edited Jun 2 at 7:55
answered Jun 2 at 4:42
TimTim
18.8k41951
18.8k41951
Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'
– alok tanna
Jun 4 at 17:47
I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.
– Tim
Jun 4 at 18:44
add a comment |
Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'
– alok tanna
Jun 4 at 17:47
I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.
– Tim
Jun 4 at 18:44
Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'
– alok tanna
Jun 4 at 17:47
Thank you. so below request is working request_parameters = 'Action=DescribeVolumes&Version=2013-10-15' but when I try this with filter it is not working . request_parameters = 'Action=DescribeVolumes&Version=2013-10-15&Filter.1.Name=attachment.instance-id&Filter.1.value=i-019c4383c4e0d670e'
– alok tanna
Jun 4 at 17:47
I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.
– Tim
Jun 4 at 18:44
I don't know the answer to that sorry. Your question has been answered, if you have another question around filtering please ask a new question, someone else will be able to help.
– Tim
Jun 4 at 18:44
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f969815%2fin-aws-how-can-i-attached-volumes-list-for-particular-vm-using-rest-apis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown