Class: Google::Apis::SqladminV1beta4::SslCert

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

Overview

SslCerts Resource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SslCert

Returns a new instance of SslCert.



4361
4362
4363
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4361

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

Instance Attribute Details

#certString

PEM representation. Corresponds to the JSON property cert

Returns:

  • (String)


4317
4318
4319
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4317

def cert
  @cert
end

#cert_serial_numberString

Serial number, as extracted from the certificate. Corresponds to the JSON property certSerialNumber

Returns:

  • (String)


4322
4323
4324
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4322

def cert_serial_number
  @cert_serial_number
end

#common_nameString

User supplied name. Constrained to [a-zA-Z.-_ ]+. Corresponds to the JSON property commonName

Returns:

  • (String)


4327
4328
4329
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4327

def common_name
  @common_name
end

#create_timeString

The time when the certificate was created in RFC 3339 format, for example 2012-11-15T16:19:00.094Z. Corresponds to the JSON property createTime

Returns:

  • (String)


4333
4334
4335
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4333

def create_time
  @create_time
end

#expiration_timeString

The time when the certificate expires in RFC 3339 format, for example 2012-11-15T16:19:00.094Z. Corresponds to the JSON property expirationTime

Returns:

  • (String)


4339
4340
4341
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4339

def expiration_time
  @expiration_time
end

#instanceString

Name of the database instance. Corresponds to the JSON property instance

Returns:

  • (String)


4344
4345
4346
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4344

def instance
  @instance
end

#kindString

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

Returns:

  • (String)


4349
4350
4351
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4349

def kind
  @kind
end

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

Returns:

  • (String)


4354
4355
4356
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4354

def self_link
  @self_link
end

#sha1_fingerprintString

Sha1 Fingerprint. Corresponds to the JSON property sha1Fingerprint

Returns:

  • (String)


4359
4360
4361
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4359

def sha1_fingerprint
  @sha1_fingerprint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4366

def update!(**args)
  @cert = args[:cert] if args.key?(:cert)
  @cert_serial_number = args[:cert_serial_number] if args.key?(:cert_serial_number)
  @common_name = args[:common_name] if args.key?(:common_name)
  @create_time = args[:create_time] if args.key?(:create_time)
  @expiration_time = args[:expiration_time] if args.key?(:expiration_time)
  @instance = args[:instance] if args.key?(:instance)
  @kind = args[:kind] if args.key?(:kind)
  @self_link = args[:self_link] if args.key?(:self_link)
  @sha1_fingerprint = args[:sha1_fingerprint] if args.key?(:sha1_fingerprint)
end