Class: Google::Apis::AppengineV1::SslSettings

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

Overview

SSL configuration for a DomainMapping resource.

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) ⇒ SslSettings

Returns a new instance of SslSettings



2311
2312
2313
# File 'generated/google/apis/appengine_v1/classes.rb', line 2311

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

Instance Attribute Details

#certificate_idString

ID of the AuthorizedCertificate resource configuring SSL for the application. Clearing this field will remove SSL support. Example: 12345. Corresponds to the JSON property certificateId

Returns:

  • (String)


2309
2310
2311
# File 'generated/google/apis/appengine_v1/classes.rb', line 2309

def certificate_id
  @certificate_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2316
2317
2318
# File 'generated/google/apis/appengine_v1/classes.rb', line 2316

def update!(**args)
  @certificate_id = args[:certificate_id] if args.key?(:certificate_id)
end