Class: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo

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

Overview

For display only. Metadata associated with a Cloud SQL instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudSqlInstanceInfo

Returns a new instance of CloudSqlInstanceInfo.



462
463
464
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 462

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

Instance Attribute Details

#display_nameString

Name of a Cloud SQL instance. Corresponds to the JSON property displayName

Returns:

  • (String)


434
435
436
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 434

def display_name
  @display_name
end

#external_ipString

External IP address of a Cloud SQL instance. Corresponds to the JSON property externalIp

Returns:

  • (String)


439
440
441
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 439

def external_ip
  @external_ip
end

#internal_ipString

Internal IP address of a Cloud SQL instance. Corresponds to the JSON property internalIp

Returns:

  • (String)


444
445
446
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 444

def internal_ip
  @internal_ip
end

#network_uriString

URI of a Cloud SQL instance network or empty string if the instance does not have one. Corresponds to the JSON property networkUri

Returns:

  • (String)


450
451
452
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 450

def network_uri
  @network_uri
end

#regionString

Region in which the Cloud SQL instance is running. Corresponds to the JSON property region

Returns:

  • (String)


455
456
457
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 455

def region
  @region
end

#uriString

URI of a Cloud SQL instance. Corresponds to the JSON property uri

Returns:

  • (String)


460
461
462
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 460

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



467
468
469
470
471
472
473
474
# File 'lib/google/apis/networkmanagement_v1beta1/classes.rb', line 467

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @external_ip = args[:external_ip] if args.key?(:external_ip)
  @internal_ip = args[:internal_ip] if args.key?(:internal_ip)
  @network_uri = args[:network_uri] if args.key?(:network_uri)
  @region = args[:region] if args.key?(:region)
  @uri = args[:uri] if args.key?(:uri)
end