google-apis-artifactregistry_v1 0.22.0 → 0.25.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/apis/artifactregistry_v1/classes.rb +47 -2
- data/lib/google/apis/artifactregistry_v1/gem_version.rb +2 -2
- data/lib/google/apis/artifactregistry_v1/representations.rb +37 -0
- data/lib/google/apis/artifactregistry_v1/service.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1ebd60c6f210d4780b5741814e399fb3989b1d753bc5683540f7a7d3e02fab4
|
4
|
+
data.tar.gz: 225b73f61051a6f7ecc17ec527dcaf38ca5775d0fb98da8fc25001b8feb4e098
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f07f7c6196d3eb9bbc9d1d7216d3f184f7c19a77cc3b857f51e5ac23ea3a1a0c6c4775647c81bde0db1720a343abf52028ee02030a346f12c23ee018fdfb21c
|
7
|
+
data.tar.gz: baaa0e77e8c9b2eb844b6381c41ab722ceae65ed40b9d15cb26f1aa547bab3e2f41f6bad7d5c53038bf38290dec4c5f9e2bf892afee5a5e528d22955ff0c0bdb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-artifactregistry_v1
|
2
2
|
|
3
|
+
### v0.25.0 (2022-05-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220503
|
6
|
+
|
7
|
+
### v0.24.0 (2022-04-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220415
|
10
|
+
|
11
|
+
### v0.23.0 (2022-04-06)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220401
|
14
|
+
|
3
15
|
### v0.22.0 (2022-03-31)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220328
|
@@ -74,6 +74,25 @@ module Google
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
# The metadata of an LRO from deleting multiple versions.
|
78
|
+
class BatchDeleteVersionsMetadata
|
79
|
+
include Google::Apis::Core::Hashable
|
80
|
+
|
81
|
+
# The versions the operation failed to delete.
|
82
|
+
# Corresponds to the JSON property `failedVersions`
|
83
|
+
# @return [Array<String>]
|
84
|
+
attr_accessor :failed_versions
|
85
|
+
|
86
|
+
def initialize(**args)
|
87
|
+
update!(**args)
|
88
|
+
end
|
89
|
+
|
90
|
+
# Update properties of this object
|
91
|
+
def update!(**args)
|
92
|
+
@failed_versions = args[:failed_versions] if args.key?(:failed_versions)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
77
96
|
# Associates `members`, or principals, with a `role`.
|
78
97
|
class Binding
|
79
98
|
include Google::Apis::Core::Hashable
|
@@ -97,7 +116,7 @@ module Google
|
|
97
116
|
# @return [Google::Apis::ArtifactregistryV1::Expr]
|
98
117
|
attr_accessor :condition
|
99
118
|
|
100
|
-
# Specifies the principals requesting access for a Cloud
|
119
|
+
# Specifies the principals requesting access for a Google Cloud resource. `
|
101
120
|
# members` can have the following values: * `allUsers`: A special identifier
|
102
121
|
# that represents anyone who is on the internet; with or without a Google
|
103
122
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
@@ -1273,7 +1292,7 @@ module Google
|
|
1273
1292
|
include Google::Apis::Core::Hashable
|
1274
1293
|
|
1275
1294
|
# The set of permissions to check for the `resource`. Permissions with wildcards
|
1276
|
-
# (such as
|
1295
|
+
# (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
1277
1296
|
# Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
1278
1297
|
# Corresponds to the JSON property `permissions`
|
1279
1298
|
# @return [Array<String>]
|
@@ -1328,6 +1347,19 @@ module Google
|
|
1328
1347
|
end
|
1329
1348
|
end
|
1330
1349
|
|
1350
|
+
# The operation metadata for uploading artifacts.
|
1351
|
+
class UploadAptArtifactMetadata
|
1352
|
+
include Google::Apis::Core::Hashable
|
1353
|
+
|
1354
|
+
def initialize(**args)
|
1355
|
+
update!(**args)
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
# Update properties of this object
|
1359
|
+
def update!(**args)
|
1360
|
+
end
|
1361
|
+
end
|
1362
|
+
|
1331
1363
|
# The request to upload an artifact.
|
1332
1364
|
class UploadAptArtifactRequest
|
1333
1365
|
include Google::Apis::Core::Hashable
|
@@ -1381,6 +1413,19 @@ module Google
|
|
1381
1413
|
end
|
1382
1414
|
end
|
1383
1415
|
|
1416
|
+
# The operation metadata for uploading artifacts.
|
1417
|
+
class UploadYumArtifactMetadata
|
1418
|
+
include Google::Apis::Core::Hashable
|
1419
|
+
|
1420
|
+
def initialize(**args)
|
1421
|
+
update!(**args)
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
# Update properties of this object
|
1425
|
+
def update!(**args)
|
1426
|
+
end
|
1427
|
+
end
|
1428
|
+
|
1384
1429
|
# The request to upload an artifact.
|
1385
1430
|
class UploadYumArtifactRequest
|
1386
1431
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ArtifactregistryV1
|
18
18
|
# Version of the google-apis-artifactregistry_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220503"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class BatchDeleteVersionsMetadata
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class Binding
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -250,6 +256,12 @@ module Google
|
|
250
256
|
include Google::Apis::Core::JsonObjectSupport
|
251
257
|
end
|
252
258
|
|
259
|
+
class UploadAptArtifactMetadata
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
253
265
|
class UploadAptArtifactRequest
|
254
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
267
|
|
@@ -268,6 +280,12 @@ module Google
|
|
268
280
|
include Google::Apis::Core::JsonObjectSupport
|
269
281
|
end
|
270
282
|
|
283
|
+
class UploadYumArtifactMetadata
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
271
289
|
class UploadYumArtifactRequest
|
272
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
291
|
|
@@ -304,6 +322,13 @@ module Google
|
|
304
322
|
end
|
305
323
|
end
|
306
324
|
|
325
|
+
class BatchDeleteVersionsMetadata
|
326
|
+
# @private
|
327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
328
|
+
collection :failed_versions, as: 'failedVersions'
|
329
|
+
end
|
330
|
+
end
|
331
|
+
|
307
332
|
class Binding
|
308
333
|
# @private
|
309
334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -639,6 +664,12 @@ module Google
|
|
639
664
|
end
|
640
665
|
end
|
641
666
|
|
667
|
+
class UploadAptArtifactMetadata
|
668
|
+
# @private
|
669
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
670
|
+
end
|
671
|
+
end
|
672
|
+
|
642
673
|
class UploadAptArtifactRequest
|
643
674
|
# @private
|
644
675
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -661,6 +692,12 @@ module Google
|
|
661
692
|
end
|
662
693
|
end
|
663
694
|
|
695
|
+
class UploadYumArtifactMetadata
|
696
|
+
# @private
|
697
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
664
701
|
class UploadYumArtifactRequest
|
665
702
|
# @private
|
666
703
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -152,8 +152,8 @@ module Google
|
|
152
152
|
# The resource that owns the locations collection, if applicable.
|
153
153
|
# @param [String] filter
|
154
154
|
# A filter to narrow down results to a preferred subset. The filtering language
|
155
|
-
# accepts strings like "displayName=tokyo"
|
156
|
-
# AIP-160](https://google.aip.dev/160).
|
155
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
156
|
+
# in [AIP-160](https://google.aip.dev/160).
|
157
157
|
# @param [Fixnum] page_size
|
158
158
|
# The maximum number of results to return. If not set, the service selects a
|
159
159
|
# default.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-artifactregistry_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.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-
|
11
|
+
date: 2022-05-09 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-artifactregistry_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1/v0.25.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|