google-apis-artifactregistry_v1beta1 0.10.0 → 0.11.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: '08ca27152e81c171a875dddb17174a0b007ffeded05ebe6d9d5c982c914f9867'
4
- data.tar.gz: 4baf5f4321a4f4bf16c173b1c0e658121d207548aadc48338cf422613174e3b4
3
+ metadata.gz: f6af1bac83ad04ed4002ea5266c7f351c1d6d58455fd993ce80604f8efcee492
4
+ data.tar.gz: 5936ad60f95d333f4781b387a802f29f9c41abbd45fac14c7b3af4463ba75b7b
5
5
  SHA512:
6
- metadata.gz: e70d5036f8bc9aa3eafe2dc4feab912bf020a97e7c48cc9996ae9de7ba934607bf19ae2f872da02cf46df3e506962d62787ecc2d29a44fa83484103f1f3958c5
7
- data.tar.gz: 87183608036a6c9566c300ed3fd069cb5d743d5b2ce0ae6204b7fd3b93f4fc51ea821c9853861e861e1f25c8adf00fa7aab179ace68291766c2529fbbf107d8c
6
+ metadata.gz: 5654fd31c0967ad04b58882b385258ce8bcf059c14f397fa11d49f1a573ed10e6aedc3d51fc62d89a7978a1afdfe26f2361cda4e1b1ab790000e32e697dc1768
7
+ data.tar.gz: aa999f262656d36a875ebde63d8bed4ebef711ef5a39312b3e3d8616b561f6506dded790fdde6d8562b3ffbf740a121bffad7533f81c08dc45d811b3b9fb9037
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-artifactregistry_v1beta1
2
2
 
3
+ ### v0.11.0 (2021-09-01)
4
+
5
+ * Regenerated from discovery document revision 20210817
6
+
3
7
  ### v0.10.0 (2021-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20210629
@@ -506,31 +506,6 @@ module Google
506
506
  end
507
507
  end
508
508
 
509
- # The response message for Operations.ListOperations.
510
- class ListOperationsResponse
511
- include Google::Apis::Core::Hashable
512
-
513
- # The standard List next-page token.
514
- # Corresponds to the JSON property `nextPageToken`
515
- # @return [String]
516
- attr_accessor :next_page_token
517
-
518
- # A list of operations that matches the specified filter in the request.
519
- # Corresponds to the JSON property `operations`
520
- # @return [Array<Google::Apis::ArtifactregistryV1beta1::Operation>]
521
- attr_accessor :operations
522
-
523
- def initialize(**args)
524
- update!(**args)
525
- end
526
-
527
- # Update properties of this object
528
- def update!(**args)
529
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
530
- @operations = args[:operations] if args.key?(:operations)
531
- end
532
- end
533
-
534
509
  # The response from listing packages.
535
510
  class ListPackagesResponse
536
511
  include Google::Apis::Core::Hashable
@@ -808,7 +783,7 @@ module Google
808
783
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
809
784
  # roles/resourcemanager.organizationViewer condition: title: expirable access
810
785
  # description: Does not grant access after Sep 2020 expression: request.time <
811
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
786
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
812
787
  # description of IAM and its features, see the [IAM documentation](https://cloud.
813
788
  # google.com/iam/docs/).
814
789
  class Policy
@@ -958,7 +933,7 @@ module Google
958
933
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
959
934
  # roles/resourcemanager.organizationViewer condition: title: expirable access
960
935
  # description: Does not grant access after Sep 2020 expression: request.time <
961
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
936
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
962
937
  # description of IAM and its features, see the [IAM documentation](https://cloud.
963
938
  # google.com/iam/docs/).
964
939
  # Corresponds to the JSON property `policy`
@@ -1020,8 +995,9 @@ module Google
1020
995
  include Google::Apis::Core::Hashable
1021
996
 
1022
997
  # The name of the tag, for example: "projects/p1/locations/us-central1/
1023
- # repositories/repo1/packages/pkg1/tags/tag1". If the package or tag ID parts
1024
- # contain slashes, the slashes are escaped.
998
+ # repositories/repo1/packages/pkg1/tags/tag1". If the package part contains
999
+ # slashes, the slashes are escaped. The tag part can only have characters in [a-
1000
+ # zA-Z0-9\-._~:@], anything else must be URL encoded.
1025
1001
  # Corresponds to the JSON property `name`
1026
1002
  # @return [String]
1027
1003
  attr_accessor :name
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ArtifactregistryV1beta1
18
18
  # Version of the google-apis-artifactregistry_v1beta1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210629"
