google-apis-artifactregistry_v1beta2 0.15.0 → 0.19.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 +17 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/artifactregistry_v1beta2/classes.rb +17 -4
- data/lib/google/apis/artifactregistry_v1beta2/gem_version.rb +3 -3
- data/lib/google/apis/artifactregistry_v1beta2/representations.rb +12 -0
- data/lib/google/apis/artifactregistry_v1beta2/service.rb +20 -17
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c20dfca2f545eb5b3e1d1f74c6a694ff8d78c7644a71ca5ff08a6640123cdae
|
4
|
+
data.tar.gz: '08807989ba30a1b9682f447b3f09b205a5e28fb2d144f4695779257e488141fc'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45cf21d09897541206316fe17e85d201d02c24584f45cfc834561fb3f9858293cc936e4fac46d2f6b9c56b95d0339bdffa2aee33bfe87b5d11d2c682d7c38989
|
7
|
+
data.tar.gz: 28664525abb1ccc531b25f5c96b4cad6636caa679652ec2bc2f085aacacfe068c46ac7ed41f872d3e67f55fda4850b8e2bf86f4830049bdc177d132a39b3390c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-artifactregistry_v1beta2
|
2
2
|
|
3
|
+
### v0.19.0 (2022-01-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220121
|
6
|
+
|
7
|
+
### v0.18.0 (2022-01-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220113
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.17.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
16
|
+
### v0.16.0 (2021-11-13)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20211108
|
19
|
+
|
3
20
|
### v0.15.0 (2021-11-06)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20211029
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/artifactregistry_v1beta2"
|
|
51
51
|
client = Google::Apis::ArtifactregistryV1beta2::ArtifactRegistryService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -368,11 +368,11 @@ module Google
|
|
368
368
|
end
|
369
369
|
end
|
370
370
|
|
371
|
-
# The response message from importing artifacts.
|
371
|
+
# The response message from importing APT artifacts.
|
372
372
|
class ImportAptArtifactsResponse
|
373
373
|
include Google::Apis::Core::Hashable
|
374
374
|
|
375
|
-
# The Apt artifacts
|
375
|
+
# The Apt artifacts imported.
|
376
376
|
# Corresponds to the JSON property `aptArtifacts`
|
377
377
|
# @return [Array<Google::Apis::ArtifactregistryV1beta2::AptArtifact>]
|
378
378
|
attr_accessor :apt_artifacts
|
@@ -468,7 +468,7 @@ module Google
|
|
468
468
|
end
|
469
469
|
end
|
470
470
|
|
471
|
-
# The response message from importing artifacts.
|
471
|
+
# The response message from importing YUM artifacts.
|
472
472
|
class ImportYumArtifactsResponse
|
473
473
|
include Google::Apis::Core::Hashable
|
474
474
|
|
@@ -477,7 +477,7 @@ module Google
|
|
477
477
|
# @return [Array<Google::Apis::ArtifactregistryV1beta2::ImportYumArtifactsErrorInfo>]
|
478
478
|
attr_accessor :errors
|
479
479
|
|
480
|
-
# The yum artifacts
|
480
|
+
# The yum artifacts imported.
|
481
481
|
# Corresponds to the JSON property `yumArtifacts`
|
482
482
|
# @return [Array<Google::Apis::ArtifactregistryV1beta2::YumArtifact>]
|
483
483
|
attr_accessor :yum_artifacts
|
@@ -784,6 +784,19 @@ module Google
|
|
784
784
|
end
|
785
785
|
end
|
786
786
|
|
787
|
+
# Metadata type for longrunning-operations, currently empty.
|
788
|
+
class OperationMetadata
|
789
|
+
include Google::Apis::Core::Hashable
|
790
|
+
|
791
|
+
def initialize(**args)
|
792
|
+
update!(**args)
|
793
|
+
end
|
794
|
+
|
795
|
+
# Update properties of this object
|
796
|
+
def update!(**args)
|
797
|
+
end
|
798
|
+
end
|
799
|
+
|
787
800
|
# Packages are named collections of versions.
|
788
801
|
class Package
|
789
802
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ArtifactregistryV1beta2
|
18
18
|
# Version of the google-apis-artifactregistry_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220121"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -160,6 +160,12 @@ module Google
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
161
161
|
end
|
162
162
|
|
163
|
+
class OperationMetadata
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
163
169
|
class Package
|
164
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
171
|
|
@@ -478,6 +484,12 @@ module Google
|
|
478
484
|
end
|
479
485
|
end
|
480
486
|
|
487
|
+
class OperationMetadata
|
488
|
+
# @private
|
489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
490
|
+
end
|
491
|
+
end
|
492
|
+
|
481
493
|
class Package
|
482
494
|
# @private
|
483
495
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -50,7 +50,7 @@ module Google
|
|
50
50
|
@batch_path = 'batch'
|
51
51
|
end
|
52
52
|
|
53
|
-
# Retrieves the Settings for the Project
|
53
|
+
# Retrieves the Settings for the Project.
|
54
54
|
# @param [String] name
|
55
55
|
# Required. The name of the projectSettings resource.
|
56
56
|
# @param [String] fields
|
@@ -80,7 +80,7 @@ module Google
|
|
80
80
|
execute_or_queue_command(command, &block)
|
81
81
|
end
|
82
82
|
|
83
|
-
#
|
83
|
+
# Updates the Settings for the Project.
|
84
84
|
# @param [String] name
|
85
85
|
# The name of the project's settings. Always of the form: projects/`project-id`/
|
86
86
|
# projectSettings In update request: never set In response: always set
|
@@ -224,7 +224,7 @@ module Google
|
|
224
224
|
# Creates a repository. The returned Operation will finish once the repository
|
225
225
|
# has been created. Its response will be the created Repository.
|
226
226
|
# @param [String] parent
|
227
|
-
# The name of the parent resource where the repository will be created.
|
227
|
+
# Required. The name of the parent resource where the repository will be created.
|
228
228
|
# @param [Google::Apis::ArtifactregistryV1beta2::Repository] repository_object
|
229
229
|
# @param [String] repository_id
|
230
230
|
# The repository id to use for this repository.
|
@@ -262,7 +262,7 @@ module Google
|
|
262
262
|
# finish once the repository has been deleted. It will not have any Operation
|
263
263
|
# metadata and will return a google.protobuf.Empty response.
|
264
264
|
# @param [String] name
|
265
|
-
# The name of the repository to delete.
|
265
|
+
# Required. The name of the repository to delete.
|
266
266
|
# @param [String] fields
|
267
267
|
# Selector specifying which fields to include in a partial response.
|
268
268
|
# @param [String] quota_user
|
@@ -292,7 +292,7 @@ module Google
|
|
292
292
|
|
293
293
|
# Gets a repository.
|
294
294
|
# @param [String] name
|
295
|
-
# The name of the repository to retrieve.
|
295
|
+
# Required. The name of the repository to retrieve.
|
296
296
|
# @param [String] fields
|
297
297
|
# Selector specifying which fields to include in a partial response.
|
298
298
|
# @param [String] quota_user
|
@@ -325,13 +325,16 @@ module Google
|
|
325
325
|
# REQUIRED: The resource for which the policy is being requested. See the
|
326
326
|
# operation documentation for the appropriate value for this field.
|
327
327
|
# @param [Fixnum] options_requested_policy_version
|
328
|
-
# Optional. The policy
|
329
|
-
# 3. Requests specifying an invalid value will be
|
330
|
-
# policies with any conditional bindings must
|
331
|
-
#
|
332
|
-
# field unset.
|
333
|
-
#
|
334
|
-
#
|
328
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
329
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
330
|
+
# rejected. Requests for policies with any conditional role bindings must
|
331
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
332
|
+
# valid value or leave the field unset. The policy in the response might use the
|
333
|
+
# policy version that you specified, or it might use a lower policy version. For
|
334
|
+
# example, if you specify version 3, but the policy has no conditional role
|
335
|
+
# bindings, the response uses version 1. To learn which resources support
|
336
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
337
|
+
# google.com/iam/help/conditions/resource-policies).
|
335
338
|
# @param [String] fields
|
336
339
|
# Selector specifying which fields to include in a partial response.
|
337
340
|
# @param [String] quota_user
|
@@ -362,7 +365,7 @@ module Google
|
|
362
365
|
|
363
366
|
# Lists repositories.
|
364
367
|
# @param [String] parent
|
365
|
-
# The name of the parent resource whose repositories will be listed.
|
368
|
+
# Required. The name of the parent resource whose repositories will be listed.
|
366
369
|
# @param [Fixnum] page_size
|
367
370
|
# The maximum number of repositories to return. Maximum page size is 1,000.
|
368
371
|
# @param [String] page_token
|
@@ -662,7 +665,7 @@ module Google
|
|
662
665
|
# Deletes a package and all of its versions and tags. The returned operation
|
663
666
|
# will complete once the package has been deleted.
|
664
667
|
# @param [String] name
|
665
|
-
# The name of the package to delete.
|
668
|
+
# Required. The name of the package to delete.
|
666
669
|
# @param [String] fields
|
667
670
|
# Selector specifying which fields to include in a partial response.
|
668
671
|
# @param [String] quota_user
|
@@ -692,7 +695,7 @@ module Google
|
|
692
695
|
|
693
696
|
# Gets a package.
|
694
697
|
# @param [String] name
|
695
|
-
# The name of the package to retrieve.
|
698
|
+
# Required. The name of the package to retrieve.
|
696
699
|
# @param [String] fields
|
697
700
|
# Selector specifying which fields to include in a partial response.
|
698
701
|
# @param [String] quota_user
|
@@ -722,7 +725,7 @@ module Google
|
|
722
725
|
|
723
726
|
# Lists packages.
|
724
727
|
# @param [String] parent
|
725
|
-
# The name of the parent resource whose packages will be listed.
|
728
|
+
# Required. The name of the parent resource whose packages will be listed.
|
726
729
|
# @param [Fixnum] page_size
|
727
730
|
# The maximum number of packages to return. Maximum page size is 1,000.
|
728
731
|
# @param [String] page_token
|
@@ -1008,7 +1011,7 @@ module Google
|
|
1008
1011
|
# @param [String] parent
|
1009
1012
|
# The name of the parent resource whose versions will be listed.
|
1010
1013
|
# @param [String] order_by
|
1011
|
-
# Optional.
|
1014
|
+
# Optional. The field to order the results by.
|
1012
1015
|
# @param [Fixnum] page_size
|
1013
1016
|
# The maximum number of versions to return. Maximum page size is 1,000.
|
1014
1017
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-artifactregistry_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.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:
|
11
|
+
date: 2022-01-31 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_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta2/v0.19.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Artifact Registry API V1beta2
|