Class: Google::Apis::SqladminV1beta4::DatabaseInstance

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

Overview

A Cloud SQL instance resource.

Defined Under Namespace

Classes: FailoverReplica

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DatabaseInstance

Returns a new instance of DatabaseInstance



552
553
554
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 552

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

Instance Attribute Details

#backend_typeString

FIRST_GEN: Basic Cloud SQL instance that runs in a Google-managed container. SECOND_GEN: A newer Cloud SQL backend that runs in a Compute Engine VM. EXTERNAL: A MySQL server that is not managed by Google. Corresponds to the JSON property backendType

Returns:

  • (String)


403
404
405
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 403

def backend_type
  @backend_type
end

#connection_nameString

Connection name of the Cloud SQL instance used in connection strings. Corresponds to the JSON property connectionName

Returns:

  • (String)


408
409
410
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 408

def connection_name
  @connection_name
end

#current_disk_sizeFixnum

The current disk usage of the instance in bytes. This property has been deprecated. Users should use the "cloudsql.googleapis.com/database/disk/ bytes_used" metric in Cloud Monitoring API instead. Please see https://groups. google.com/d/msg/google-cloud-sql-announce/I_7-F9EBhT0/BtvFtdFeAgAJ for details. Corresponds to the JSON property currentDiskSize

Returns:

  • (Fixnum)


417
418
419
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 417

def current_disk_size
  @current_disk_size
end

#database_versionString

The database engine type and version. The databaseVersion field can not be changed after instance creation. MySQL Second Generation instances: MYSQL_5_7 ( default) or MYSQL_5_6. PostgreSQL instances: POSTGRES_9_6 MySQL First Generation instances: MYSQL_5_6 (default) or MYSQL_5_5 Corresponds to the JSON property databaseVersion

Returns:

  • (String)


425
426
427
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 425

def database_version
  @database_version
end

#etagString

HTTP 1.1 Entity tag for the resource. Corresponds to the JSON property etag

Returns:

  • (String)


430
431
432
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 430

def etag
  @etag
end

#failover_replicaGoogle::Apis::SqladminV1beta4::DatabaseInstance::FailoverReplica

The name and status of the failover replica. This property is applicable only to Second Generation instances. Corresponds to the JSON property failoverReplica



436
437
438
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 436

def failover_replica
  @failover_replica
end

#gce_zoneString

The Compute Engine zone that the instance is currently serving from. This value could be different from the zone that was specified when the instance was created if the instance has failed over to its secondary zone. Corresponds to the JSON property gceZone

Returns:

  • (String)


443
444
445
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 443

def gce_zone
  @gce_zone
end

#instance_typeString

The instance type. This can be one of the following. CLOUD_SQL_INSTANCE: A Cloud SQL instance that is not replicating from a master. ON_PREMISES_INSTANCE: An instance running on the customer's premises. READ_REPLICA_INSTANCE: A Cloud SQL instance configured as a read-replica. Corresponds to the JSON property instanceType

Returns:

  • (String)


451
452
453
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 451

def instance_type
  @instance_type
end

#ip_addressesArray<Google::Apis::SqladminV1beta4::IpMapping>

The assigned IP addresses for the instance. Corresponds to the JSON property ipAddresses



456
457
458
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 456

def ip_addresses
  @ip_addresses
end

#ipv6_addressString

The IPv6 address assigned to the instance. This property is applicable only to First Generation instances. Corresponds to the JSON property ipv6Address

Returns:

  • (String)


462
463
464
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 462

def ipv6_address
  @ipv6_address
end

#kindString

This is always sql#instance. Corresponds to the JSON property kind

Returns:

  • (String)


467
468
469
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 467

def kind
  @kind
end

#master_instance_nameString

The name of the instance which will act as master in the replication setup. Corresponds to the JSON property masterInstanceName

Returns:

  • (String)


472
473
474
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 472

def master_instance_name
  @master_instance_name
end

#max_disk_sizeFixnum

The maximum disk size of the instance in bytes. Corresponds to the JSON property maxDiskSize

Returns:

  • (Fixnum)


477
478
479
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 477

def max_disk_size
  @max_disk_size
end

#nameString

Name of the Cloud SQL instance. This does not include the project ID. Corresponds to the JSON property name

Returns:

  • (String)


482
483
484
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 482

def name
  @name
end

