class Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag

Attributes

name[RW]

Name of the secure tag, created with TagManager's TagValue API. Corresponds to the JSON property `name` @return [String]

state[RW]
Output Only

State of the secure tag, either `EFFECTIVE` or `INEFFECTIVE`. A

secure tag is `INEFFECTIVE` when it is deleted or its network is deleted. Corresponds to the JSON property `state` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 8469
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 8474
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
end