Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse
- 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.ListIdentityMappings
Instance Attribute Summary collapse
-
#identity_mapping_entries ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdentityMappingEntry>
The Identity Mapping Entries.
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListIdentityMappingsResponse.
27037 27038 27039 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27037 def initialize(**args) update!(**args) end |
Instance Attribute Details
#identity_mapping_entries ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaIdentityMappingEntry>
The Identity Mapping Entries.
Corresponds to the JSON property identityMappingEntries
27029 27030 27031 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27029 def identity_mapping_entries @identity_mapping_entries 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
27035 27036 27037 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27035 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27042 27043 27044 27045 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27042 def update!(**args) @identity_mapping_entries = args[:identity_mapping_entries] if args.key?(:identity_mapping_entries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |