google-apis-networksecurity_v1beta1 0.41.0 → 0.42.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.
@@ -254,6 +254,9 @@ module Google
254
254
  # The value returned by the last `ListAddressGroupsResponse` Indicates that this
255
255
  # is a continuation of a prior `ListAddressGroups` call, and that the system
256
256
  # should return the next page of data.
257
+ # @param [Boolean] return_partial_success
258
+ # Optional. If true, allow partial responses for multi-regional Aggregated List
259
+ # requests.
257
260
  # @param [String] fields
258
261
  # Selector specifying which fields to include in a partial response.
259
262
  # @param [String] quota_user
@@ -271,13 +274,14 @@ module Google
271
274
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
272
275
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
273
276
  # @raise [Google::Apis::AuthorizationError] Authorization is required
274
- def list_organization_location_address_groups(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
277
+ def list_organization_location_address_groups(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
275
278
  command = make_simple_command(:get, 'v1beta1/{+parent}/addressGroups', options)
276
279
  command.response_representation = Google::Apis::NetworksecurityV1beta1::ListAddressGroupsResponse::Representation
277
280
  command.response_class = Google::Apis::NetworksecurityV1beta1::ListAddressGroupsResponse
278
281
  command.params['parent'] = parent unless parent.nil?
279
282
  command.query['pageSize'] = page_size unless page_size.nil?
280
283
  command.query['pageToken'] = page_token unless page_token.nil?
284
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
281
285
  command.query['fields'] = fields unless fields.nil?
282
286
  command.query['quotaUser'] = quota_user unless quota_user.nil?
283
287
  execute_or_queue_command(command, &block)
@@ -1469,6 +1473,9 @@ module Google
1469
1473
  # The value returned by the last `ListAddressGroupsResponse` Indicates that this
1470
1474
  # is a continuation of a prior `ListAddressGroups` call, and that the system
1471
1475
  # should return the next page of data.
1476
+ # @param [Boolean] return_partial_success
1477
+ # Optional. If true, allow partial responses for multi-regional Aggregated List
1478
+ # requests.
1472
1479
  # @param [String] fields
1473
1480
  # Selector specifying which fields to include in a partial response.
1474
1481
  # @param [String] quota_user
@@ -1486,13 +1493,14 @@ module Google
1486
1493
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1487
1494
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1488
1495
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1489
- def list_project_location_address_groups(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1496
+ def list_project_location_address_groups(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1490
1497
  command = make_simple_command(:get, 'v1beta1/{+parent}/addressGroups', options)
1491
1498
  command.response_representation = Google::Apis::NetworksecurityV1beta1::ListAddressGroupsResponse::Representation
1492
1499
  command.response_class = Google::Apis::NetworksecurityV1beta1::ListAddressGroupsResponse
1493
1500
  command.params['parent'] = parent unless parent.nil?
1494
1501
  command.query['pageSize'] = page_size unless page_size.nil?
1495
1502
  command.query['pageToken'] = page_token unless page_token.nil?
1503
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1496
1504
  command.query['fields'] = fields unless fields.nil?
1497
1505
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1498
1506
  execute_or_queue_command(command, &block)
@@ -2345,6 +2353,196 @@ module Google
2345
2353
  execute_or_queue_command(command, &block)
2346
2354
  end
2347
2355
 
2356
+ # Creates a new BackendAuthenticationConfig in a given project and location.
2357
+ # @param [String] parent
2358
+ # Required. The parent resource of the BackendAuthenticationConfig. Must be in
2359
+ # the format `projects/*/locations/`location``.
2360
+ # @param [Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig] backend_authentication_config_object
2361
+ # @param [String] backend_authentication_config_id
2362
+ # Required. Short name of the BackendAuthenticationConfig resource to be created.
2363
+ # This value should be 1-63 characters long, containing only letters, numbers,
2364
+ # hyphens, and underscores, and should not start with a number. E.g. "backend-
2365
+ # auth-config".
2366
+ # @param [String] fields
2367
+ # Selector specifying which fields to include in a partial response.
2368
+ # @param [String] quota_user
2369
+ # Available to use for quota purposes for server-side applications. Can be any
2370
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2371
+ # @param [Google::Apis::RequestOptions] options
2372
+ # Request-specific options
2373
+ #
2374
+ # @yield [result, err] Result & error if block supplied
2375
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::Operation] parsed result object
2376
+ # @yieldparam err [StandardError] error object if request failed
2377
+ #
2378
+ # @return [Google::Apis::NetworksecurityV1beta1::Operation]
2379
+ #
2380
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2381
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2382
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2383
+ def create_project_location_backend_authentication_config(parent, backend_authentication_config_object = nil, backend_authentication_config_id: nil, fields: nil, quota_user: nil, options: nil, &block)
2384
+ command = make_simple_command(:post, 'v1beta1/{+parent}/backendAuthenticationConfigs', options)
2385
+ command.request_representation = Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig::Representation
2386
+ command.request_object = backend_authentication_config_object
2387
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::Operation::Representation
2388
+ command.response_class = Google::Apis::NetworksecurityV1beta1::Operation
2389
+ command.params['parent'] = parent unless parent.nil?
2390
+ command.query['backendAuthenticationConfigId'] = backend_authentication_config_id unless backend_authentication_config_id.nil?
2391
+ command.query['fields'] = fields unless fields.nil?
2392
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2393
+ execute_or_queue_command(command, &block)
2394
+ end
2395
+
2396
+ # Deletes a single BackendAuthenticationConfig to BackendAuthenticationConfig.
2397
+ # @param [String] name
2398
+ # Required. A name of the BackendAuthenticationConfig to delete. Must be in the
2399
+ # format `projects/*/locations/`location`/backendAuthenticationConfigs/*`.
2400
+ # @param [String] etag
2401
+ # Optional. Etag of the resource. If this is provided, it must match the server'
2402
+ # s etag.
2403
+ # @param [String] fields
2404
+ # Selector specifying which fields to include in a partial response.
2405
+ # @param [String] quota_user
2406
+ # Available to use for quota purposes for server-side applications. Can be any
2407
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2408
+ # @param [Google::Apis::RequestOptions] options
2409
+ # Request-specific options
2410
+ #
2411
+ # @yield [result, err] Result & error if block supplied
2412
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::Operation] parsed result object
2413
+ # @yieldparam err [StandardError] error object if request failed
2414
+ #
2415
+ # @return [Google::Apis::NetworksecurityV1beta1::Operation]
2416
+ #
2417
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2418
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2419
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2420
+ def delete_project_location_backend_authentication_config(name, etag: nil, fields: nil, quota_user: nil, options: nil, &block)
2421
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
2422
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::Operation::Representation
2423
+ command.response_class = Google::Apis::NetworksecurityV1beta1::Operation
2424
+ command.params['name'] = name unless name.nil?
2425
+ command.query['etag'] = etag unless etag.nil?
2426
+ command.query['fields'] = fields unless fields.nil?
2427
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2428
+ execute_or_queue_command(command, &block)
2429
+ end
2430
+
2431
+ # Gets details of a single BackendAuthenticationConfig to
2432
+ # BackendAuthenticationConfig.
2433
+ # @param [String] name
2434
+ # Required. A name of the BackendAuthenticationConfig to get. Must be in the
2435
+ # format `projects/*/locations/`location`/backendAuthenticationConfigs/*`.
2436
+ # @param [String] fields
2437
+ # Selector specifying which fields to include in a partial response.
2438
+ # @param [String] quota_user
2439
+ # Available to use for quota purposes for server-side applications. Can be any
2440
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2441
+ # @param [Google::Apis::RequestOptions] options
2442
+ # Request-specific options
2443
+ #
2444
+ # @yield [result, err] Result & error if block supplied
2445
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig] parsed result object
2446
+ # @yieldparam err [StandardError] error object if request failed
2447
+ #
2448
+ # @return [Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig]
2449
+ #
2450
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2451
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2452
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2453
+ def get_project_location_backend_authentication_config(name, fields: nil, quota_user: nil, options: nil, &block)
2454
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
2455
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig::Representation
2456
+ command.response_class = Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig
2457
+ command.params['name'] = name unless name.nil?
2458
+ command.query['fields'] = fields unless fields.nil?
2459
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2460
+ execute_or_queue_command(command, &block)
2461
+ end
2462
+
2463
+ # Lists BackendAuthenticationConfigs in a given project and location.
2464
+ # @param [String] parent
2465
+ # Required. The project and location from which the BackendAuthenticationConfigs
2466
+ # should be listed, specified in the format `projects/*/locations/`location``.
2467
+ # @param [Fixnum] page_size
2468
+ # Maximum number of BackendAuthenticationConfigs to return per call.
2469
+ # @param [String] page_token
2470
+ # The value returned by the last `ListBackendAuthenticationConfigsResponse`
2471
+ # Indicates that this is a continuation of a prior `
2472
+ # ListBackendAuthenticationConfigs` call, and that the system should return the
2473
+ # next page of data.
2474
+ # @param [String] fields
2475
+ # Selector specifying which fields to include in a partial response.
2476
+ # @param [String] quota_user
2477
+ # Available to use for quota purposes for server-side applications. Can be any
2478
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2479
+ # @param [Google::Apis::RequestOptions] options
2480
+ # Request-specific options
2481
+ #
2482
+ # @yield [result, err] Result & error if block supplied
2483
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::ListBackendAuthenticationConfigsResponse] parsed result object
2484
+ # @yieldparam err [StandardError] error object if request failed
2485
+ #
2486
+ # @return [Google::Apis::NetworksecurityV1beta1::ListBackendAuthenticationConfigsResponse]
2487
+ #
2488
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2489
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2490
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2491
+ def list_project_location_backend_authentication_configs(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
2492
+ command = make_simple_command(:get, 'v1beta1/{+parent}/backendAuthenticationConfigs', options)
2493
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::ListBackendAuthenticationConfigsResponse::Representation
2494
+ command.response_class = Google::Apis::NetworksecurityV1beta1::ListBackendAuthenticationConfigsResponse
2495
+ command.params['parent'] = parent unless parent.nil?
2496
+ command.query['pageSize'] = page_size unless page_size.nil?
2497
+ command.query['pageToken'] = page_token unless page_token.nil?
2498
+ command.query['fields'] = fields unless fields.nil?
2499
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2500
+ execute_or_queue_command(command, &block)
2501
+ end
2502
+
2503
+ # Updates the parameters of a single BackendAuthenticationConfig to
2504
+ # BackendAuthenticationConfig.
2505
+ # @param [String] name
2506
+ # Required. Name of the BackendAuthenticationConfig resource. It matches the
2507
+ # pattern `projects/*/locations/`location`/backendAuthenticationConfigs/`
2508
+ # backend_authentication_config``
2509
+ # @param [Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig] backend_authentication_config_object
2510
+ # @param [String] update_mask
2511
+ # Optional. Field mask is used to specify the fields to be overwritten in the
2512
+ # BackendAuthenticationConfig resource by the update. The fields specified in
2513
+ # the update_mask are relative to the resource, not the full request. A field
2514
+ # will be overwritten if it is in the mask. If the user does not provide a mask
2515
+ # then all fields will be overwritten.
2516
+ # @param [String] fields
2517
+ # Selector specifying which fields to include in a partial response.
2518
+ # @param [String] quota_user
2519
+ # Available to use for quota purposes for server-side applications. Can be any
2520
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2521
+ # @param [Google::Apis::RequestOptions] options
2522
+ # Request-specific options
2523
+ #
2524
+ # @yield [result, err] Result & error if block supplied
2525
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::Operation] parsed result object
2526
+ # @yieldparam err [StandardError] error object if request failed
2527
+ #
2528
+ # @return [Google::Apis::NetworksecurityV1beta1::Operation]
2529
+ #
2530
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2531
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2532
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2533
+ def patch_project_location_backend_authentication_config(name, backend_authentication_config_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
2534
+ command = make_simple_command(:patch, 'v1beta1/{+name}', options)
2535
+ command.request_representation = Google::Apis::NetworksecurityV1beta1::BackendAuthenticationConfig::Representation
2536
+ command.request_object = backend_authentication_config_object
2537
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::Operation::Representation
2538
+ command.response_class = Google::Apis::NetworksecurityV1beta1::Operation
2539
+ command.params['name'] = name unless name.nil?
2540
+ command.query['updateMask'] = update_mask unless update_mask.nil?
2541
+ command.query['fields'] = fields unless fields.nil?
2542
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2543
+ execute_or_queue_command(command, &block)
2544
+ end
2545
+
2348
2546
  # Creates a new ClientTlsPolicy in a given project and location.
2349
2547
  # @param [String] parent
2350
2548
  # Required. The parent resource of the ClientTlsPolicy. Must be in the format `
@@ -3236,25 +3434,19 @@ module Google
3236
3434
  execute_or_queue_command(command, &block)
3237
3435
  end
3238
3436
 
3239
- # Creates a new InterceptDeploymentGroup in a given project and location.
3437
+ # Creates a deployment group in a given project and location. See https://google.
3438
+ # aip.dev/133.
3240
3439
  # @param [String] parent
3241
- # Required. Value for parent.
3440
+ # Required. The parent resource where this deployment group will be created.
3441
+ # Format: projects/`project`/locations/`location`
3242
3442
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup] intercept_deployment_group_object
3243
3443
  # @param [String] intercept_deployment_group_id
