Class: Google::Apis::ComputeV1::InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy

Returns a new instance of InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.



18253
18254
18255
# File 'lib/google/apis/compute_v1/classes.rb', line 18253

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

Instance Attribute Details

#display_nameString

[Output Only] Deprecated, please use short name instead. The display name of the firewall policy. Corresponds to the JSON property displayName

Returns:

  • (String)


18222
18223
18224
# File 'lib/google/apis/compute_v1/classes.rb', line 18222

def display_name
  @display_name
end

#nameString

[Output Only] The name of the firewall policy. Corresponds to the JSON property name

Returns:

  • (String)


18227
18228
18229
# File 'lib/google/apis/compute_v1/classes.rb', line 18227

def name
  @name
end

#priorityFixnum

[Output only] Priority of firewall policy association. Not applicable for type= HIERARCHY. Corresponds to the JSON property priority

Returns:

  • (Fixnum)


18233
18234
18235
# File 'lib/google/apis/compute_v1/classes.rb', line 18233

def priority
  @priority
end

#rulesArray<Google::Apis::ComputeV1::FirewallPolicyRule>

[Output Only] The rules that apply to the instance. Only rules that target the specific VM instance are returned if target service accounts or target secure tags are specified in the rules. Corresponds to the JSON property rules



18240
18241
18242
# File 'lib/google/apis/compute_v1/classes.rb', line 18240

def rules
  @rules
end

#short_nameString

[Output Only] The short name of the firewall policy. Corresponds to the JSON property shortName

Returns:

  • (String)


18245
18246
18247
# File 'lib/google/apis/compute_v1/classes.rb', line 18245

def short_name
  @short_name
end

#typeString

[Output Only] The type of the firewall policy. Can be one of HIERARCHY, NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL. Corresponds to the JSON property type

Returns:

  • (String)


18251
18252
18253
# File 'lib/google/apis/compute_v1/classes.rb', line 18251

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18258
18259
18260
18261
18262
18263
18264
18265
# File 'lib/google/apis/compute_v1/classes.rb', line 18258

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @priority = args[:priority] if args.key?(:priority)
  @rules = args[:rules] if args.key?(:rules)
  @short_name = args[:short_name] if args.key?(:short_name)
  @type = args[:type] if args.key?(:type)
end