google-apis-discoveryengine_v1 0.27.0 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -88,39 +88,6 @@ module Google
88
88
  execute_or_queue_command(command, &block)
89
89
  end
90
90
 
91
- # Generates grounded content.
92
- # @param [String] location
93
- # Required. Location resource. Format: `projects/`project`/locations/`location``.
94
- # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest] google_cloud_discoveryengine_v1_generate_grounded_content_request_object
95
- # @param [String] fields
96
- # Selector specifying which fields to include in a partial response.
97
- # @param [String] quota_user
98
- # Available to use for quota purposes for server-side applications. Can be any
99
- # arbitrary string assigned to a user, but should not exceed 40 characters.
100
- # @param [Google::Apis::RequestOptions] options
101
- # Request-specific options
102
- #
103
- # @yield [result, err] Result & error if block supplied
104
- # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse] parsed result object
105
- # @yieldparam err [StandardError] error object if request failed
106
- #
107
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse]
108
- #
109
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
110
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
111
- # @raise [Google::Apis::AuthorizationError] Authorization is required
112
- def generate_project_location_grounded_content(location, google_cloud_discoveryengine_v1_generate_grounded_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
113
- command = make_simple_command(:post, 'v1/{+location}:generateGroundedContent', options)
114
- command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest::Representation
115
- command.request_object = google_cloud_discoveryengine_v1_generate_grounded_content_request_object
116
- command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse::Representation
117
- command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse
118
- command.params['location'] = location unless location.nil?
119
- command.query['fields'] = fields unless fields.nil?
120
- command.query['quotaUser'] = quota_user unless quota_user.nil?
121
- execute_or_queue_command(command, &block)
122
- end
123
-
124
91
  # Gets the latest state of a long-running operation. Clients can use this method
125
92
  # to poll the operation result at intervals as recommended by the API service.
126
93
  # @param [String] name
@@ -2617,6 +2584,109 @@ module Google
2617
2584
  execute_or_queue_command(command, &block)
2618
2585
  end
2619
2586
 
2587
+ # Creates a Sitemap.
2588
+ # @param [String] parent
2589
+ # Required. Parent resource name of the SiteSearchEngine, such as `projects/*/
2590
+ # locations/*/collections/*/dataStores/*/siteSearchEngine`.
2591
+ # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Sitemap] google_cloud_discoveryengine_v1_sitemap_object
2592
+ # @param [String] fields
2593
+ # Selector specifying which fields to include in a partial response.
2594
+ # @param [String] quota_user
2595
+ # Available to use for quota purposes for server-side applications. Can be any
2596
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2597
+ # @param [Google::Apis::RequestOptions] options
2598
+ # Request-specific options
2599
+ #
2600
+ # @yield [result, err] Result & error if block supplied
2601
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
2602
+ # @yieldparam err [StandardError] error object if request failed
2603
+ #
2604
+ # @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
2605
+ #
2606
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2607
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2608
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2609
+ def create_project_location_collection_data_store_site_search_engine_sitemap(parent, google_cloud_discoveryengine_v1_sitemap_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2610
+ command = make_simple_command(:post, 'v1/{+parent}/sitemaps', options)
2611
+ command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Sitemap::Representation
2612
+ command.request_object = google_cloud_discoveryengine_v1_sitemap_object
2613
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
2614
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
2615
+ command.params['parent'] = parent unless parent.nil?
2616
+ command.query['fields'] = fields unless fields.nil?
2617
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2618
+ execute_or_queue_command(command, &block)
2619
+ end
2620
+
2621
+ # Deletes a Sitemap.
2622
+ # @param [String] name
2623
+ # Required. Full resource name of Sitemap, such as `projects/`project`/locations/
2624
+ # `location`/collections/`collection`/dataStores/`data_store`/siteSearchEngine/
2625
+ # sitemaps/`sitemap``. If the caller does not have permission to access the
2626
+ # Sitemap, regardless of whether or not it exists, a PERMISSION_DENIED error is
2627
+ # returned. If the requested Sitemap does not exist, a NOT_FOUND error is
2628
+ # returned.
2629
+ # @param [String] fields
2630
+ # Selector specifying which fields to include in a partial response.
2631
+ # @param [String] quota_user
2632
+ # Available to use for quota purposes for server-side applications. Can be any
2633
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2634
+ # @param [Google::Apis::RequestOptions] options
2635
+ # Request-specific options
2636
+ #
2637
+ # @yield [result, err] Result & error if block supplied
2638
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
2639
+ # @yieldparam err [StandardError] error object if request failed
2640
+ #
2641
+ # @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
2642
+ #
2643
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2644
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2645
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2646
+ def delete_project_location_collection_data_store_site_search_engine_sitemap(name, fields: nil, quota_user: nil, options: nil, &block)
2647
+ command = make_simple_command(:delete, 'v1/{+name}', options)
2648
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
2649
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
2650
+ command.params['name'] = name unless name.nil?
2651
+ command.query['fields'] = fields unless fields.nil?
2652
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2653
+ execute_or_queue_command(command, &block)
2654
+ end
2655
+
2656
+ # Fetch Sitemaps in a DataStore.
2657
+ # @param [String] parent
2658
+ # Required. Parent resource name of the SiteSearchEngine, such as `projects/*/
2659
+ # locations/*/collections/*/dataStores/*/siteSearchEngine`.
2660
+ # @param [Array<String>, String] matcher_uris_matcher_uris
2661
+ # The Sitemap uris.
2662
+ # @param [String] fields
2663
+ # Selector specifying which fields to include in a partial response.
2664
+ # @param [String] quota_user
2665
+ # Available to use for quota purposes for server-side applications. Can be any
2666
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2667
+ # @param [Google::Apis::RequestOptions] options
2668
+ # Request-specific options
2669
+ #
2670
+ # @yield [result, err] Result & error if block supplied
2671
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse] parsed result object
2672
+ # @yieldparam err [StandardError] error object if request failed
2673
+ #
2674
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse]
2675
+ #
2676
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2677
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2678
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2679
+ def fetch_project_location_collection_data_store_site_search_engine_sitemap(parent, matcher_uris_matcher_uris: nil, fields: nil, quota_user: nil, options: nil, &block)
2680
+ command = make_simple_command(:get, 'v1/{+parent}/sitemaps:fetch', options)
2681
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse::Representation
2682
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse
2683
+ command.params['parent'] = parent unless parent.nil?
2684
+ command.query['matcher.urisMatcher.uris'] = matcher_uris_matcher_uris unless matcher_uris_matcher_uris.nil?
2685
+ command.query['fields'] = fields unless fields.nil?
2686
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2687
+ execute_or_queue_command(command, &block)
2688
+ end
2689
+
2620
2690
  # Creates TargetSite in a batch.