3244
- # Required. Id of the requesting object If auto-generating Id server-side,
3245
- # remove this field and intercept_deployment_group_id from the method_signature
3246
- # of Create RPC
3444
+ # Required. The ID to use for the new deployment group, which will become the
3445
+ # final component of the deployment group's resource name.
3247
3446
  # @param [String] request_id
3248
- # Optional. An optional request ID to identify requests. Specify a unique
3249
- # request ID so that if you must retry your request, the server will know to
3250
- # ignore the request if it has already been completed. The server will guarantee
3251
- # that for at least 60 minutes since the first request. For example, consider a
3252
- # situation where you make an initial request and the request times out. If you
3253
- # make the request again with the same request ID, the server can check if
3254
- # original operation with the same request ID was received, and if so, will
3255
- # ignore the second request. This prevents clients from accidentally creating
3256
- # duplicate commitments. The request ID must be a valid UUID with the exception
3257
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3447
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3448
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3449
+ # 155 for more details.
3258
3450
  # @param [String] fields
3259
3451
  # Selector specifying which fields to include in a partial response.
3260
3452
  # @param [String] quota_user
@@ -3286,20 +3478,13 @@ module Google
3286
3478
  execute_or_queue_command(command, &block)
3287
3479
  end
3288
3480
 
3289
- # Deletes a single InterceptDeploymentGroup.
3481
+ # Deletes a deployment group. See https://google.aip.dev/135.
3290
3482
  # @param [String] name
3291
- # Required. Name of the resource
3483
+ # Required. The deployment group to delete.
3292
3484
  # @param [String] request_id
3293
- # Optional. An optional request ID to identify requests. Specify a unique
3294
- # request ID so that if you must retry your request, the server will know to
3295
- # ignore the request if it has already been completed. The server will guarantee
3296
- # that for at least 60 minutes after the first request. For example, consider a
3297
- # situation where you make an initial request and the request times out. If you
3298
- # make the request again with the same request ID, the server can check if
3299
- # original operation with the same request ID was received, and if so, will
3300
- # ignore the second request. This prevents clients from accidentally creating
3301
- # duplicate commitments. The request ID must be a valid UUID with the exception
3302
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3485
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3486
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3487
+ # 155 for more details.
3303
3488
  # @param [String] fields
3304
3489
  # Selector specifying which fields to include in a partial response.
3305
3490
  # @param [String] quota_user
@@ -3328,9 +3513,11 @@ module Google
3328
3513
  execute_or_queue_command(command, &block)
3329
3514
  end
3330
3515
 
3331
- # Gets details of a single InterceptDeploymentGroup.
3516
+ # Gets a specific deployment group. See https://google.aip.dev/131.
3332
3517
  # @param [String] name
3333
- # Required. Name of the resource
3518
+ # Required. The name of the deployment group to retrieve. Format: projects/`
3519
+ # project`/locations/`location`/interceptDeploymentGroups/`
3520
+ # intercept_deployment_group`
3334
3521
  # @param [String] fields
3335
3522
  # Selector specifying which fields to include in a partial response.
3336
3523
  # @param [String] quota_user
@@ -3358,18 +3545,28 @@ module Google
3358
3545
  execute_or_queue_command(command, &block)
3359
3546
  end
3360
3547
 
3361
- # Lists InterceptDeploymentGroups in a given project and location.
3548
+ # Lists deployment groups in a given project and location. See https://google.
3549
+ # aip.dev/132.
3362
3550
  # @param [String] parent
3363
- # Required. Parent value for ListInterceptDeploymentGroupsRequest
3551
+ # Required. The parent, which owns this collection of deployment groups. Example:
3552
+ # `projects/123456789/locations/global`. See https://google.aip.dev/132 for
3553
+ # more details.
3364
3554
  # @param [String] filter
3365
- # Optional. Filtering results
3555
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
3556
+ # details.
3366
3557
  # @param [String] order_by
3367
- # Optional. Hint for how to order the results
3558
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
3559
+ # details.
3368
3560
  # @param [Fixnum] page_size
3369
3561
  # Optional. Requested page size. Server may return fewer items than requested.
3370
- # If unspecified, server will pick an appropriate default.
3562
+ # If unspecified, server will pick an appropriate default. See https://google.
3563
+ # aip.dev/158 for more details.
3371
3564
  # @param [String] page_token
3372
- # Optional. A token identifying a page of results the server should return.
3565
+ # Optional. A page token, received from a previous `
3566
+ # ListInterceptDeploymentGroups` call. Provide this to retrieve the subsequent
3567
+ # page. When paginating, all other parameters provided to `
3568
+ # ListInterceptDeploymentGroups` must match the call that provided the page
3569
+ # token. See https://google.aip.dev/158 for more details.
3373
3570
  # @param [String] fields
3374
3571
  # Selector specifying which fields to include in a partial response.
3375
3572
  # @param [String] quota_user
