Class: Google::Apis::SqladminV1::SslCert

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

Overview

SslCerts Resource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SslCert

Returns a new instance of SslCert.



1491
1492
1493
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1491

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

Instance Attribute Details

#certString

PEM representation. Corresponds to the JSON property cert

Returns:

  • (String)


1452
1453
1454
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1452

def cert
  @cert
end

#cert_serial_numberString

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

Returns:

  • (String)


1457
1458
1459
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1457

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)


1462
1463
1464
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1462

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)


1468
1469
1470
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1468

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)


1474
1475
1476
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1474

def expiration_time
  @expiration_time
end

#instanceString

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

Returns:

  • (String)


1479
1480
1481
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1479

def instance
  @instance
end

#kindString

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

Returns:

  • (String)


1484
1485
1486
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1484

def kind
  @kind
end

#sha1_fingerprintString

Sha1 Fingerprint. Corresponds to the JSON property sha1Fingerprint

Returns:

  • (String)


1489
1490
1491
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1489

def sha1_fingerprint
  @sha1_fingerprint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1496

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)
  @sha1_fingerprint = args[:sha1_fingerprint] if args.key?(:sha1_fingerprint)
end