google-apis-apigeeregistry_v1 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f1d82348897b0cfdf02cb5de80d4430bbf5f9775ac587c13a352edede59c3c8
4
- data.tar.gz: 0e05291947ca9ffaa7cc759677dcf44d555c9df3eb45317b6c7a327efb048f60
3
+ metadata.gz: aad0117f85206984b2ab110ee7c1f4c8260288e86e557bf9cd218468d6d0bb97
4
+ data.tar.gz: e5a0e2477787512676042c1b975f4fe1c52ab4859e3dc3675288904573504437
5
5
  SHA512:
6
- metadata.gz: 8e57d3ea212b39d99dde3396dc72b17390164a5d6d00dc58b9b5df6e6bef1b88d1eb1172f22fc3d4968e5ef24cbd64ce9613d60f924a2333c1d2a60d496705f4
7
- data.tar.gz: ded3638094112faac586ce795493d44a2d47ac0b4376b104b48b1a77859e6deff05c22b4ba2614e04ea9f991bb044ac9a11f67c0dcc5ef33ac15b955b79ebfbc
6
+ metadata.gz: 2173bf3bf1a77da071b99ca54128ccc297056e878ff4427293fdfb710d3e8eb74f227103249a719e72f4de7789df109c8a8702fad14f95dd8819bf28610948ee
7
+ data.tar.gz: c3c6c133aa6c883ee8a60dc7c4e1d056327bf7705a8bed89a1e47a79556fa8ab5e6ae283c46e8ca9ee14a382f145bf6a5fa385740890adc9532849ea8a32d44a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-apigeeregistry_v1
2
2
 
3
+ ### v0.6.0 (2022-07-13)
4
+
5
+ * Regenerated from discovery document revision 20220706
6
+ * Regenerated using generator version 0.9.0
7
+
3
8
  ### v0.5.0 (2022-06-30)
4
9
 
5
10
  * Regenerated using generator version 0.8.0
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeregistryV1
18
18
  # Version of the google-apis-apigeeregistry_v1 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220509"
25
+ REVISION = "20220706"
26
26
  end
27
27
  end
28
28
  end
@@ -164,6 +164,9 @@ module Google
164
164
  # DeleteApi removes a specified API and all of the resources that it owns.
165
165
  # @param [String] name
166
166
  # Required. The name of the API to delete. Format: projects/*/locations/*/apis/*
167
+ # @param [Boolean] force
168
+ # If set to true, any child resources will also be deleted. (Otherwise, the
169
+ # request will only work if there are no child resources.)
167
170
  # @param [String] fields
168
171
  # Selector specifying which fields to include in a partial response.
169
172
  # @param [String] quota_user
@@ -181,11 +184,12 @@ module Google
181
184
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
182
185
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
183
186
  # @raise [Google::Apis::AuthorizationError] Authorization is required
184
- def delete_project_location_api(name, fields: nil, quota_user: nil, options: nil, &block)
187
+ def delete_project_location_api(name, force: nil, fields: nil, quota_user: nil, options: nil, &block)
185
188
  command = make_simple_command(:delete, 'v1/{+name}', options)
186
189
  command.response_representation = Google::Apis::ApigeeregistryV1::Empty::Representation
187
190
  command.response_class = Google::Apis::ApigeeregistryV1::Empty
188
191
  command.params['name'] = name unless name.nil?
192
+ command.query['force'] = force unless force.nil?
189
193
  command.query['fields'] = fields unless fields.nil?
190
194
  command.query['quotaUser'] = quota_user unless quota_user.nil?
191
195
  execute_or_queue_command(command, &block)
@@ -1471,6 +1475,9 @@ module Google
1471
1475
  # @param [String] name
1472
1476
  # Required. The name of the version to delete. Format: projects/*/locations/*/
1473
1477
  # apis/*/versions/*
1478
+ # @param [Boolean] force
1479
+ # If set to true, any child resources will also be deleted. (Otherwise, the
1480
+ # request will only work if there are no child resources.)
1474
1481
  # @param [String] fields
1475
1482
  # Selector specifying which fields to include in a partial response.
1476
1483
  # @param [String] quota_user
@@ -1488,11 +1495,12 @@ module Google
1488
1495
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1489
1496
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1490
1497
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1491
- def delete_project_location_api_version(name, fields: nil, quota_user: nil, options: nil, &block)
1498
+ def delete_project_location_api_version(name, force: nil, fields: nil, quota_user: nil, options: nil, &block)
1492
1499
  command = make_simple_command(:delete, 'v1/{+name}', options)
1493
1500
  command.response_representation = Google::Apis::ApigeeregistryV1::Empty::Representation
1494
1501
  command.response_class = Google::Apis::ApigeeregistryV1::Empty
1495
1502
  command.params['name'] = name unless name.nil?
1503
+ command.query['force'] = force unless force.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)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigeeregistry_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-04 00:00:00.000000000 Z
11
+ date: 2022-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigeeregistry_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigeeregistry_v1/v0.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigeeregistry_v1/v0.6.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigeeregistry_v1
63
63
  post_install_message:
64
64
  rdoc_options: []