@@ -3401,27 +3598,20 @@ module Google
3401
3598
  execute_or_queue_command(command, &block)
3402
3599
  end
3403
3600
 
3404
- # Updates a single InterceptDeploymentGroup.
3601
+ # Updates a deployment group. See https://google.aip.dev/134.
3405
3602
  # @param [String] name
3406
- # Immutable. Identifier. Then name of the InterceptDeploymentGroup.
3603
+ # Immutable. Identifier. The resource name of this deployment group, for example:
3604
+ # `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See
3605
+ # https://google.aip.dev/122 for more details.
3407
3606
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup] intercept_deployment_group_object
3408
3607
  # @param [String] request_id
3409
- # Optional. An optional request ID to identify requests. Specify a unique
3410
- # request ID so that if you must retry your request, the server will know to
3411
- # ignore the request if it has already been completed. The server will guarantee
3412
- # that for at least 60 minutes since the first request. For example, consider a
3413
- # situation where you make an initial request and the request times out. If you
3414
- # make the request again with the same request ID, the server can check if
3415
- # original operation with the same request ID was received, and if so, will
3416
- # ignore the second request. This prevents clients from accidentally creating
3417
- # duplicate commitments. The request ID must be a valid UUID with the exception
3418
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3608
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3609
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3610
+ # 155 for more details.
3419
3611
  # @param [String] update_mask
3420
- # Required. Field mask is used to specify the fields to be overwritten in the
3421
- # InterceptDeploymentGroup resource by the update. The fields specified in the
3422
- # update_mask are relative to the resource, not the full request. A field will
3423
- # be overwritten if it is in the mask. If the user does not provide a mask then
3424
- # all fields will be overwritten.
3612
+ # Optional. The list of fields to update. Fields are specified relative to the
3613
+ # deployment group (e.g. `description`; *not* `intercept_deployment_group.
3614
+ # description`). See https://google.aip.dev/161 for more details.
3425
3615
  # @param [String] fields
3426
3616
  # Selector specifying which fields to include in a partial response.
3427
3617
  # @param [String] quota_user
@@ -3453,25 +3643,19 @@ module Google
3453
3643
  execute_or_queue_command(command, &block)
3454
3644
  end
3455
3645
 
3456
- # Creates a new InterceptDeployment in a given project and location.
3646
+ # Creates a deployment in a given project and location. See https://google.aip.
3647
+ # dev/133.
3457
3648
  # @param [String] parent
3458
- # Required. Value for parent.
3649
+ # Required. The parent resource where this deployment will be created. Format:
3650
+ # projects/`project`/locations/`location`
3459
3651
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptDeployment] intercept_deployment_object
3460
3652
  # @param [String] intercept_deployment_id
3461
- # Required. Id of the requesting object If auto-generating Id server-side,
3462
- # remove this field and intercept_deployment_id from the method_signature of
3463
- # Create RPC
3653
+ # Required. The ID to use for the new deployment, which will become the final
3654
+ # component of the deployment's resource name.
3464
3655
  # @param [String] request_id
3465
- # Optional. An optional request ID to identify requests. Specify a unique
3466
- # request ID so that if you must retry your request, the server will know to
3467
- # ignore the request if it has already been completed. The server will guarantee
3468
- # that for at least 60 minutes since the first request. For example, consider a
3469
- # situation where you make an initial request and the request times out. If you
3470
- # make the request again with the same request ID, the server can check if
3471
- # original operation with the same request ID was received, and if so, will
3472
- # ignore the second request. This prevents clients from accidentally creating
3473
- # duplicate commitments. The request ID must be a valid UUID with the exception
3474
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3656
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3657
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3658
+ # 155 for more details.
3475
3659
  # @param [String] fields
3476
3660
  # Selector specifying which fields to include in a partial response.
3477
3661
  # @param [String] quota_user
@@ -3503,20 +3687,13 @@ module Google
3503
3687
  execute_or_queue_command(command, &block)
3504
3688
  end
3505
3689
 
3506
- # Deletes a single InterceptDeployment.
3690
+ # Deletes a deployment. See https://google.aip.dev/135.
3507
3691
  # @param [String] name
3508
3692
  # Required. Name of the resource
3509
3693
  # @param [String] request_id
3510
- # Optional. An optional request ID to identify requests. Specify a unique
3511
- # request ID so that if you must retry your request, the server will know to
3512
- # ignore the request if it has already been completed. The server will guarantee
3513
- # that for at least 60 minutes after the first request. For example, consider a
3514
- # situation where you make an initial request and the request times out. If you
3515
- # make the request again with the same request ID, the server can check if
3516
- # original operation with the same request ID was received, and if so, will
3517
- # ignore the second request. This prevents clients from accidentally creating
3518
- # duplicate commitments. The request ID must be a valid UUID with the exception
3519
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3694
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3695
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3696
+ # 155 for more details.
3520
3697
  # @param [String] fields
3521
3698
  # Selector specifying which fields to include in a partial response.
3522
3699
  # @param [String] quota_user
@@ -3545,9 +3722,10 @@ module Google
3545
3722
  execute_or_queue_command(command, &block)
3546
3723
  end
3547
3724
 
3548
- # Gets details of a single InterceptDeployment.
3725
+ # Gets a specific deployment. See https://google.aip.dev/131.
3549
3726
  # @param [String] name
3550
- # Required. Name of the resource
3727
+ # Required. The name of the deployment to retrieve. Format: projects/`project`/
3728
+ # locations/`location`/interceptDeployments/`intercept_deployment`
3551
3729
  # @param [String] fields
3552
3730
  # Selector specifying which fields to include in a partial response.
3553
3731
  # @param [String] quota_user
@@ -3575,18 +3753,27 @@ module Google
3575
3753
  execute_or_queue_command(command, &block)
3576
3754
  end
3577
3755
 
3578
- # Lists InterceptDeployments in a given project and location.
3756
+ # Lists deployments in a given project and location. See https://google.aip.dev/
3757
+ # 132.
3579
3758
  # @param [String] parent
3580
- # Required. Parent value for ListInterceptDeploymentsRequest
3759
+ # Required. The parent, which owns this collection of deployments. Example: `
3760
+ # projects/123456789/locations/us-central1-a`. See https://google.aip.dev/132
3761
+ # for more details.
3581
3762
  # @param [String] filter
3582
- # Optional. Filtering results
3763
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
3764
+ # details.
3583
3765
  # @param [String] order_by
3584
- # Optional. Hint for how to order the results
3766
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
3767
+ # details.
3585
3768
  # @param [Fixnum] page_size
3586
3769
  # Optional. Requested page size. Server may return fewer items than requested.
3587
- # If unspecified, server will pick an appropriate default.
3770
+ # If unspecified, server will pick an appropriate default. See https://google.
3771
+ # aip.dev/158 for more details.
3588
3772
  # @param [String] page_token
3589
- # Optional. A token identifying a page of results the server should return.
3773
+ # Optional. A page token, received from a previous `ListInterceptDeployments`
3774
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
3775
+ # parameters provided to `ListInterceptDeployments` must match the call that
3776
+ # provided the page token. See https://google.aip.dev/158 for more details.
3590
3777
  # @param [String] fields
3591
3778
  # Selector specifying which fields to include in a partial response.
3592
3779
  # @param [String] quota_user
@@ -3618,27 +3805,20 @@ module Google
3618
3805
  execute_or_queue_command(command, &block)
3619
3806
  end
3620
3807
 
3621
- # Updates a single InterceptDeployment.
3808
+ # Updates a deployment. See https://google.aip.dev/134.
3622
3809
  # @param [String] name
3623
- # Immutable. Identifier. The name of the InterceptDeployment.
3810
+ # Immutable. Identifier. The resource name of this deployment, for example: `
3811
+ # projects/123456789/locations/us-central1-a/interceptDeployments/my-dep`. See
3812
+ # https://google.aip.dev/122 for more details.
3624
3813
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptDeployment] intercept_deployment_object
3625
3814
  # @param [String] request_id
3626
- # Optional. An optional request ID to identify requests. Specify a unique
3627
- # request ID so that if you must retry your request, the server will know to
3628
- # ignore the request if it has already been completed. The server will guarantee
3629
- # that for at least 60 minutes since the first request. For example, consider a
3630
- # situation where you make an initial request and the request times out. If you
3631
- # make the request again with the same request ID, the server can check if
3632
- # original operation with the same request ID was received, and if so, will
3633
- # ignore the second request. This prevents clients from accidentally creating
3634
- # duplicate commitments. The request ID must be a valid UUID with the exception
3635
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3815
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3816
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3817
+ # 155 for more details.
3636
3818
  # @param [String] update_mask
3637
- # Required. Field mask is used to specify the fields to be overwritten in the
3638
- # InterceptDeployment resource by the update. The fields specified in the
3639
- # update_mask are relative to the resource, not the full request. A field will
3640
- # be overwritten if it is in the mask. If the user does not provide a mask then
3641
- # all fields will be overwritten.
3819
+ # Optional. The list of fields to update. Fields are specified relative to the
3820
+ # deployment (e.g. `description`; *not* `intercept_deployment.description`). See
3821
+ # https://google.aip.dev/161 for more details.
3642
3822
  # @param [String] fields