#on_premises_configurationGoogle::Apis::SqladminV1beta4::OnPremisesConfiguration

On-premises instance configuration. Corresponds to the JSON property onPremisesConfiguration



487
488
489
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 487

def on_premises_configuration
  @on_premises_configuration
end

#projectString

The project ID of the project containing the Cloud SQL instance. The Google apps domain is prefixed if applicable. Corresponds to the JSON property project

Returns:

  • (String)


493
494
495
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 493

def project
  @project
end

#regionString

The geographical region. Can be us-central (FIRST_GEN instances only), us- central1 (SECOND_GEN instances only), asia-east1 or europe-west1. Defaults to us-central or us-central1 depending on the instance type (First Generation or Second Generation). The region can not be changed after instance creation. Corresponds to the JSON property region

Returns:

  • (String)


501
502
503
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 501

def region
  @region
end

#replica_configurationGoogle::Apis::SqladminV1beta4::ReplicaConfiguration

Read-replica configuration for connecting to the master. Corresponds to the JSON property replicaConfiguration



506
507
508
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 506

def replica_configuration
  @replica_configuration
end

#replica_namesArray<String>

The replicas of the instance. Corresponds to the JSON property replicaNames

Returns:

  • (Array<String>)


511
512
513
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 511

def replica_names
  @replica_names
end

The URI of this resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


516
517
518
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 516

def self_link
  @self_link
end

#server_ca_certGoogle::Apis::SqladminV1beta4::SslCert

SslCerts Resource Corresponds to the JSON property serverCaCert



521
522
523
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 521

def server_ca_cert
  @server_ca_cert
end

#service_account_email_addressString

The service account email address assigned to the instance. This property is applicable only to Second Generation instances. Corresponds to the JSON property serviceAccountEmailAddress

Returns:

  • (String)


527
528
529
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 527

def 
  @service_account_email_address
end

#settingsGoogle::Apis::SqladminV1beta4::Settings

Database instance settings. Corresponds to the JSON property settings



532
533
534
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 532

def settings
  @settings
end

#stateString

The current serving state of the Cloud SQL instance. This can be one of the following. RUNNABLE: The instance is running, or is ready to run when accessed. SUSPENDED: The instance is not available, for example due to problems with billing. PENDING_CREATE: The instance is being created. MAINTENANCE: The instance is down for maintenance. FAILED: The instance creation failed. UNKNOWN_STATE: The state of the instance is unknown. Corresponds to the JSON property state

Returns:

  • (String)


545
546
547
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 545

def state
  @state
end

#suspension_reasonArray<String>

If the instance state is SUSPENDED, the reason for the suspension. Corresponds to the JSON property suspensionReason

Returns:

  • (Array<String>)


550
551
552
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 550

def suspension_reason
  @suspension_reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 557

def update!(**args)
  @backend_type = args[:backend_type] if args.key?(:backend_type)
  @connection_name = args[:connection_name] if args.key?(:connection_name)
  @current_disk_size = args[:current_disk_size] if args.key?(:current_disk_size)
  @database_version = args[:database_version] if args.key?(:database_version)
  @etag = args[:etag] if args.key?(:etag)
  @failover_replica = args[:failover_replica] if args.key?(:failover_replica)
  @gce_zone = args[:gce_zone] if args.key?(:gce_zone)
  @instance_type = args[:instance_type] if args.key?(:instance_type)
  @ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
  @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
  @kind = args[:kind] if args.key?(:kind)
  @master_instance_name = args[:master_instance_name] if args.key?(:master_instance_name)
  @max_disk_size = args[:max_disk_size] if args.key?(:max_disk_size)
  @name = args[:name] if args.key?(:name)
  @on_premises_configuration = args[:on_premises_configuration] if args.key?(:on_premises_configuration)
  @project = args[:project] if args.key?(:project)
  @region = args[:region] if args.key?(:region)
  @replica_configuration = args[:replica_configuration] if args.key?(:replica_configuration)
  @replica_names = args[:replica_names] if args.key?(:replica_names)
  @self_link = args[:self_link] if args.key?(:self_link)
  @server_ca_cert = args[:server_ca_cert] if args.key?(:server_ca_cert)
  @service_account_email_address = args[:service_account_email_address] if args.key?(:service_account_email_address)
  @settings = args[:settings] if args.key?(:settings)
  @state = args[:state] if args.key?(:state)
  @suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
end