Class: Google::Apis::ComputeV1::InstancesSetSecurityPolicyRequest

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) ⇒ InstancesSetSecurityPolicyRequest

Returns a new instance of InstancesSetSecurityPolicyRequest.



18510
18511
18512
# File 'lib/google/apis/compute_v1/classes.rb', line 18510

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

Instance Attribute Details

#network_interfacesArray<String>

The network interfaces that the security policy will be applied to. Network interfaces use the nicN naming format. You can only set a security policy for network interfaces with an access config. Corresponds to the JSON property networkInterfaces

Returns:

  • (Array<String>)


18502
18503
18504
# File 'lib/google/apis/compute_v1/classes.rb', line 18502

def network_interfaces
  @network_interfaces
end

#security_policyString

A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy. Corresponds to the JSON property securityPolicy

Returns:

  • (String)


18508
18509
18510
# File 'lib/google/apis/compute_v1/classes.rb', line 18508

def security_policy
  @security_policy
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18515
18516
18517
18518
# File 'lib/google/apis/compute_v1/classes.rb', line 18515

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