google-apis-artifactregistry_v1 0.61.0 → 0.62.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a16f623a39805caf3bdd3a9378b751049495af9ebc5d363ce8cfd5115c00d2f9
|
4
|
+
data.tar.gz: 0a1f151e27c5e68ab78b5a4b0b27455597499db61ad8ff0d41ea7637c57fc76f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8fe4e9e4101675a9504ddf7b7a39b150dac9e5451301a73aab04ab0f372ce95879ee0f21c9b6fa9569615f17b5e3f9a826f9cddc1994f21aed7666314df2cb3
|
7
|
+
data.tar.gz: d4eef7e212e1c410b56c86965e43189ae973a22a3df8f9a58fbf89de52bdc577743ae2361da2b9c03747bf9febd4fa1b6dcf1eea9d4795780ff5ee06cea57b11
|
data/CHANGELOG.md
CHANGED
@@ -2030,6 +2030,12 @@ module Google
|
|
2030
2030
|
# @return [String]
|
2031
2031
|
attr_accessor :name
|
2032
2032
|
|
2033
|
+
# The percentage of pull traffic to redirect from GCR to AR when using partial
|
2034
|
+
# redirection.
|
2035
|
+
# Corresponds to the JSON property `pullPercent`
|
2036
|
+
# @return [Fixnum]
|
2037
|
+
attr_accessor :pull_percent
|
2038
|
+
|
2033
2039
|
def initialize(**args)
|
2034
2040
|
update!(**args)
|
2035
2041
|
end
|
@@ -2038,6 +2044,20 @@ module Google
|
|
2038
2044
|
def update!(**args)
|
2039
2045
|
@legacy_redirection_state = args[:legacy_redirection_state] if args.key?(:legacy_redirection_state)
|
2040
2046
|
@name = args[:name] if args.key?(:name)
|
2047
|
+
@pull_percent = args[:pull_percent] if args.key?(:pull_percent)
|
2048
|
+
end
|
2049
|
+
end
|
2050
|
+
|
2051
|
+
# The metadata for promote artifact long running operation.
|
2052
|
+
class PromoteArtifactMetadata
|
2053
|
+
include Google::Apis::Core::Hashable
|
2054
|
+
|
2055
|
+
def initialize(**args)
|
2056
|
+
update!(**args)
|
2057
|
+
end
|
2058
|
+
|
2059
|
+
# Update properties of this object
|
2060
|
+
def update!(**args)
|
2041
2061
|
end
|
2042
2062
|
end
|
2043
2063
|
|
@@ -2602,9 +2622,9 @@ module Google
|
|
2602
2622
|
attr_accessor :filename
|
2603
2623
|
|
2604
2624
|
# The ID of the package of the generic artifact. If the package does not exist,
|
2605
|
-
# a new package will be created. The `package_id`
|
2606
|
-
#
|
2607
|
-
#
|
2625
|
+
# a new package will be created. The `package_id` should start and end with a
|
2626
|
+
# letter or number, only contain letters, numbers, hyphens, underscores, and
|
2627
|
+
# periods, and not exceed 256 characters.
|
2608
2628
|
# Corresponds to the JSON property `packageId`
|
2609
2629
|
# @return [String]
|
2610
2630
|
attr_accessor :package_id
|
@@ -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.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240717"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -406,6 +406,12 @@ module Google
|
|
406
406
|
include Google::Apis::Core::JsonObjectSupport
|
407
407
|
end
|
408
408
|
|
409
|
+
class PromoteArtifactMetadata
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
409
415
|
class PythonPackage
|
410
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
417
|
|
@@ -1204,6 +1210,13 @@ module Google
|
|
1204
1210
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1205
1211
|
property :legacy_redirection_state, as: 'legacyRedirectionState'
|
1206
1212
|
property :name, as: 'name'
|
1213
|
+
property :pull_percent, as: 'pullPercent'
|
1214
|
+
end
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class PromoteArtifactMetadata
|
1218
|
+
# @private
|
1219
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1207
1220
|
end
|
1208
1221
|
end
|
1209
1222
|
|
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.62.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: 2024-
|
11
|
+
date: 2024-07-25 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.62.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: []
|