google-apis-artifactregistry_v1 0.23.0 → 0.26.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 +9 -6
- 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: cf2983966620678ce54f07689d0215766176de1a02dff6819addf2d5a6d53991
|
4
|
+
data.tar.gz: 30a8af0a4c53b334e7f14f9f5c2c4f9e84a4ee2ba598ec161f5f25833d58d382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e851ed572718fb4a389ecd08abb896413f2df31f30cb7174ce3d677800bb47bc8c6c33003223aeb3d2987490966b7d92ae81c77678f74c1c745c72a39841b210
|
7
|
+
data.tar.gz: 7cfe82451f6e1cbf49a17ba5a78ec405856ae37edc2a2d3b29f609462ef0f6c9d44bfd2d2f6597520f1b483904889f1ffdaa5d0de98a43ca31693f3c25cfb9b9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-artifactregistry_v1
|
2
2
|
|
3
|
+
### v0.26.0 (2022-05-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220506
|
6
|
+
|
7
|
+
### v0.25.0 (2022-05-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220503
|
10
|
+
|
11
|
+
### v0.24.0 (2022-04-22)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220415
|
14
|
+
|
3
15
|
### v0.23.0 (2022-04-06)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220401
|
@@ -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.26.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 = "20220506"
|
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
|
@@ -322,8 +322,9 @@ module Google
|
|
322
322
|
|
323
323
|
# Gets the IAM policy for a given resource.
|
324
324
|
# @param [String] resource
|
325
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
326
|
-
#
|
325
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
326
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
327
|
+
# appropriate value for this field.
|
327
328
|
# @param [Fixnum] options_requested_policy_version
|
328
329
|
# Optional. The maximum policy version that will be used to format the policy.
|
329
330
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -440,8 +441,9 @@ module Google
|
|
440
441
|
|
441
442
|
# Updates the IAM policy for a given resource.
|
442
443
|
# @param [String] resource
|
443
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
444
|
-
#
|
444
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
445
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
446
|
+
# appropriate value for this field.
|
445
447
|
# @param [Google::Apis::ArtifactregistryV1::SetIamPolicyRequest] set_iam_policy_request_object
|
446
448
|
# @param [String] fields
|
447
449
|
# Selector specifying which fields to include in a partial response.
|
@@ -474,8 +476,9 @@ module Google
|
|
474
476
|
|
475
477
|
# Tests if the caller has a list of permissions on a resource.
|
476
478
|
# @param [String] resource
|
477
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
478
|
-
#
|
479
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
480
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
481
|
+
# appropriate value for this field.
|
479
482
|
# @param [Google::Apis::ArtifactregistryV1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
480
483
|
# @param [String] fields
|
481
484
|
# Selector specifying which fields to include in a partial response.
|
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.26.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-16 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.26.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: []
|