class Google::Apis::AppengineV1beta::ListAuthorizedCertificatesResponse

Response message for AuthorizedCertificates.ListAuthorizedCertificates.

Attributes

certificates[RW]

The SSL certificates the user is authorized to administer. Corresponds to the JSON property `certificates` @return [Array<Google::Apis::AppengineV1beta::AuthorizedCertificate>]

next_page_token[RW]

Continuation token for fetching the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1beta/classes.rb, line 1569
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 1574
def update!(**args)
  @certificates = args[:certificates] if args.key?(:certificates)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end