25
+ REVISION = "20210817"
26
26
  end
27
27
  end
28
28
  end
@@ -106,12 +106,6 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
- class ListOperationsResponse
110
- class Representation < Google::Apis::Core::JsonRepresentation; end
111
-
112
- include Google::Apis::Core::JsonObjectSupport
113
- end
114
-
115
109
  class ListPackagesResponse
116
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
111
 
@@ -365,15 +359,6 @@ module Google
365
359
  end
366
360
  end
367
361
 
368
- class ListOperationsResponse
369
- # @private
370
- class Representation < Google::Apis::Core::JsonRepresentation
371
- property :next_page_token, as: 'nextPageToken'
372
- collection :operations, as: 'operations', class: Google::Apis::ArtifactregistryV1beta1::Operation, decorator: Google::Apis::ArtifactregistryV1beta1::Operation::Representation
373
-
374
- end
375
- end
376
-
377
362
  class ListPackagesResponse
378
363
  # @private
379
364
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -154,52 +154,6 @@ module Google
154
154
  execute_or_queue_command(command, &block)
155
155
  end
156
156
 
157
- # Lists operations that match the specified filter in the request. If the server
158
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
159
- # binding allows API services to override the binding to use different resource
160
- # name schemes, such as `users/*/operations`. To override the binding, API
161
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
162
- # service configuration. For backwards compatibility, the default name includes
163
- # the operations collection id, however overriding users must ensure the name
164
- # binding is the parent resource, without the operations collection id.
165
- # @param [String] name
166
- # The name of the operation's parent resource.
167
- # @param [String] filter
168
- # The standard list filter.
169
- # @param [Fixnum] page_size
170
- # The standard list page size.
171
- # @param [String] page_token
172
- # The standard list page token.
173
- # @param [String] fields
174
- # Selector specifying which fields to include in a partial response.
175
- # @param [String] quota_user
176
- # Available to use for quota purposes for server-side applications. Can be any
177
- # arbitrary string assigned to a user, but should not exceed 40 characters.
178
- # @param [Google::Apis::RequestOptions] options
179
- # Request-specific options
180
- #
181
- # @yield [result, err] Result & error if block supplied
182
- # @yieldparam result [Google::Apis::ArtifactregistryV1beta1::ListOperationsResponse] parsed result object
183
- # @yieldparam err [StandardError] error object if request failed
184
- #
185
- # @return [Google::Apis::ArtifactregistryV1beta1::ListOperationsResponse]
186
- #
187
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
188
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
189
- # @raise [Google::Apis::AuthorizationError] Authorization is required
190
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
191
- command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
192
- command.response_representation = Google::Apis::ArtifactregistryV1beta1::ListOperationsResponse::Representation
193
- command.response_class = Google::Apis::ArtifactregistryV1beta1::ListOperationsResponse
194
- command.params['name'] = name unless name.nil?
195
- command.query['filter'] = filter unless filter.nil?
196
- command.query['pageSize'] = page_size unless page_size.nil?
197
- command.query['pageToken'] = page_token unless page_token.nil?
198
- command.query['fields'] = fields unless fields.nil?
199
- command.query['quotaUser'] = quota_user unless quota_user.nil?
200
- execute_or_queue_command(command, &block)
201
- end
202
-
203
157
  # Creates a repository. The returned Operation will finish once the repository
204
158
  # has been created. Its response will be the created Repository.
205
159
  # @param [String] parent
@@ -795,8 +749,9 @@ module Google
795
749
  # Updates a tag.
796
750
  # @param [String] name
797
751
  # The name of the tag, for example: "projects/p1/locations/us-central1/
798
- # repositories/repo1/packages/pkg1/tags/tag1". If the package or tag ID parts
799
- # contain slashes, the slashes are escaped.
752
+ # repositories/repo1/packages/pkg1/tags/tag1". If the package part contains
753
+ # slashes, the slashes are escaped. The tag part can only have characters in [a-
754
+ # zA-Z0-9\-._~:@], anything else must be URL encoded.
800
755
  # @param [Google::Apis::ArtifactregistryV1beta1::Tag] tag_object
801
756
  # @param [String] update_mask
802
757
  # The update mask applies to the resource. For the `FieldMask` definition, see
@@ -30,10 +30,10 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta1'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
 
36
- # View your data across Google Cloud Platform services
36
+ # View your data across Google Cloud services and see the email address of your Google Account
37
37
  AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
38
38
  end
39
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-artifactregistry_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.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: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-09-06 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/master/generated/google-apis-artifactregistry_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-artifactregistry_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []