Class: Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the secure tag, created with TagManager's TagValue API.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FirewallPolicyRuleSecureTag
constructor
A new instance of FirewallPolicyRuleSecureTag.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FirewallPolicyRuleSecureTag
Returns a new instance of FirewallPolicyRuleSecureTag.
13552 13553 13554 |
# File 'lib/google/apis/compute_v1/classes.rb', line 13552 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the secure tag, created with TagManager's TagValue API.
Corresponds to the JSON property name
13543 13544 13545 |
# File 'lib/google/apis/compute_v1/classes.rb', line 13543 def name @name end |
#state ⇒ String
Output only. [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
13550 13551 13552 |
# File 'lib/google/apis/compute_v1/classes.rb', line 13550 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13557 13558 13559 13560 |
# File 'lib/google/apis/compute_v1/classes.rb', line 13557 def update!(**args) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) end |