3643
3823
  # Selector specifying which fields to include in a partial response.
3644
3824
  # @param [String] quota_user
@@ -3670,26 +3850,20 @@ module Google
3670
3850
  execute_or_queue_command(command, &block)
3671
3851
  end
3672
3852
 
3673
- # Creates a new InterceptEndpointGroupAssociation in a given project and
3674
- # location.
3853
+ # Creates an association in a given project and location. See https://google.aip.
3854
+ # dev/133.
3675
3855
  # @param [String] parent
3676
- # Required. Value for parent.
3856
+ # Required. The parent resource where this association will be created. Format:
3857
+ # projects/`project`/locations/`location`
3677
3858
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociation] intercept_endpoint_group_association_object
3678
3859
  # @param [String] intercept_endpoint_group_association_id
3679
- # Optional. Id of the requesting object If auto-generating Id server-side,
3680
- # remove this field and intercept_endpoint_group_association_id from the
3681
- # method_signature of Create RPC
3860
+ # Optional. The ID to use for the new association, which will become the final
3861
+ # component of the endpoint group's resource name. If not provided, the server
3862
+ # will generate a unique ID.
3682
3863
  # @param [String] request_id
3683
- # Optional. An optional request ID to identify requests. Specify a unique
3684
- # request ID so that if you must retry your request, the server will know to
3685
- # ignore the request if it has already been completed. The server will guarantee
3686
- # that for at least 60 minutes since the first request. For example, consider a
3687
- # situation where you make an initial request and the request times out. If you
3688
- # make the request again with the same request ID, the server can check if
3689
- # original operation with the same request ID was received, and if so, will
3690
- # ignore the second request. This prevents clients from accidentally creating
3691
- # duplicate commitments. The request ID must be a valid UUID with the exception
3692
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3864
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3865
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3866
+ # 155 for more details.
3693
3867
  # @param [String] fields
3694
3868
  # Selector specifying which fields to include in a partial response.
3695
3869
  # @param [String] quota_user
@@ -3721,20 +3895,13 @@ module Google
3721
3895
  execute_or_queue_command(command, &block)
3722
3896
  end
3723
3897
 
3724
- # Deletes a single InterceptEndpointGroupAssociation.
3898
+ # Deletes an association. See https://google.aip.dev/135.
3725
3899
  # @param [String] name
3726
- # Required. Name of the resource
3900
+ # Required. The association to delete.
3727
3901
  # @param [String] request_id
3728
- # Optional. An optional request ID to identify requests. Specify a unique
3729
- # request ID so that if you must retry your request, the server will know to
3730
- # ignore the request if it has already been completed. The server will guarantee
3731
- # that for at least 60 minutes after the first request. For example, consider a
3732
- # situation where you make an initial request and the request times out. If you
3733
- # make the request again with the same request ID, the server can check if
3734
- # original operation with the same request ID was received, and if so, will
3735
- # ignore the second request. This prevents clients from accidentally creating
3736
- # duplicate commitments. The request ID must be a valid UUID with the exception
3737
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
3902
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
3903
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
3904
+ # 155 for more details.
3738
3905
  # @param [String] fields
3739
3906
  # Selector specifying which fields to include in a partial response.
3740
3907
  # @param [String] quota_user
@@ -3763,9 +3930,11 @@ module Google
3763
3930
  execute_or_queue_command(command, &block)
3764
3931
  end
3765
3932
 
3766
- # Gets details of a single InterceptEndpointGroupAssociation.
3933
+ # Gets a specific association. See https://google.aip.dev/131.
3767
3934
  # @param [String] name
3768
- # Required. Name of the resource
3935
+ # Required. The name of the association to retrieve. Format: projects/`project`/
3936
+ # locations/`location`/interceptEndpointGroupAssociations/`
3937
+ # intercept_endpoint_group_association`
3769
3938
  # @param [String] fields
3770
3939
  # Selector specifying which fields to include in a partial response.
3771
3940
  # @param [String] quota_user
@@ -3793,18 +3962,27 @@ module Google
3793
3962
  execute_or_queue_command(command, &block)
3794
3963
  end
3795
3964
 
3796
- # Lists InterceptEndpointGroupAssociations in a given project and location.
3965
+ # Lists associations in a given project and location. See https://google.aip.dev/
3966
+ # 132.
3797
3967
  # @param [String] parent
3798
- # Required. Parent value for ListInterceptEndpointGroupAssociationsRequest
3968
+ # Required. The parent, which owns this collection of associations. Example: `
3969
+ # projects/123456789/locations/global`. See https://google.aip.dev/132 for more
3970
+ # details.
3799
3971
  # @param [String] filter
3800
- # Optional. Filtering results
3972
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
3973
+ # details.
3801
3974
  # @param [String] order_by
3802
- # Optional. Hint for how to order the results
3975
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
3976
+ # details.
3803
3977
  # @param [Fixnum] page_size
3804
3978
  # Optional. Requested page size. Server may return fewer items than requested.
3805
- # If unspecified, server will pick an appropriate default.
3979
+ # If unspecified, server will pick an appropriate default. See https://google.
3980
+ # aip.dev/158 for more details.
3806
3981
  # @param [String] page_token
3807
- # Optional. A token identifying a page of results the server should return.
3982
+ # Optional. A page token, received from a previous `ListInterceptEndpointGroups`
3983
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
3984
+ # parameters provided to `ListInterceptEndpointGroups` must match the call that
3985
+ # provided the page token. See https://google.aip.dev/158 for more details.
3808
3986
  # @param [String] fields
3809
3987
  # Selector specifying which fields to include in a partial response.
3810
3988
  # @param [String] quota_user
@@ -3836,27 +4014,21 @@ module Google
3836
4014
  execute_or_queue_command(command, &block)
3837
4015
  end
3838
4016
 
3839
- # Updates a single InterceptEndpointGroupAssociation.
4017
+ # Updates an association. See https://google.aip.dev/134.
3840
4018
  # @param [String] name
3841
- # Immutable. Identifier. The name of the InterceptEndpointGroupAssociation.
4019
+ # Immutable. Identifier. The resource name of this endpoint group association,
4020
+ # for example: `projects/123456789/locations/global/
4021
+ # interceptEndpointGroupAssociations/my-eg-association`. See https://google.aip.
4022
+ # dev/122 for more details.
3842
4023
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroupAssociation] intercept_endpoint_group_association_object
3843
4024
  # @param [String] request_id
3844
- # Optional. An optional request ID to identify requests. Specify a unique
3845
- # request ID so that if you must retry your request, the server will know to
3846
- # ignore the request if it has already been completed. The server will guarantee
3847
- # that for at least 60 minutes since the first request. For example, consider a
3848
- # situation where you make an initial request and the request times out. If you
3849
- # make the request again with the same request ID, the server can check if
3850
- # original operation with the same request ID was received, and if so, will
3851
- # ignore the second request. This prevents clients from accidentally creating
3852
- # duplicate commitments. The request ID must be a valid UUID with the exception
3853
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4025
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4026
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4027
+ # 155 for more details.
3854
4028
  # @param [String] update_mask
3855
- # Required. Field mask is used to specify the fields to be overwritten in the
3856
- # InterceptEndpointGroupAssociation resource by the update. The fields specified
3857
- # in the update_mask are relative to the resource, not the full request. A field
3858
- # will be overwritten if it is in the mask. If the user does not provide a mask
3859
- # then all fields will be overwritten.
4029
+ # Optional. The list of fields to update. Fields are specified relative to the
4030
+ # association (e.g. `description`; *not* `intercept_endpoint_group_association.
4031
+ # description`). See https://google.aip.dev/161 for more details.
3860
4032
  # @param [String] fields
3861
4033
  # Selector specifying which fields to include in a partial response.
3862
4034
  # @param [String] quota_user
@@ -3888,25 +4060,19 @@ module Google
3888
4060
  execute_or_queue_command(command, &block)
3889
4061
  end
3890
4062
 
3891
- # Creates a new InterceptEndpointGroup in a given project and location.
4063
+ # Creates an endpoint group in a given project and location. See https://google.
4064
+ # aip.dev/133.
3892
4065
  # @param [String] parent
3893
- # Required. Value for parent.
4066
+ # Required. The parent resource where this endpoint group will be created.
4067
+ # Format: projects/`project`/locations/`location`
3894
4068
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroup] intercept_endpoint_group_object
3895
4069
  # @param [String] intercept_endpoint_group_id
3896
- # Required. Id of the requesting object If auto-generating Id server-side,
3897
- # remove this field and intercept_endpoint_group_id from the method_signature of
3898
- # Create RPC
4070
+ # Required. The ID to use for the endpoint group, which will become the final
4071
+ # component of the endpoint group's resource name.
3899
4072
  # @param [String] request_id
3900
- # Optional. An optional request ID to identify requests. Specify a unique
3901
- # request ID so that if you must retry your request, the server will know to
3902
- # ignore the request if it has already been completed. The server will guarantee
3903
- # that for at least 60 minutes since the first request. For example, consider a
3904
- # situation where you make an initial request and the request times out. If you
3905
- # make the request again with the same request ID, the server can check if
3906
- # original operation with the same request ID was received, and if so, will
3907
- # ignore the second request. This prevents clients from accidentally creating
3908
- # duplicate commitments. The request ID must be a valid UUID with the exception
3909
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4073
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4074
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4075
+ # 155 for more details.
3910
4076
  # @param [String] fields
