Class: Google::Apis::AppengineV1beta::ListAuthorizedCertificatesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AppengineV1beta::ListAuthorizedCertificatesResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/representations.rb 
Overview
Response message for AuthorizedCertificates.ListAuthorizedCertificates.
Instance Attribute Summary collapse
- 
  
    
      #certificates  ⇒ Array<Google::Apis::AppengineV1beta::AuthorizedCertificate> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The SSL certificates the user is authorized to administer.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Continuation token for fetching the next page of results.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListAuthorizedCertificatesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListAuthorizedCertificatesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListAuthorizedCertificatesResponse
Returns a new instance of ListAuthorizedCertificatesResponse
      1375 1376 1377  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1375 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#certificates ⇒ Array<Google::Apis::AppengineV1beta::AuthorizedCertificate>
The SSL certificates the user is authorized to administer.
Corresponds to the JSON property certificates
      1368 1369 1370  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1368 def certificates @certificates end  | 
  
#next_page_token ⇒ String
Continuation token for fetching the next page of results.
Corresponds to the JSON property nextPageToken
      1373 1374 1375  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1373 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1380 1381 1382 1383  | 
    
      # File 'generated/google/apis/appengine_v1beta/classes.rb', line 1380 def update!(**args) @certificates = args[:certificates] if args.key?(:certificates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |