google-apis-networkservices_v1 0.70.0 → 0.71.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 41e73705fac75a884ed8194b5ffb8eed3bdd96d35df16e0028e65d07080ec21c
|
|
4
|
+
data.tar.gz: 9769491ddeb35322dbaacde1e387c60e946c895b90b132b951a90bbe141eccf9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2179558992eb25ca33d07db63e06e3ac6e31cda1972986efa06e589ec821d364d81d7e0a25de7126b5f83d8c0f6a1e77138ef225b35fcc80f5c97f8d264b5e0
|
|
7
|
+
data.tar.gz: 3efa752c1a3b380d6f6fdc3dd8212aa217e802b618d190543630726d94217969067ff6e9ce46d2ec1b67edb917a3feec5cd2005cd5bc445ee52ac17871cac6a9
|
data/CHANGELOG.md
CHANGED
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkservicesV1
|
|
18
18
|
# Version of the google-apis-networkservices_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.71.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260424"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -82,8 +82,8 @@ module Google
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
# Lists information about the supported locations for this service. This method
|
|
85
|
-
# lists locations based on the resource scope provided in the
|
|
86
|
-
# ListLocationsRequest.name
|
|
85
|
+
# lists locations based on the resource scope provided in the
|
|
86
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
87
87
|
# the method lists the public locations available to all projects. * **Project-
|
|
88
88
|
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
89
89
|
# method lists locations visible to that specific project. This includes public,
|
|
@@ -94,8 +94,8 @@ module Google
|
|
|
94
94
|
# @param [String] name
|
|
95
95
|
# The resource that owns the locations collection, if applicable.
|
|
96
96
|
# @param [Array<String>, String] extra_location_types
|
|
97
|
-
# Optional. Do not use this field
|
|
98
|
-
#
|
|
97
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
98
|
+
# is primarily for internal usage.
|
|
99
99
|
# @param [String] filter
|
|
100
100
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
101
101
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -1345,6 +1345,8 @@ module Google
|
|
|
1345
1345
|
# @param [Google::Apis::NetworkservicesV1::HttpRoute] http_route_object
|
|
1346
1346
|
# @param [String] http_route_id
|
|
1347
1347
|
# Required. Short name of the HttpRoute resource to be created.
|
|
1348
|
+
# @param [String] request_id
|
|
1349
|
+
# Optional. Idempotent request UUID.
|
|
1348
1350
|
# @param [String] fields
|
|
1349
1351
|
# Selector specifying which fields to include in a partial response.
|
|
1350
1352
|
# @param [String] quota_user
|
|
@@ -1362,7 +1364,7 @@ module Google
|
|
|
1362
1364
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1363
1365
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1364
1366
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1365
|
-
def create_project_location_http_route(parent, http_route_object = nil, http_route_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1367
|
+
def create_project_location_http_route(parent, http_route_object = nil, http_route_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1366
1368
|
command = make_simple_command(:post, 'v1/{+parent}/httpRoutes', options)
|
|
1367
1369
|
command.request_representation = Google::Apis::NetworkservicesV1::HttpRoute::Representation
|
|
1368
1370
|
command.request_object = http_route_object
|
|
@@ -1370,6 +1372,7 @@ module Google
|
|
|
1370
1372
|
command.response_class = Google::Apis::NetworkservicesV1::Operation
|
|
1371
1373
|
command.params['parent'] = parent unless parent.nil?
|
|
1372
1374
|
command.query['httpRouteId'] = http_route_id unless http_route_id.nil?
|
|
1375
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
|
1373
1376
|
command.query['fields'] = fields unless fields.nil?
|
|
1374
1377
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1375
1378
|
execute_or_queue_command(command, &block)
|
|
@@ -1441,6 +1444,8 @@ module Google
|
|
|
1441
1444
|
# @param [String] parent
|
|
1442
1445
|
# Required. The project and location from which the HttpRoutes should be listed,
|
|
1443
1446
|
# specified in the format `projects/*/locations/*`.
|
|
1447
|
+
# @param [String] filter
|
|
1448
|
+
# Optional. Filter expression to restrict the list.
|
|
1444
1449
|
# @param [Fixnum] page_size
|
|
1445
1450
|
# Maximum number of HttpRoutes to return per call.
|
|
1446
1451
|
# @param [String] page_token
|
|
@@ -1468,11 +1473,12 @@ module Google
|
|
|
1468
1473
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1469
1474
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1470
1475
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1471
|
-
def list_project_location_http_routes(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1476
|
+
def list_project_location_http_routes(parent, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1472
1477
|
command = make_simple_command(:get, 'v1/{+parent}/httpRoutes', options)
|
|
1473
1478
|
command.response_representation = Google::Apis::NetworkservicesV1::ListHttpRoutesResponse::Representation
|
|
1474
1479
|
command.response_class = Google::Apis::NetworkservicesV1::ListHttpRoutesResponse
|
|
1475
1480
|
command.params['parent'] = parent unless parent.nil?
|
|
1481
|
+
command.query['filter'] = filter unless filter.nil?
|
|
1476
1482
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1477
1483
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1478
1484
|
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkservices_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.71.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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-networkservices_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.71.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|