3911
4077
  # Selector specifying which fields to include in a partial response.
3912
4078
  # @param [String] quota_user
@@ -3938,20 +4104,13 @@ module Google
3938
4104
  execute_or_queue_command(command, &block)
3939
4105
  end
3940
4106
 
3941
- # Deletes a single InterceptEndpointGroup.
4107
+ # Deletes an endpoint group. See https://google.aip.dev/135.
3942
4108
  # @param [String] name
3943
- # Required. Name of the resource
4109
+ # Required. The endpoint group to delete.
3944
4110
  # @param [String] request_id
3945
- # Optional. An optional request ID to identify requests. Specify a unique
3946
- # request ID so that if you must retry your request, the server will know to
3947
- # ignore the request if it has already been completed. The server will guarantee
3948
- # that for at least 60 minutes after the first request. For example, consider a
3949
- # situation where you make an initial request and the request times out. If you
3950
- # make the request again with the same request ID, the server can check if
3951
- # original operation with the same request ID was received, and if so, will
3952
- # ignore the second request. This prevents clients from accidentally creating
3953
- # duplicate commitments. The request ID must be a valid UUID with the exception
3954
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4111
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4112
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4113
+ # 155 for more details.
3955
4114
  # @param [String] fields
3956
4115
  # Selector specifying which fields to include in a partial response.
3957
4116
  # @param [String] quota_user
@@ -3980,9 +4139,11 @@ module Google
3980
4139
  execute_or_queue_command(command, &block)
3981
4140
  end
3982
4141
 
3983
- # Gets details of a single InterceptEndpointGroup.
4142
+ # Gets a specific endpoint group. See https://google.aip.dev/131.
3984
4143
  # @param [String] name
3985
- # Required. Name of the resource
4144
+ # Required. The name of the endpoint group to retrieve. Format: projects/`
4145
+ # project`/locations/`location`/interceptEndpointGroups/`
4146
+ # intercept_endpoint_group`
3986
4147
  # @param [String] fields
3987
4148
  # Selector specifying which fields to include in a partial response.
3988
4149
  # @param [String] quota_user
@@ -4010,18 +4171,27 @@ module Google
4010
4171
  execute_or_queue_command(command, &block)
4011
4172
  end
4012
4173
 
4013
- # Lists InterceptEndpointGroups in a given project and location.
4174
+ # Lists endpoint groups in a given project and location. See https://google.aip.
4175
+ # dev/132.
4014
4176
  # @param [String] parent
4015
- # Required. Parent value for ListInterceptEndpointGroupsRequest
4177
+ # Required. The parent, which owns this collection of endpoint groups. Example: `
4178
+ # projects/123456789/locations/global`. See https://google.aip.dev/132 for more
4179
+ # details.
4016
4180
  # @param [String] filter
4017
- # Optional. Filtering results
4181
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
4182
+ # details.
4018
4183
  # @param [String] order_by
4019
- # Optional. Hint for how to order the results
4184
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
4185
+ # details.
4020
4186
  # @param [Fixnum] page_size
4021
4187
  # Optional. Requested page size. Server may return fewer items than requested.
4022
- # If unspecified, server will pick an appropriate default.
4188
+ # If unspecified, server will pick an appropriate default. See https://google.
4189
+ # aip.dev/158 for more details.
4023
4190
  # @param [String] page_token
4024
- # Optional. A token identifying a page of results the server should return.
4191
+ # Optional. A page token, received from a previous `ListInterceptEndpointGroups`
4192
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
4193
+ # parameters provided to `ListInterceptEndpointGroups` must match the call that
4194
+ # provided the page token. See https://google.aip.dev/158 for more details.
4025
4195
  # @param [String] fields
4026
4196
  # Selector specifying which fields to include in a partial response.
4027
4197
  # @param [String] quota_user
@@ -4053,27 +4223,20 @@ module Google
4053
4223
  execute_or_queue_command(command, &block)
4054
4224
  end
4055
4225
 
4056
- # Updates a single InterceptEndpointGroup.
4226
+ # Updates an endpoint group. See https://google.aip.dev/134.
4057
4227
  # @param [String] name
4058
- # Immutable. Identifier. The name of the InterceptEndpointGroup.
4228
+ # Immutable. Identifier. The resource name of this endpoint group, for example: `
4229
+ # projects/123456789/locations/global/interceptEndpointGroups/my-eg`. See https:/
4230
+ # /google.aip.dev/122 for more details.
4059
4231
  # @param [Google::Apis::NetworksecurityV1beta1::InterceptEndpointGroup] intercept_endpoint_group_object
4060
4232
  # @param [String] request_id
4061
- # Optional. An optional request ID to identify requests. Specify a unique
4062
- # request ID so that if you must retry your request, the server will know to
4063
- # ignore the request if it has already been completed. The server will guarantee
4064
- # that for at least 60 minutes since the first request. For example, consider a
4065
- # situation where you make an initial request and the request times out. If you
4066
- # make the request again with the same request ID, the server can check if
4067
- # original operation with the same request ID was received, and if so, will
4068
- # ignore the second request. This prevents clients from accidentally creating
4069
- # duplicate commitments. The request ID must be a valid UUID with the exception
4070
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4233
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4234
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4235
+ # 155 for more details.
4071
4236
  # @param [String] update_mask
4072
- # Required. Field mask is used to specify the fields to be overwritten in the
4073
- # InterceptEndpointGroup resource by the update. The fields specified in the
4074
- # update_mask are relative to the resource, not the full request. A field will
4075
- # be overwritten if it is in the mask. If the user does not provide a mask then
4076
- # all fields will be overwritten.
4237
+ # Optional. The list of fields to update. Fields are specified relative to the
4238
+ # endpoint group (e.g. `description`; *not* `intercept_endpoint_group.
4239
+ # description`). See https://google.aip.dev/161 for more details.
4077
4240
  # @param [String] fields
4078
4241
  # Selector specifying which fields to include in a partial response.
4079
4242
  # @param [String] quota_user
@@ -4105,25 +4268,19 @@ module Google
4105
4268
  execute_or_queue_command(command, &block)
4106
4269
  end
4107
4270
 
4108
- # Creates a new MirroringDeploymentGroup in a given project and location.
4271
+ # Creates a deployment group in a given project and location. See https://google.
4272
+ # aip.dev/133.
4109
4273
  # @param [String] parent
4110
- # Required. Value for parent.
4274
+ # Required. The parent resource where this deployment group will be created.
4275
+ # Format: projects/`project`/locations/`location`
4111
4276
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroup] mirroring_deployment_group_object
4112
4277
  # @param [String] mirroring_deployment_group_id
4113
- # Required. Id of the requesting object If auto-generating Id server-side,
4114
- # remove this field and mirroring_deployment_group_id from the method_signature
4115
- # of Create RPC
4278
+ # Required. The ID to use for the new deployment group, which will become the
4279
+ # final component of the deployment group's resource name.
4116
4280
  # @param [String] request_id
4117
- # Optional. An optional request ID to identify requests. Specify a unique
4118
- # request ID so that if you must retry your request, the server will know to
4119
- # ignore the request if it has already been completed. The server will guarantee
4120
- # that for at least 60 minutes since the first request. For example, consider a
4121
- # situation where you make an initial request and the request times out. If you
4122
- # make the request again with the same request ID, the server can check if
4123
- # original operation with the same request ID was received, and if so, will
4124
- # ignore the second request. This prevents clients from accidentally creating
4125
- # duplicate commitments. The request ID must be a valid UUID with the exception
4126
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4281
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4282
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4283
+ # 155 for more details.
4127
4284
  # @param [String] fields
4128
4285
  # Selector specifying which fields to include in a partial response.
4129
4286
  # @param [String] quota_user
@@ -4155,20 +4312,13 @@ module Google
4155
4312
  execute_or_queue_command(command, &block)
4156
4313
  end
4157
4314
 
4158
- # Deletes a single MirroringDeploymentGroup.
4315
+ # Deletes a deployment group. See https://google.aip.dev/135.
4159
4316
  # @param [String] name
4160
- # Required. Name of the resource
4317
+ # Required. The deployment group to delete.
4161
4318
  # @param [String] request_id
4162
- # Optional. An optional request ID to identify requests. Specify a unique
4163
- # request ID so that if you must retry your request, the server will know to
4164
- # ignore the request if it has already been completed. The server will guarantee
4165
- # that for at least 60 minutes after the first request. For example, consider a
4166
- # situation where you make an initial request and the request times out. If you
4167
- # make the request again with the same request ID, the server can check if
4168
- # original operation with the same request ID was received, and if so, will
4169
- # ignore the second request. This prevents clients from accidentally creating
4170
- # duplicate commitments. The request ID must be a valid UUID with the exception
4171
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4319
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4320
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4321
+ # 155 for more details.
4172
4322
  # @param [String] fields
