Method: Fog::Compute::AWS::Real#describe_tags
- Defined in:
- lib/fog/compute/requests/aws/describe_tags.rb
#describe_tags(filters = {}) ⇒ Object
Describe all or specified tags
Parameters
-
filters<~Hash> - List of filters to limit results with
Returns
-
response<~Excon::Response>:
-
body<~Hash>:
-
‘requestId’<~String> - Id of request
-
‘tagSet’<~Array>:
-
‘resourceId’<~String> - id of resource tag belongs to
-
‘resourceType’<~String> - type of resource tag belongs to
-
‘key’<~String> - Tag’s key
-
‘value’<~String> - Tag’s value
-
-
-
24 25 26 27 28 29 30 31 |
# File 'lib/fog/compute/requests/aws/describe_tags.rb', line 24 def (filters = {}) params = Fog::AWS.indexed_filters(filters) request({ 'Action' => 'DescribeTags', :idempotent => true, :parser => Fog::Parsers::Compute::AWS::DescribeTags.new }.merge!(params)) end |