Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Response message for IdentityMappingStoreService.ListIdentityMappingStores
Instance Attribute Summary collapse
-
#identity_mapping_stores ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdentityMappingStore>
The Identity Mapping Stores.
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListIdentityMappingStoresResponse.
27223 27224 27225 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27223 def initialize(**args) update!(**args) end |
Instance Attribute Details
#identity_mapping_stores ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdentityMappingStore>
The Identity Mapping Stores.
Corresponds to the JSON property identityMappingStores
27215 27216 27217 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27215 def identity_mapping_stores @identity_mapping_stores end |
#next_page_token ⇒ String
A token that can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
27221 27222 27223 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27221 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27228 27229 27230 27231 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27228 def update!(**args) @identity_mapping_stores = args[:identity_mapping_stores] if args.key?(:identity_mapping_stores) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |