Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 690 Bytes

TagAssignment.md

File metadata and controls

26 lines (20 loc) · 690 Bytes

IpApi::TagAssignment

Properties

Name Type Description Notes
id String The unique id of the tag.
name String The name of the tag.
value String The value of the tag assigned to the resource. [optional]
is_billing_tag Boolean Whether or not to show the tag as part of billing and invoices
created_by String Who the tag was created by. [optional]

Example

require 'pnap_ip_api'

instance = IpApi::TagAssignment.new(
  id: 60ffafcdffb8b074c7968dad,
  name: Environment,
  value: PROD,
  is_billing_tag: true,
  created_by: null
)