Class: Google::Apis::AlloydbV1alpha::InstanceNetworkConfig

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

Overview

Metadata related to instance level network configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceNetworkConfig

Returns a new instance of InstanceNetworkConfig.



1348
1349
1350
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 1348

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

Instance Attribute Details

#authorized_external_networksArray<Google::Apis::AlloydbV1alpha::AuthorizedNetwork>

Optional. A list of external network authorized to access this instance. Corresponds to the JSON property authorizedExternalNetworks



1340
1341
1342
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 1340

def authorized_external_networks
  @authorized_external_networks
end

#enable_public_ipBoolean Also known as: enable_public_ip?

Optional. Enabling public ip for the instance. Corresponds to the JSON property enablePublicIp

Returns:

  • (Boolean)


1345
1346
1347
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 1345

def enable_public_ip
  @enable_public_ip
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1353
1354
1355
1356
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 1353

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