Class: Google::Apis::CertificatemanagerV1::ListCertificateMapsResponse

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

Overview

Response for the ListCertificateMaps method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCertificateMapsResponse

Returns a new instance of ListCertificateMapsResponse.



704
705
706
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 704

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

Instance Attribute Details

#certificate_mapsArray<Google::Apis::CertificatemanagerV1::CertificateMap>

A list of certificate maps for the parent resource. Corresponds to the JSON property certificateMaps



690
691
692
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 690

def certificate_maps
  @certificate_maps
end

#next_page_tokenString

If there might be more results than those appearing in this response, then next_page_token is included. To get the next set of results, call this method again using the value of next_page_token as page_token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


697
698
699
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 697

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


702
703
704
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 702

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



709
710
711
712
713
# File 'lib/google/apis/certificatemanager_v1/classes.rb', line 709

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