Class: Google::Apis::AppengineV1::ListAuthorizedCertificatesResponse

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

Response message for AuthorizedCertificates.ListAuthorizedCertificates.

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

Returns a new instance of ListAuthorizedCertificatesResponse



1122
1123
1124
# File 'generated/google/apis/appengine_v1/classes.rb', line 1122

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

Instance Attribute Details

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

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



1115
1116
1117
# File 'generated/google/apis/appengine_v1/classes.rb', line 1115

def certificates
  @certificates
end

#next_page_tokenString

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

Returns:

  • (String)


1120
1121
1122
# File 'generated/google/apis/appengine_v1/classes.rb', line 1120

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1127
1128
1129
1130
# File 'generated/google/apis/appengine_v1/classes.rb', line 1127

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