Sha256: 3225980cbaefee6dc019e3feb2d4aa9d264b3a0cee339b8b4e67d20112b37607

Contents?: true

Size: 1.02 KB

Versions: 9

Compression:

Stored size: 1.02 KB

Contents

# TagApi::Tag

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **id** | **String** | The unique id of the tag. |  |
| **name** | **String** | The name of the tag. |  |
| **values** | **Array<String>** | The optional values of the tag. | [optional] |
| **description** | **String** | The description of the tag. | [optional] |
| **is_billing_tag** | **Boolean** | Whether or not to show the tag as part of billing and invoices. |  |
| **resource_assignments** | [**Array<ResourceAssignment>**](ResourceAssignment.md) | The tag's assigned resources. | [optional] |
| **created_by** | **String** | The tag's creator. | [optional][default to 'USER'] |

## Example

```ruby
require 'pnap_tag_api'

instance = TagApi::Tag.new(
  id: 60ffafcdffb8b074c7968dad,
  name: Environment,
  values: [DEV, PROD],
  description: This tag is used for all resources that need to be assigned to an environment.,
  is_billing_tag: true,
  resource_assignments: null,
  created_by: null
)
```

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
pnap_tag_api-2.0.1 docs/Tag.md
pnap_tag_api-2.0.0 docs/Tag.md
pnap_tag_api-1.0.6 docs/Tag.md
pnap_tag_api-1.0.5 docs/Tag.md
pnap_tag_api-1.0.4 docs/Tag.md
pnap_tag_api-1.0.3 docs/Tag.md
pnap_tag_api-1.0.2 docs/Tag.md
pnap_tag_api-1.0.1 docs/Tag.md
pnap_tag_api-1.0.0 docs/Tag.md