4173
4323
  # Selector specifying which fields to include in a partial response.
4174
4324
  # @param [String] quota_user
@@ -4197,9 +4347,11 @@ module Google
4197
4347
  execute_or_queue_command(command, &block)
4198
4348
  end
4199
4349
 
4200
- # Gets details of a single MirroringDeploymentGroup.
4350
+ # Gets a specific deployment group. See https://google.aip.dev/131.
4201
4351
  # @param [String] name
4202
- # Required. Name of the resource
4352
+ # Required. The name of the deployment group to retrieve. Format: projects/`
4353
+ # project`/locations/`location`/mirroringDeploymentGroups/`
4354
+ # mirroring_deployment_group`
4203
4355
  # @param [String] fields
4204
4356
  # Selector specifying which fields to include in a partial response.
4205
4357
  # @param [String] quota_user
@@ -4227,18 +4379,28 @@ module Google
4227
4379
  execute_or_queue_command(command, &block)
4228
4380
  end
4229
4381
 
4230
- # Lists MirroringDeploymentGroups in a given project and location.
4382
+ # Lists deployment groups in a given project and location. See https://google.
4383
+ # aip.dev/132.
4231
4384
  # @param [String] parent
4232
- # Required. Parent value for ListMirroringDeploymentGroupsRequest
4385
+ # Required. The parent, which owns this collection of deployment groups. Example:
4386
+ # `projects/123456789/locations/global`. See https://google.aip.dev/132 for
4387
+ # more details.
4233
4388
  # @param [String] filter
4234
- # Optional. Filtering results
4389
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
4390
+ # details.
4235
4391
  # @param [String] order_by
4236
- # Optional. Hint for how to order the results
4392
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
4393
+ # details.
4237
4394
  # @param [Fixnum] page_size
4238
4395
  # Optional. Requested page size. Server may return fewer items than requested.
4239
- # If unspecified, server will pick an appropriate default.
4396
+ # If unspecified, server will pick an appropriate default. See https://google.
4397
+ # aip.dev/158 for more details.
4240
4398
  # @param [String] page_token
4241
- # Optional. A token identifying a page of results the server should return.
4399
+ # Optional. A page token, received from a previous `
4400
+ # ListMirroringDeploymentGroups` call. Provide this to retrieve the subsequent
4401
+ # page. When paginating, all other parameters provided to `
4402
+ # ListMirroringDeploymentGroups` must match the call that provided the page
4403
+ # token. See https://google.aip.dev/158 for more details.
4242
4404
  # @param [String] fields
4243
4405
  # Selector specifying which fields to include in a partial response.
4244
4406
  # @param [String] quota_user
@@ -4270,27 +4432,20 @@ module Google
4270
4432
  execute_or_queue_command(command, &block)
4271
4433
  end
4272
4434
 
4273
- # Updates a single MirroringDeploymentGroup.
4435
+ # Updates a deployment group. See https://google.aip.dev/134.
4274
4436
  # @param [String] name
4275
- # Immutable. Identifier. Then name of the MirroringDeploymentGroup.
4437
+ # Immutable. Identifier. The resource name of this deployment group, for example:
4438
+ # `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See
4439
+ # https://google.aip.dev/122 for more details.
4276
4440
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringDeploymentGroup] mirroring_deployment_group_object
4277
4441
  # @param [String] request_id
4278
- # Optional. An optional request ID to identify requests. Specify a unique
4279
- # request ID so that if you must retry your request, the server will know to
4280
- # ignore the request if it has already been completed. The server will guarantee
4281
- # that for at least 60 minutes since the first request. For example, consider a
4282
- # situation where you make an initial request and the request times out. If you
4283
- # make the request again with the same request ID, the server can check if
4284
- # original operation with the same request ID was received, and if so, will
4285
- # ignore the second request. This prevents clients from accidentally creating
4286
- # duplicate commitments. The request ID must be a valid UUID with the exception
4287
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4442
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4443
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4444
+ # 155 for more details.
4288
4445
  # @param [String] update_mask
4289
- # Required. Field mask is used to specify the fields to be overwritten in the
4290
- # MirroringDeploymentGroup resource by the update. The fields specified in the
4291
- # update_mask are relative to the resource, not the full request. A field will
4292
- # be overwritten if it is in the mask. If the user does not provide a mask then
4293
- # all fields will be overwritten.
4446
+ # Optional. The list of fields to update. Fields are specified relative to the
4447
+ # deployment group (e.g. `description`; *not* `mirroring_deployment_group.
4448
+ # description`). See https://google.aip.dev/161 for more details.
4294
4449
  # @param [String] fields
4295
4450
  # Selector specifying which fields to include in a partial response.
4296
4451
  # @param [String] quota_user
@@ -4322,25 +4477,19 @@ module Google
4322
4477
  execute_or_queue_command(command, &block)
4323
4478
  end
4324
4479
 
4325
- # Creates a new MirroringDeployment in a given project and location.
4480
+ # Creates a deployment in a given project and location. See https://google.aip.
4481
+ # dev/133.
4326
4482
  # @param [String] parent
4327
- # Required. Value for parent.
4483
+ # Required. The parent resource where this deployment will be created. Format:
4484
+ # projects/`project`/locations/`location`
4328
4485
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringDeployment] mirroring_deployment_object
4329
4486
  # @param [String] mirroring_deployment_id
4330
- # Required. Id of the requesting object If auto-generating Id server-side,
4331
- # remove this field and mirroring_deployment_id from the method_signature of
4332
- # Create RPC
4487
+ # Required. The ID to use for the new deployment, which will become the final
4488
+ # component of the deployment's resource name.
4333
4489
  # @param [String] request_id
4334
- # Optional. An optional request ID to identify requests. Specify a unique
4335
- # request ID so that if you must retry your request, the server will know to
4336
- # ignore the request if it has already been completed. The server will guarantee
4337
- # that for at least 60 minutes since the first request. For example, consider a
4338
- # situation where you make an initial request and the request times out. If you
4339
- # make the request again with the same request ID, the server can check if
4340
- # original operation with the same request ID was received, and if so, will
4341
- # ignore the second request. This prevents clients from accidentally creating
4342
- # duplicate commitments. The request ID must be a valid UUID with the exception
4343
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4490
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4491
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4492
+ # 155 for more details.
4344
4493
  # @param [String] fields
4345
4494
  # Selector specifying which fields to include in a partial response.
4346
4495
  # @param [String] quota_user
@@ -4372,20 +4521,13 @@ module Google
4372
4521
  execute_or_queue_command(command, &block)
4373
4522
  end
4374
4523
 
4375
- # Deletes a single MirroringDeployment.
4524
+ # Deletes a deployment. See https://google.aip.dev/135.
4376
4525
  # @param [String] name
4377
4526
  # Required. Name of the resource
4378
4527
  # @param [String] request_id
4379
- # Optional. An optional request ID to identify requests. Specify a unique
4380
- # request ID so that if you must retry your request, the server will know to
4381
- # ignore the request if it has already been completed. The server will guarantee
4382
- # that for at least 60 minutes after the first request. For example, consider a
4383
- # situation where you make an initial request and the request times out. If you
4384
- # make the request again with the same request ID, the server can check if
4385
- # original operation with the same request ID was received, and if so, will
4386
- # ignore the second request. This prevents clients from accidentally creating
4387
- # duplicate commitments. The request ID must be a valid UUID with the exception
4388
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4528
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4529
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4530
+ # 155 for more details.
4389
4531
  # @param [String] fields
4390
4532
  # Selector specifying which fields to include in a partial response.
4391
4533
  # @param [String] quota_user
@@ -4414,9 +4556,10 @@ module Google
4414
4556
  execute_or_queue_command(command, &block)
4415
4557
  end
4416
4558
 
4417
- # Gets details of a single MirroringDeployment.
4559
+ # Gets a specific deployment. See https://google.aip.dev/131.
4418
4560
  # @param [String] name
4419
- # Required. Name of the resource
4561
+ # Required. The name of the deployment to retrieve. Format: projects/`project`/
4562
+ # locations/`location`/mirroringDeployments/`mirroring_deployment`
4420
4563
  # @param [String] fields
4421
4564
  # Selector specifying which fields to include in a partial response.
4422
4565
  # @param [String] quota_user
@@ -4444,18 +4587,27 @@ module Google
4444
4587
  execute_or_queue_command(command, &block)
4445
4588
  end
4446
4589
 
4447
- # Lists MirroringDeployments in a given project and location.
4590
+ # Lists deployments in a given project and location. See https://google.aip.dev/
4591
+ # 132.
4448
4592
  # @param [String] parent
4449
- # Required. Parent value for ListMirroringDeploymentsRequest
4593
+ # Required. The parent, which owns this collection of deployments. Example: `
4594
+ # projects/123456789/locations/us-central1-a`. See https://google.aip.dev/132
4595
+ # for more details.
4450
4596
  # @param [String] filter
4451
- # Optional. Filtering results
4597
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
4598
+ # details.
4452
4599
  # @param [String] order_by
4453
- # Optional. Hint for how to order the results
4600
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
4601
+ # details.
4454
4602
  # @param [Fixnum] page_size
