Class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FirewallPolicyRuleSecureTag

Returns a new instance of FirewallPolicyRuleSecureTag.



9304
9305
9306
# File 'lib/google/apis/compute_beta/classes.rb', line 9304

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

Name of the secure tag, created with TagManager's TagValue API. Corresponds to the JSON property name

Returns:

  • (String)


9296
9297
9298
# File 'lib/google/apis/compute_beta/classes.rb', line 9296

def name
  @name
end

#stateString

[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

Returns:

  • (String)


9302
9303
9304
# File 'lib/google/apis/compute_beta/classes.rb', line 9302

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9309
9310
9311
9312
# File 'lib/google/apis/compute_beta/classes.rb', line 9309

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
end