2621
2691
  # @param [String] parent
2622
2692
  # Required. The parent resource shared by all TargetSites being created. `
@@ -6500,6 +6570,109 @@ module Google
6500
6570
  execute_or_queue_command(command, &block)
6501
6571
  end
6502
6572
 
6573
+ # Creates a Sitemap.
6574
+ # @param [String] parent
6575
+ # Required. Parent resource name of the SiteSearchEngine, such as `projects/*/
6576
+ # locations/*/collections/*/dataStores/*/siteSearchEngine`.
6577
+ # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Sitemap] google_cloud_discoveryengine_v1_sitemap_object
6578
+ # @param [String] fields
6579
+ # Selector specifying which fields to include in a partial response.
6580
+ # @param [String] quota_user
6581
+ # Available to use for quota purposes for server-side applications. Can be any
6582
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6583
+ # @param [Google::Apis::RequestOptions] options
6584
+ # Request-specific options
6585
+ #
6586
+ # @yield [result, err] Result & error if block supplied
6587
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
6588
+ # @yieldparam err [StandardError] error object if request failed
6589
+ #
6590
+ # @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
6591
+ #
6592
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6593
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6594
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
6595
+ def create_project_location_data_store_site_search_engine_sitemap(parent, google_cloud_discoveryengine_v1_sitemap_object = nil, fields: nil, quota_user: nil, options: nil, &block)
6596
+ command = make_simple_command(:post, 'v1/{+parent}/sitemaps', options)
6597
+ command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Sitemap::Representation
6598
+ command.request_object = google_cloud_discoveryengine_v1_sitemap_object
6599
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
6600
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
6601
+ command.params['parent'] = parent unless parent.nil?
6602
+ command.query['fields'] = fields unless fields.nil?
6603
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
6604
+ execute_or_queue_command(command, &block)
6605
+ end
6606
+
6607
+ # Deletes a Sitemap.
6608
+ # @param [String] name
6609
+ # Required. Full resource name of Sitemap, such as `projects/`project`/locations/
6610
+ # `location`/collections/`collection`/dataStores/`data_store`/siteSearchEngine/
6611
+ # sitemaps/`sitemap``. If the caller does not have permission to access the
6612
+ # Sitemap, regardless of whether or not it exists, a PERMISSION_DENIED error is
6613
+ # returned. If the requested Sitemap does not exist, a NOT_FOUND error is
6614
+ # returned.
6615
+ # @param [String] fields
6616
+ # Selector specifying which fields to include in a partial response.
6617
+ # @param [String] quota_user
6618
+ # Available to use for quota purposes for server-side applications. Can be any
6619
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6620
+ # @param [Google::Apis::RequestOptions] options
6621
+ # Request-specific options
6622
+ #
6623
+ # @yield [result, err] Result & error if block supplied
6624
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
6625
+ # @yieldparam err [StandardError] error object if request failed
6626
+ #
6627
+ # @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
6628
+ #
6629
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6630
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6631
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
6632
+ def delete_project_location_data_store_site_search_engine_sitemap(name, fields: nil, quota_user: nil, options: nil, &block)
6633
+ command = make_simple_command(:delete, 'v1/{+name}', options)
6634
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
6635
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
6636
+ command.params['name'] = name unless name.nil?
6637
+ command.query['fields'] = fields unless fields.nil?
6638
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
6639
+ execute_or_queue_command(command, &block)
6640
+ end
6641
+
6642
+ # Fetch Sitemaps in a DataStore.
6643
+ # @param [String] parent
6644
+ # Required. Parent resource name of the SiteSearchEngine, such as `projects/*/
6645
+ # locations/*/collections/*/dataStores/*/siteSearchEngine`.
6646
+ # @param [Array<String>, String] matcher_uris_matcher_uris
6647
+ # The Sitemap uris.
6648
+ # @param [String] fields
6649
+ # Selector specifying which fields to include in a partial response.
6650
+ # @param [String] quota_user
6651
+ # Available to use for quota purposes for server-side applications. Can be any
6652
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
6653
+ # @param [Google::Apis::RequestOptions] options
6654
+ # Request-specific options
6655
+ #
6656
+ # @yield [result, err] Result & error if block supplied
6657
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse] parsed result object
6658
+ # @yieldparam err [StandardError] error object if request failed
6659
+ #
6660
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse]
6661
+ #
6662
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
6663
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
6664
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
6665
+ def fetch_project_location_data_store_site_search_engine_sitemap(parent, matcher_uris_matcher_uris: nil, fields: nil, quota_user: nil, options: nil, &block)
6666
+ command = make_simple_command(:get, 'v1/{+parent}/sitemaps:fetch', options)
6667
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse::Representation
6668
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FetchSitemapsResponse
6669
+ command.params['parent'] = parent unless parent.nil?
6670
+ command.query['matcher.urisMatcher.uris'] = matcher_uris_matcher_uris unless matcher_uris_matcher_uris.nil?
6671
+ command.query['fields'] = fields unless fields.nil?
6672
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
6673
+ execute_or_queue_command(command, &block)
6674
+ end
6675
+
6503
6676
  # Creates TargetSite in a batch.
