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.
28059 28060 28061 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28059 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
28051 28052 28053 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28051 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
28057 28058 28059 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28057 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28064 28065 28066 28067 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28064 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 |