Class: Google::Apis::AppengineV1alpha::ListAuthorizedCertificatesResponse

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

Overview

Response message for AuthorizedCertificates.ListAuthorizedCertificates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAuthorizedCertificatesResponse

Returns a new instance of ListAuthorizedCertificatesResponse.



336
337
338
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 336

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

Instance Attribute Details

#certificatesArray<Google::Apis::AppengineV1alpha::AuthorizedCertificate>

The SSL certificates the user is authorized to administer. Corresponds to the JSON property certificates



329
330
331
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 329

def certificates
  @certificates
end

#next_page_tokenString

Continuation token for fetching the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


334
335
336
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 334

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



341
342
343
344
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 341

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