class Google::Apis::ComputeBeta::SslCertificate

Represents an SSL Certificate resource. Google Compute Engine has two SSL Certificate resources: * [Global](/compute/docs/reference/rest/beta/ sslCertificates) * [Regional](/compute/docs/reference/rest/beta/ regionSslCertificates) The sslCertificates are used by: - external HTTPS load balancers - SSL proxy load balancers The regionSslCertificates are used by internal HTTPS load balancers. Optionally, certificate file contents that you upload can contain a set of up to five PEM-encoded certificates. The API call creates an object (sslCertificate) that holds this data. You can use SSL keys and certificates to secure connections to a load balancer. For more information, read Creating and using SSL certificates, SSL certificates quotas and limits, and Troubleshooting SSL certificates.

Attributes

certificate[RW]

A value read into memory from a certificate file. The certificate file must be in PEM format. The certificate chain must be no greater than 5 certs long. The chain must include at least one intermediate cert. Corresponds to the JSON property `certificate` @return [String]

creation_timestamp[RW]
Output Only

Creation timestamp in RFC3339 text format.

Corresponds to the JSON property `creationTimestamp` @return [String]

description[RW]

An optional description of this resource. Provide this property when you create the resource. Corresponds to the JSON property `description` @return [String]

expire_time[RW]
Output Only

Expire time of the certificate. RFC3339

Corresponds to the JSON property `expireTime` @return [String]

id[RW]
Output Only

The unique identifier for the resource. This identifier is

defined by the server. Corresponds to the JSON property `id` @return [Fixnum]

kind[RW]
Output Only

Type of the resource. Always compute#sslCertificate for SSL

certificates. Corresponds to the JSON property `kind` @return [String]

managed[RW]

Configuration and status of a managed SSL certificate. Corresponds to the JSON property `managed` @return [Google::Apis::ComputeBeta::SslCertificateManagedSslCertificate]

name[RW]

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a- z0-9]*)?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. Corresponds to the JSON property `name` @return [String]

private_key[RW]

A value read into memory from a write-only private key file. The private key file must be in PEM format. For security, only insert requests include this field. Corresponds to the JSON property `privateKey` @return [String]

region[RW]
Output Only

URL of the region where the regional SSL Certificate resides.

This field is not applicable to global SSL Certificate. Corresponds to the JSON property `region` @return [String]

self_managed[RW]

Configuration and status of a self-managed SSL certificate. Corresponds to the JSON property `selfManaged` @return [Google::Apis::ComputeBeta::SslCertificateSelfManagedSslCertificate]

subject_alternative_names[RW]
Output Only

Domains associated with the certificate via Subject Alternative

Name. Corresponds to the JSON property `subjectAlternativeNames` @return [Array<String>]

type[RW]

(Optional) Specifies the type of SSL certificate, either “SELF_MANAGED” or “ MANAGED”. If not specified, the certificate is self-managed and the fields certificate and private_key are used. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_beta/classes.rb, line 33220
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_beta/classes.rb, line 33225
def update!(**args)
  @certificate = args[:certificate] if args.key?(:certificate)
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
  @description = args[:description] if args.key?(:description)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @managed = args[:managed] if args.key?(:managed)
  @name = args[:name] if args.key?(:name)
  @private_key = args[:private_key] if args.key?(:private_key)
  @region = args[:region] if args.key?(:region)
  @self_link = args[:self_link] if args.key?(:self_link)
  @self_managed = args[:self_managed] if args.key?(:self_managed)
  @subject_alternative_names = args[:subject_alternative_names] if args.key?(:subject_alternative_names)
  @type = args[:type] if args.key?(:type)
end