class Google::Apis::AppengineV1beta::AuthorizedCertificate

An SSL certificate that a user has been authorized to administer. A user is authorized to administer any certificate that applies to one of their authorized domains.

Attributes

certificate_raw_data[RW]

An SSL certificate obtained from a certificate authority. Corresponds to the JSON property `certificateRawData` @return [Google::Apis::AppengineV1beta::CertificateRawData]

display_name[RW]

The user-specified display name of the certificate. This is not guaranteed to be unique. Example: My Certificate. Corresponds to the JSON property `displayName` @return [String]

domain_mappings_count[RW]

Aggregate count of the domain mappings with this certificate mapped. This count includes domain mappings on applications for which the user does not have VIEWER permissions.Only returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@OutputOnly Corresponds to the JSON property `domainMappingsCount` @return [Fixnum]

domain_names[RW]

Topmost applicable domains of this certificate. This certificate applies to these domains and their subdomains. Example: OutputOnly at example.com. Corresponds to the JSON property `domainNames` @return [Array<String>]

expire_time[RW]

The time when this certificate expires. To update the renewal time on this certificate, upload an SSL certificate with a different expiration time using AuthorizedCertificates.UpdateAuthorizedCertificate.@OutputOnly Corresponds to the JSON property `expireTime` @return [String]

id[RW]

Relative name of the certificate. This is a unique value autogenerated on AuthorizedCertificate resource creation. Example: 12345.@OutputOnly Corresponds to the JSON property `id` @return [String]

managed_certificate[RW]

A certificate managed by App Engine. Corresponds to the JSON property `managedCertificate` @return [Google::Apis::AppengineV1beta::ManagedCertificate]

name[RW]

Full path to the AuthorizedCertificate resource in the API. Example: apps/ OutputOnly at myapp/authorizedCertificates/12345. Corresponds to the JSON property `name` @return [String]

visible_domain_mappings[RW]

The full paths to user visible Domain Mapping resources that have this certificate mapped. Example: apps/myapp/domainMappings/example.com.This may not represent the full list of mapped domain mappings if the user does not have VIEWER permissions on all of the applications that have this certificate mapped. See domain_mappings_count for a complete count.Only returned by GET or LIST requests when specifically requested by the view=FULL_CERTIFICATE option.@ OutputOnly Corresponds to the JSON property `visibleDomainMappings` @return [Array<String>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/appengine_v1beta/classes.rb, line 281
def update!(**args)
  @certificate_raw_data = args[:certificate_raw_data] if args.key?(:certificate_raw_data)
  @display_name = args[:display_name] if args.key?(:display_name)
  @domain_mappings_count = args[:domain_mappings_count] if args.key?(:domain_mappings_count)
  @domain_names = args[:domain_names] if args.key?(:domain_names)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
  @id = args[:id] if args.key?(:id)
  @managed_certificate = args[:managed_certificate] if args.key?(:managed_certificate)
  @name = args[:name] if args.key?(:name)
  @visible_domain_mappings = args[:visible_domain_mappings] if args.key?(:visible_domain_mappings)
end