Class: Google::Apis::CloudkmsV1::ListSingleTenantHsmInstanceProposalsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::ListSingleTenantHsmInstanceProposalsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudkms_v1/classes.rb,
lib/google/apis/cloudkms_v1/representations.rb,
lib/google/apis/cloudkms_v1/representations.rb
Overview
Response message for HsmManagement.ListSingleTenantHsmInstanceProposals.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#single_tenant_hsm_instance_proposals ⇒ Array<Google::Apis::CloudkmsV1::SingleTenantHsmInstanceProposal>
The list of SingleTenantHsmInstanceProposals.
-
#total_size ⇒ Fixnum
The total number of SingleTenantHsmInstanceProposals that matched the query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSingleTenantHsmInstanceProposalsResponse
constructor
A new instance of ListSingleTenantHsmInstanceProposalsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSingleTenantHsmInstanceProposalsResponse
Returns a new instance of ListSingleTenantHsmInstanceProposalsResponse.
2357 2358 2359 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2357 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in
ListSingleTenantHsmInstanceProposalsRequest.page_token to retrieve the next
page of results.
Corresponds to the JSON property nextPageToken
2343 2344 2345 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2343 def next_page_token @next_page_token end |
#single_tenant_hsm_instance_proposals ⇒ Array<Google::Apis::CloudkmsV1::SingleTenantHsmInstanceProposal>
The list of SingleTenantHsmInstanceProposals.
Corresponds to the JSON property singleTenantHsmInstanceProposals
2348 2349 2350 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2348 def single_tenant_hsm_instance_proposals @single_tenant_hsm_instance_proposals end |
#total_size ⇒ Fixnum
The total number of SingleTenantHsmInstanceProposals that matched the query.
This field is not populated if ListSingleTenantHsmInstanceProposalsRequest.
filter is applied.
Corresponds to the JSON property totalSize
2355 2356 2357 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2355 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2362 2363 2364 2365 2366 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 2362 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @single_tenant_hsm_instance_proposals = args[:single_tenant_hsm_instance_proposals] if args.key?(:single_tenant_hsm_instance_proposals) @total_size = args[:total_size] if args.key?(:total_size) end |