4455
4603
  # Optional. Requested page size. Server may return fewer items than requested.
4456
- # If unspecified, server will pick an appropriate default.
4604
+ # If unspecified, server will pick an appropriate default. See https://google.
4605
+ # aip.dev/158 for more details.
4457
4606
  # @param [String] page_token
4458
- # Optional. A token identifying a page of results the server should return.
4607
+ # Optional. A page token, received from a previous `ListMirroringDeployments`
4608
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
4609
+ # parameters provided to `ListMirroringDeployments` must match the call that
4610
+ # provided the page token. See https://google.aip.dev/158 for more details.
4459
4611
  # @param [String] fields
4460
4612
  # Selector specifying which fields to include in a partial response.
4461
4613
  # @param [String] quota_user
@@ -4487,27 +4639,20 @@ module Google
4487
4639
  execute_or_queue_command(command, &block)
4488
4640
  end
4489
4641
 
4490
- # Updates a single MirroringDeployment.
4642
+ # Updates a deployment. See https://google.aip.dev/134.
4491
4643
  # @param [String] name
4492
- # Immutable. Identifier. The name of the MirroringDeployment.
4644
+ # Immutable. Identifier. The resource name of this deployment, for example: `
4645
+ # projects/123456789/locations/us-central1-a/mirroringDeployments/my-dep`. See
4646
+ # https://google.aip.dev/122 for more details.
4493
4647
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringDeployment] mirroring_deployment_object
4494
4648
  # @param [String] request_id
4495
- # Optional. An optional request ID to identify requests. Specify a unique
4496
- # request ID so that if you must retry your request, the server will know to
4497
- # ignore the request if it has already been completed. The server will guarantee
4498
- # that for at least 60 minutes since the first request. For example, consider a
4499
- # situation where you make an initial request and the request times out. If you
4500
- # make the request again with the same request ID, the server can check if
4501
- # original operation with the same request ID was received, and if so, will
4502
- # ignore the second request. This prevents clients from accidentally creating
4503
- # duplicate commitments. The request ID must be a valid UUID with the exception
4504
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4649
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4650
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4651
+ # 155 for more details.
4505
4652
  # @param [String] update_mask
4506
- # Required. Field mask is used to specify the fields to be overwritten in the
4507
- # MirroringDeployment resource by the update. The fields specified in the
4508
- # update_mask are relative to the resource, not the full request. A field will
4509
- # be overwritten if it is in the mask. If the user does not provide a mask then
4510
- # all fields will be overwritten.
4653
+ # Optional. The list of fields to update. Fields are specified relative to the
4654
+ # deployment (e.g. `description`; *not* `mirroring_deployment.description`). See
4655
+ # https://google.aip.dev/161 for more details.
4511
4656
  # @param [String] fields
4512
4657
  # Selector specifying which fields to include in a partial response.
4513
4658
  # @param [String] quota_user
@@ -4539,26 +4684,20 @@ module Google
4539
4684
  execute_or_queue_command(command, &block)
4540
4685
  end
4541
4686
 
4542
- # Creates a new MirroringEndpointGroupAssociation in a given project and
4543
- # location.
4687
+ # Creates an association in a given project and location. See https://google.aip.
4688
+ # dev/133.
4544
4689
  # @param [String] parent
4545
- # Required. Value for parent.
4690
+ # Required. The parent resource where this association will be created. Format:
4691
+ # projects/`project`/locations/`location`
4546
4692
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociation] mirroring_endpoint_group_association_object
4547
4693
  # @param [String] mirroring_endpoint_group_association_id
4548
- # Optional. Id of the requesting object If auto-generating Id server-side,
4549
- # remove this field and mirroring_endpoint_group_association_id from the
4550
- # method_signature of Create RPC
4694
+ # Optional. The ID to use for the new association, which will become the final
4695
+ # component of the endpoint group's resource name. If not provided, the server
4696
+ # will generate a unique ID.
4551
4697
  # @param [String] request_id
4552
- # Optional. An optional request ID to identify requests. Specify a unique
4553
- # request ID so that if you must retry your request, the server will know to
4554
- # ignore the request if it has already been completed. The server will guarantee
4555
- # that for at least 60 minutes since the first request. For example, consider a
4556
- # situation where you make an initial request and the request times out. If you
4557
- # make the request again with the same request ID, the server can check if
4558
- # original operation with the same request ID was received, and if so, will
4559
- # ignore the second request. This prevents clients from accidentally creating
4560
- # duplicate commitments. The request ID must be a valid UUID with the exception
4561
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4698
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4699
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4700
+ # 155 for more details.
4562
4701
  # @param [String] fields
4563
4702
  # Selector specifying which fields to include in a partial response.
4564
4703
  # @param [String] quota_user
@@ -4590,20 +4729,13 @@ module Google
4590
4729
  execute_or_queue_command(command, &block)
4591
4730
  end
4592
4731
 
4593
- # Deletes a single MirroringEndpointGroupAssociation.
4732
+ # Deletes an association. See https://google.aip.dev/135.
4594
4733
  # @param [String] name
4595
- # Required. Name of the resource
4734
+ # Required. The association to delete.
4596
4735
  # @param [String] request_id
4597
- # Optional. An optional request ID to identify requests. Specify a unique
4598
- # request ID so that if you must retry your request, the server will know to
4599
- # ignore the request if it has already been completed. The server will guarantee
4600
- # that for at least 60 minutes after the first request. For example, consider a
4601
- # situation where you make an initial request and the request times out. If you
4602
- # make the request again with the same request ID, the server can check if
4603
- # original operation with the same request ID was received, and if so, will
4604
- # ignore the second request. This prevents clients from accidentally creating
4605
- # duplicate commitments. The request ID must be a valid UUID with the exception
4606
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4736
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4737
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4738
+ # 155 for more details.
4607
4739
  # @param [String] fields
4608
4740
  # Selector specifying which fields to include in a partial response.
4609
4741
  # @param [String] quota_user
@@ -4632,9 +4764,11 @@ module Google
4632
4764
  execute_or_queue_command(command, &block)
4633
4765
  end
4634
4766
 
4635
- # Gets details of a single MirroringEndpointGroupAssociation.
4767
+ # Gets a specific association. See https://google.aip.dev/131.
4636
4768
  # @param [String] name
4637
- # Required. Name of the resource
4769
+ # Required. The name of the association to retrieve. Format: projects/`project`/
4770
+ # locations/`location`/mirroringEndpointGroupAssociations/`
4771
+ # mirroring_endpoint_group_association`
4638
4772
  # @param [String] fields
4639
4773
  # Selector specifying which fields to include in a partial response.
4640
4774
  # @param [String] quota_user
@@ -4662,18 +4796,27 @@ module Google
4662
4796
  execute_or_queue_command(command, &block)
4663
4797
  end
4664
4798
 
4665
- # Lists MirroringEndpointGroupAssociations in a given project and location.
4799
+ # Lists associations in a given project and location. See https://google.aip.dev/
4800
+ # 132.
4666
4801
  # @param [String] parent
4667
- # Required. Parent value for ListMirroringEndpointGroupAssociationsRequest
4802
+ # Required. The parent, which owns this collection of associations. Example: `
4803
+ # projects/123456789/locations/global`. See https://google.aip.dev/132 for more
4804
+ # details.
4668
4805
  # @param [String] filter
4669
- # Optional. Filtering results
4806
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
4807
+ # details.
4670
4808
  # @param [String] order_by
4671
- # Optional. Hint for how to order the results
4809
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
4810
+ # details.
4672
4811
  # @param [Fixnum] page_size
4673
4812
  # Optional. Requested page size. Server may return fewer items than requested.
4674
- # If unspecified, server will pick an appropriate default.
4813
+ # If unspecified, server will pick an appropriate default. See https://google.
4814
+ # aip.dev/158 for more details.
4675
4815
  # @param [String] page_token
4676
- # Optional. A token identifying a page of results the server should return.
4816
+ # Optional. A page token, received from a previous `ListMirroringEndpointGroups`
4817
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
4818
+ # parameters provided to `ListMirroringEndpointGroups` must match the call that
4819
+ # provided the page token. See https://google.aip.dev/158 for more details.
4677
4820
  # @param [String] fields
4678
4821
  # Selector specifying which fields to include in a partial response.
4679
4822
  # @param [String] quota_user
@@ -4705,27 +4848,21 @@ module Google
4705
4848
  execute_or_queue_command(command, &block)
4706
4849
  end
4707
4850
 
4708
- # Updates a single MirroringEndpointGroupAssociation.
4851
+ # Updates an association. See https://google.aip.dev/134.
4709
4852
  # @param [String] name
4710
- # Immutable. Identifier. The name of the MirroringEndpointGroupAssociation.
4853
+ # Immutable. Identifier. The resource name of this endpoint group association,
4854
+ # for example: `projects/123456789/locations/global/
4855
+ # mirroringEndpointGroupAssociations/my-eg-association`. See https://google.aip.
4856
+ # dev/122 for more details.
4711
4857
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroupAssociation] mirroring_endpoint_group_association_object
4712
4858
  # @param [String] request_id