6504
6677
  # @param [String] parent
6505
6678
  # Required. The parent resource shared by all TargetSites being created. `
@@ -6994,6 +7167,272 @@ module Google
6994
7167
  execute_or_queue_command(command, &block)
6995
7168
  end
6996
7169
 
7170
+ # Creates a new Identity Mapping Store.
7171
+ # @param [String] parent
7172
+ # Required. The parent collection resource name, such as `projects/`project`/
7173
+ # locations/`location``.
7174
+ # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore] google_cloud_discoveryengine_v1_identity_mapping_store_object
7175
+ # @param [String] cmek_config_name
7176
+ # Resource name of the CmekConfig to use for protecting this Identity Mapping
7177
+ # Store.
7178
+ # @param [Boolean] disable_cmek
7179
+ # Identity Mapping Store without CMEK protections. If a default CmekConfig is
7180
+ # set for the project, setting this field will override the default CmekConfig
7181
+ # as well.
7182
+ # @param [String] identity_mapping_store_id
7183
+ # Required. The ID of the Identity Mapping Store to create. The ID must contain
7184
+ # only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The
7185
+ # maximum length is 63 characters.
7186
+ # @param [String] fields
7187
+ # Selector specifying which fields to include in a partial response.
7188
+ # @param [String] quota_user
7189
+ # Available to use for quota purposes for server-side applications. Can be any
7190
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7191
+ # @param [Google::Apis::RequestOptions] options
7192
+ # Request-specific options
7193
+ #
7194
+ # @yield [result, err] Result & error if block supplied
7195
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore] parsed result object
7196
+ # @yieldparam err [StandardError] error object if request failed
7197
+ #
7198
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore]
7199
+ #
7200
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7201
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7202
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7203
+ def create_project_location_identity_mapping_store(parent, google_cloud_discoveryengine_v1_identity_mapping_store_object = nil, cmek_config_name: nil, disable_cmek: nil, identity_mapping_store_id: nil, fields: nil, quota_user: nil, options: nil, &block)
7204
+ command = make_simple_command(:post, 'v1/{+parent}/identityMappingStores', options)
7205
+ command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore::Representation
7206
+ command.request_object = google_cloud_discoveryengine_v1_identity_mapping_store_object
7207
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore::Representation
7208
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore
7209
+ command.params['parent'] = parent unless parent.nil?
7210
+ command.query['cmekConfigName'] = cmek_config_name unless cmek_config_name.nil?
7211
+ command.query['disableCmek'] = disable_cmek unless disable_cmek.nil?
7212
+ command.query['identityMappingStoreId'] = identity_mapping_store_id unless identity_mapping_store_id.nil?
7213
+ command.query['fields'] = fields unless fields.nil?
7214
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7215
+ execute_or_queue_command(command, &block)
7216
+ end
7217
+
7218
+ # Deletes the Identity Mapping Store.
7219
+ # @param [String] name
7220
+ # Required. The name of the Identity Mapping Store to delete. Format: `projects/`
7221
+ # project`/locations/`location`/identityMappingStores/`identityMappingStore``
7222
+ # @param [String] fields
7223
+ # Selector specifying which fields to include in a partial response.
7224
+ # @param [String] quota_user
7225
+ # Available to use for quota purposes for server-side applications. Can be any
7226
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7227
+ # @param [Google::Apis::RequestOptions] options
7228
+ # Request-specific options
7229
+ #
7230
+ # @yield [result, err] Result & error if block supplied
7231
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
7232
+ # @yieldparam err [StandardError] error object if request failed
7233
+ #
7234
+ # @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
7235
+ #
7236
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7237
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7238
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7239
+ def delete_project_location_identity_mapping_store(name, fields: nil, quota_user: nil, options: nil, &block)
7240
+ command = make_simple_command(:delete, 'v1/{+name}', options)
7241
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
7242
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
7243
+ command.params['name'] = name unless name.nil?
7244
+ command.query['fields'] = fields unless fields.nil?
7245
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7246
+ execute_or_queue_command(command, &block)
7247
+ end
7248
+
7249
+ # Gets the Identity Mapping Store.
7250
+ # @param [String] name
7251
+ # Required. The name of the Identity Mapping Store to get. Format: `projects/`
7252
+ # project`/locations/`location`/identityMappingStores/`identityMappingStore``
7253
+ # @param [String] fields
7254
+ # Selector specifying which fields to include in a partial response.
7255
+ # @param [String] quota_user
7256
+ # Available to use for quota purposes for server-side applications. Can be any
7257
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7258
+ # @param [Google::Apis::RequestOptions] options
7259
+ # Request-specific options
7260
+ #
7261
+ # @yield [result, err] Result & error if block supplied
7262
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore] parsed result object
7263
+ # @yieldparam err [StandardError] error object if request failed
7264
+ #
7265
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore]
7266
+ #
7267
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7268
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7269
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7270
+ def get_project_location_identity_mapping_store(name, fields: nil, quota_user: nil, options: nil, &block)
7271
+ command = make_simple_command(:get, 'v1/{+name}', options)
7272
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore::Representation
7273
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1IdentityMappingStore
7274
+ command.params['name'] = name unless name.nil?
7275
+ command.query['fields'] = fields unless fields.nil?
7276
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7277
+ execute_or_queue_command(command, &block)
7278
+ end
7279
+
7280
+ # Imports a list of Identity Mapping Entries to an Identity Mapping Store.
7281
+ # @param [String] identity_mapping_store
7282
+ # Required. The name of the Identity Mapping Store to import Identity Mapping
7283
+ # Entries to. Format: `projects/`project`/locations/`location`/
7284
+ # identityMappingStores/`identityMappingStore``
7285
+ # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ImportIdentityMappingsRequest] google_cloud_discoveryengine_v1_import_identity_mappings_request_object
7286
+ # @param [String] fields
7287
+ # Selector specifying which fields to include in a partial response.
7288
+ # @param [String] quota_user
7289
+ # Available to use for quota purposes for server-side applications. Can be any
7290
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7291
+ # @param [Google::Apis::RequestOptions] options
7292
+ # Request-specific options
7293
+ #
7294
+ # @yield [result, err] Result & error if block supplied
7295
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
7296
+ # @yieldparam err [StandardError] error object if request failed
7297
+ #
7298
+ # @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
7299
+ #
7300
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7301
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7302
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7303
+ def import_project_location_identity_mapping_store_identity_mappings(identity_mapping_store, google_cloud_discoveryengine_v1_import_identity_mappings_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
7304
+ command = make_simple_command(:post, 'v1/{+identityMappingStore}:importIdentityMappings', options)
7305
+ command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ImportIdentityMappingsRequest::Representation
7306
+ command.request_object = google_cloud_discoveryengine_v1_import_identity_mappings_request_object
7307
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
7308
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
7309
+ command.params['identityMappingStore'] = identity_mapping_store unless identity_mapping_store.nil?
7310
+ command.query['fields'] = fields unless fields.nil?
7311
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7312
+ execute_or_queue_command(command, &block)
7313
+ end
7314
+
7315
+ # Lists all Identity Mapping Stores.
7316
+ # @param [String] parent
7317
+ # Required. The parent of the Identity Mapping Stores to list. Format: `projects/
7318
+ # `project`/locations/`location``.
7319
+ # @param [Fixnum] page_size
7320
+ # Maximum number of IdentityMappingStores to return. If unspecified, defaults to
7321
+ # 100. The maximum allowed value is 1000. Values above 1000 will be coerced to
7322
+ # 1000.
7323
+ # @param [String] page_token
7324
+ # A page token, received from a previous `ListIdentityMappingStores` call.
7325
+ # Provide this to retrieve the subsequent page. When paginating, all other
7326
+ # parameters provided to `ListIdentityMappingStores` must match the call that
7327
+ # provided the page token.
7328
+ # @param [String] fields
7329
+ # Selector specifying which fields to include in a partial response.
7330
+ # @param [String] quota_user
7331
+ # Available to use for quota purposes for server-side applications. Can be any
7332
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7333
+ # @param [Google::Apis::RequestOptions] options
7334
+ # Request-specific options
7335
+ #
7336
+ # @yield [result, err] Result & error if block supplied
7337
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingStoresResponse] parsed result object
7338
+ # @yieldparam err [StandardError] error object if request failed
7339
+ #
7340
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingStoresResponse]
7341
+ #
7342
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7343
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7344
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7345
+ def list_project_location_identity_mapping_stores(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
7346
+ command = make_simple_command(:get, 'v1/{+parent}/identityMappingStores', options)
7347
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingStoresResponse::Representation
7348
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingStoresResponse
7349
+ command.params['parent'] = parent unless parent.nil?
7350
+ command.query['pageSize'] = page_size unless page_size.nil?
7351
+ command.query['pageToken'] = page_token unless page_token.nil?
7352
+ command.query['fields'] = fields unless fields.nil?
7353
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7354
+ execute_or_queue_command(command, &block)
7355
+ end
7356
+
7357
+ # Lists Identity Mappings in an Identity Mapping Store.
7358
+ # @param [String] identity_mapping_store
7359
+ # Required. The name of the Identity Mapping Store to list Identity Mapping
7360
+ # Entries in. Format: `projects/`project`/locations/`location`/
7361
+ # identityMappingStores/`identityMappingStore``
7362
+ # @param [Fixnum] page_size
7363
+ # Maximum number of IdentityMappings to return. If unspecified, defaults to 2000.
7364
+ # The maximum allowed value is 10000. Values above 10000 will be coerced to
7365
+ # 10000.
7366
+ # @param [String] page_token
7367
+ # A page token, received from a previous `ListIdentityMappings` call. Provide
7368
+ # this to retrieve the subsequent page. When paginating, all other parameters
7369
+ # provided to `ListIdentityMappings` must match the call that provided the page
7370
+ # token.
7371
+ # @param [String] fields
7372
+ # Selector specifying which fields to include in a partial response.
7373
+ # @param [String] quota_user
7374
+ # Available to use for quota purposes for server-side applications. Can be any
7375
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7376
+ # @param [Google::Apis::RequestOptions] options
7377
+ # Request-specific options
7378
+ #
7379
+ # @yield [result, err] Result & error if block supplied
7380
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingsResponse] parsed result object
7381
+ # @yieldparam err [StandardError] error object if request failed
7382
+ #
7383
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingsResponse]
7384
+ #
7385
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7386
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7387
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7388
+ def list_project_location_identity_mapping_store_identity_mappings(identity_mapping_store, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
7389
+ command = make_simple_command(:get, 'v1/{+identityMappingStore}:listIdentityMappings', options)
7390
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingsResponse::Representation
7391
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListIdentityMappingsResponse
7392
+ command.params['identityMappingStore'] = identity_mapping_store unless identity_mapping_store.nil?
7393
+ command.query['pageSize'] = page_size unless page_size.nil?
7394
+ command.query['pageToken'] = page_token unless page_token.nil?
7395
+ command.query['fields'] = fields unless fields.nil?
7396
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7397
+ execute_or_queue_command(command, &block)
7398
+ end
7399
+
7400
+ # Purges specified or all Identity Mapping Entries from an Identity Mapping
7401
+ # Store.
7402
+ # @param [String] identity_mapping_store
7403
+ # Required. The name of the Identity Mapping Store to purge Identity Mapping
7404
+ # Entries from. Format: `projects/`project`/locations/`location`/
7405
+ # identityMappingStores/`identityMappingStore``
7406
+ # @param [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PurgeIdentityMappingsRequest] google_cloud_discoveryengine_v1_purge_identity_mappings_request_object
7407
+ # @param [String] fields
7408
+ # Selector specifying which fields to include in a partial response.
7409
+ # @param [String] quota_user
7410
+ # Available to use for quota purposes for server-side applications. Can be any
7411
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
7412
+ # @param [Google::Apis::RequestOptions] options
7413
+ # Request-specific options
7414
+ #
7415
+ # @yield [result, err] Result & error if block supplied
7416
+ # @yieldparam result [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation] parsed result object
7417
+ # @yieldparam err [StandardError] error object if request failed
7418
+ #
7419
+ # @return [Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation]
7420
+ #
7421
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7422
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7423
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
7424
+ def purge_project_location_identity_mapping_store_identity_mappings(identity_mapping_store, google_cloud_discoveryengine_v1_purge_identity_mappings_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
7425
+ command = make_simple_command(:post, 'v1/{+identityMappingStore}:purgeIdentityMappings', options)
7426
+ command.request_representation = Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1PurgeIdentityMappingsRequest::Representation
7427
+ command.request_object = google_cloud_discoveryengine_v1_purge_identity_mappings_request_object
7428
+ command.response_representation = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation::Representation
7429
+ command.response_class = Google::Apis::DiscoveryengineV1::GoogleLongrunningOperation
7430
+ command.params['identityMappingStore'] = identity_mapping_store unless identity_mapping_store.nil?
7431
+ command.query['fields'] = fields unless fields.nil?
7432
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
7433
+ execute_or_queue_command(command, &block)
7434
+ end
7435
+
6997
7436
  # Gets the latest state of a long-running operation. Clients can use this method
6998
7437
  # to poll the operation result at intervals as recommended by the API service.
6999
7438
  # @param [String] name
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-09 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.27.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.29.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Discovery Engine API V1
79
79
  test_files: []