4713
- # Optional. An optional request ID to identify requests. Specify a unique
4714
- # request ID so that if you must retry your request, the server will know to
4715
- # ignore the request if it has already been completed. The server will guarantee
4716
- # that for at least 60 minutes since the first request. For example, consider a
4717
- # situation where you make an initial request and the request times out. If you
4718
- # make the request again with the same request ID, the server can check if
4719
- # original operation with the same request ID was received, and if so, will
4720
- # ignore the second request. This prevents clients from accidentally creating
4721
- # duplicate commitments. The request ID must be a valid UUID with the exception
4722
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4859
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4860
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4861
+ # 155 for more details.
4723
4862
  # @param [String] update_mask
4724
- # Required. Field mask is used to specify the fields to be overwritten in the
4725
- # MirroringEndpointGroupAssociation resource by the update. The fields specified
4726
- # in the update_mask are relative to the resource, not the full request. A field
4727
- # will be overwritten if it is in the mask. If the user does not provide a mask
4728
- # then all fields will be overwritten.
4863
+ # Optional. The list of fields to update. Fields are specified relative to the
4864
+ # association (e.g. `description`; *not* `mirroring_endpoint_group_association.
4865
+ # description`). See https://google.aip.dev/161 for more details.
4729
4866
  # @param [String] fields
4730
4867
  # Selector specifying which fields to include in a partial response.
4731
4868
  # @param [String] quota_user
@@ -4757,25 +4894,19 @@ module Google
4757
4894
  execute_or_queue_command(command, &block)
4758
4895
  end
4759
4896
 
4760
- # Creates a new MirroringEndpointGroup in a given project and location.
4897
+ # Creates an endpoint group in a given project and location. See https://google.
4898
+ # aip.dev/133.
4761
4899
  # @param [String] parent
4762
- # Required. Value for parent.
4900
+ # Required. The parent resource where this endpoint group will be created.
4901
+ # Format: projects/`project`/locations/`location`
4763
4902
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroup] mirroring_endpoint_group_object
4764
4903
  # @param [String] mirroring_endpoint_group_id
4765
- # Required. Id of the requesting object If auto-generating Id server-side,
4766
- # remove this field and mirroring_endpoint_group_id from the method_signature of
4767
- # Create RPC
4904
+ # Required. The ID to use for the endpoint group, which will become the final
4905
+ # component of the endpoint group's resource name.
4768
4906
  # @param [String] request_id
4769
- # Optional. An optional request ID to identify requests. Specify a unique
4770
- # request ID so that if you must retry your request, the server will know to
4771
- # ignore the request if it has already been completed. The server will guarantee
4772
- # that for at least 60 minutes since the first request. For example, consider a
4773
- # situation where you make an initial request and the request times out. If you
4774
- # make the request again with the same request ID, the server can check if
4775
- # original operation with the same request ID was received, and if so, will
4776
- # ignore the second request. This prevents clients from accidentally creating
4777
- # duplicate commitments. The request ID must be a valid UUID with the exception
4778
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4907
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4908
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4909
+ # 155 for more details.
4779
4910
  # @param [String] fields
4780
4911
  # Selector specifying which fields to include in a partial response.
4781
4912
  # @param [String] quota_user
@@ -4807,20 +4938,13 @@ module Google
4807
4938
  execute_or_queue_command(command, &block)
4808
4939
  end
4809
4940
 
4810
- # Deletes a single MirroringEndpointGroup.
4941
+ # Deletes an endpoint group. See https://google.aip.dev/135.
4811
4942
  # @param [String] name
4812
- # Required. Name of the resource
4943
+ # Required. The endpoint group to delete.
4813
4944
  # @param [String] request_id
4814
- # Optional. An optional request ID to identify requests. Specify a unique
4815
- # request ID so that if you must retry your request, the server will know to
4816
- # ignore the request if it has already been completed. The server will guarantee
4817
- # that for at least 60 minutes after the first request. For example, consider a
4818
- # situation where you make an initial request and the request times out. If you
4819
- # make the request again with the same request ID, the server can check if
4820
- # original operation with the same request ID was received, and if so, will
4821
- # ignore the second request. This prevents clients from accidentally creating
4822
- # duplicate commitments. The request ID must be a valid UUID with the exception
4823
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
4945
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
4946
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
4947
+ # 155 for more details.
4824
4948
  # @param [String] fields
4825
4949
  # Selector specifying which fields to include in a partial response.
4826
4950
  # @param [String] quota_user
@@ -4849,9 +4973,11 @@ module Google
4849
4973
  execute_or_queue_command(command, &block)
4850
4974
  end
4851
4975
 
4852
- # Gets details of a single MirroringEndpointGroup.
4976
+ # Gets a specific endpoint group. See https://google.aip.dev/131.
4853
4977
  # @param [String] name
4854
- # Required. Name of the resource
4978
+ # Required. The name of the endpoint group to retrieve. Format: projects/`
4979
+ # project`/locations/`location`/mirroringEndpointGroups/`
4980
+ # mirroring_endpoint_group`
4855
4981
  # @param [String] fields
4856
4982
  # Selector specifying which fields to include in a partial response.
4857
4983
  # @param [String] quota_user
@@ -4879,18 +5005,27 @@ module Google
4879
5005
  execute_or_queue_command(command, &block)
4880
5006
  end
4881
5007
 
4882
- # Lists MirroringEndpointGroups in a given project and location.
5008
+ # Lists endpoint groups in a given project and location. See https://google.aip.
5009
+ # dev/132.
4883
5010
  # @param [String] parent
4884
- # Required. Parent value for ListMirroringEndpointGroupsRequest
5011
+ # Required. The parent, which owns this collection of endpoint groups. Example: `
5012
+ # projects/123456789/locations/global`. See https://google.aip.dev/132 for more
5013
+ # details.
4885
5014
  # @param [String] filter
4886
- # Optional. Filtering results
5015
+ # Optional. Filter expression. See https://google.aip.dev/160#filtering for more
5016
+ # details.
4887
5017
  # @param [String] order_by
4888
- # Optional. Hint for how to order the results
5018
+ # Optional. Sort expression. See https://google.aip.dev/132#ordering for more
5019
+ # details.
4889
5020
  # @param [Fixnum] page_size
4890
5021
  # Optional. Requested page size. Server may return fewer items than requested.
4891
- # If unspecified, server will pick an appropriate default.
5022
+ # If unspecified, server will pick an appropriate default. See https://google.
5023
+ # aip.dev/158 for more details.
4892
5024
  # @param [String] page_token
4893
- # Optional. A token identifying a page of results the server should return.
5025
+ # Optional. A page token, received from a previous `ListMirroringEndpointGroups`
5026
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
5027
+ # parameters provided to `ListMirroringEndpointGroups` must match the call that
5028
+ # provided the page token. See https://google.aip.dev/158 for more details.
4894
5029
  # @param [String] fields
4895
5030
  # Selector specifying which fields to include in a partial response.
4896
5031
  # @param [String] quota_user
@@ -4922,27 +5057,20 @@ module Google
4922
5057
  execute_or_queue_command(command, &block)
4923
5058
  end
4924
5059
 
4925
- # Updates a single MirroringEndpointGroup.
5060
+ # Updates an endpoint group. See https://google.aip.dev/134.
4926
5061
  # @param [String] name
4927
- # Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup.
5062
+ # Immutable. Identifier. The resource name of this endpoint group, for example: `
5063
+ # projects/123456789/locations/global/mirroringEndpointGroups/my-eg`. See https:/
5064
+ # /google.aip.dev/122 for more details.
4928
5065
  # @param [Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroup] mirroring_endpoint_group_object
4929
5066
  # @param [String] request_id
4930
- # Optional. An optional request ID to identify requests. Specify a unique
4931
- # request ID so that if you must retry your request, the server will know to
4932
- # ignore the request if it has already been completed. The server will guarantee
4933
- # that for at least 60 minutes since the first request. For example, consider a
4934
- # situation where you make an initial request and the request times out. If you
4935
- # make the request again with the same request ID, the server can check if
4936
- # original operation with the same request ID was received, and if so, will
4937
- # ignore the second request. This prevents clients from accidentally creating
4938
- # duplicate commitments. The request ID must be a valid UUID with the exception
4939
- # that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
5067
+ # Optional. A unique identifier for this request. Must be a UUID4. This request
5068
+ # is only idempotent if a `request_id` is provided. See https://google.aip.dev/
5069
+ # 155 for more details.
4940
5070
  # @param [String] update_mask
4941
- # Required. Field mask is used to specify the fields to be overwritten in the
4942
- # MirroringEndpointGroup resource by the update. The fields specified in the
4943
- # update_mask are relative to the resource, not the full request. A field will
4944
- # be overwritten if it is in the mask. If the user does not provide a mask then
4945
- # all fields will be overwritten.
5071
+ # Optional. The list of fields to update. Fields are specified relative to the
5072
+ # endpoint group (e.g. `description`; *not* `mirroring_endpoint_group.
5073
+ # description`). See https://google.aip.dev/161 for more details.
4946
5074
  # @param [String] fields
4947
5075
  # Selector specifying which fields to include in a partial response.
4948
5076
  # @param [String] quota_user