google-apis-artifactregistry_v1 0.77.0 → 0.78.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: ee864b184af9a58c67d10e48194736c9f03f32e90875833478a63e52a87f8244
|
|
4
|
+
data.tar.gz: 92f075f19ee6c400771c3204a74e7875ccf5ad8d5b9a4dc7332d256c1cd09246
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9070d09ced498676488c7ebe6c6271fdf3eff0b7f387396870d33ee9ca4c6eb939ceff90e20be30f4f7273ca16205eee44b4254575f96d1875c115b32ec2d4a0
|
|
7
|
+
data.tar.gz: e750fb0dde7eeda3a05871e36fe20c9d6f91e260f6a896e4856364183c9a9e791751f4699f8804c1a2111fad33610fcaf36835efc78b5679e73a39a5c1604ee5
|
data/CHANGELOG.md
CHANGED
|
@@ -3464,6 +3464,13 @@ module Google
|
|
|
3464
3464
|
# @return [String]
|
|
3465
3465
|
attr_accessor :description
|
|
3466
3466
|
|
|
3467
|
+
# Output only. Immutable reference for the version, calculated based on the
|
|
3468
|
+
# version's content. Currently we only support dirsum_sha256 hash algorithm.
|
|
3469
|
+
# Additional hash algorithms may be added in the future.
|
|
3470
|
+
# Corresponds to the JSON property `fingerprints`
|
|
3471
|
+
# @return [Array<Google::Apis::ArtifactregistryV1::HashProp>]
|
|
3472
|
+
attr_accessor :fingerprints
|
|
3473
|
+
|
|
3467
3474
|
# Output only. Repository-specific Metadata stored against this version. The
|
|
3468
3475
|
# fields returned are defined by the underlying repository-specific resource.
|
|
3469
3476
|
# Currently, the resources could be: DockerImage MavenArtifact
|
|
@@ -3498,6 +3505,7 @@ module Google
|
|
|
3498
3505
|
@annotations = args[:annotations] if args.key?(:annotations)
|
|
3499
3506
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3500
3507
|
@description = args[:description] if args.key?(:description)
|
|
3508
|
+
@fingerprints = args[:fingerprints] if args.key?(:fingerprints)
|
|
3501
3509
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
3502
3510
|
@name = args[:name] if args.key?(:name)
|
|
3503
3511
|
@related_tags = args[:related_tags] if args.key?(:related_tags)
|
|
@@ -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.78.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260102"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1709,6 +1709,8 @@ module Google
|
|
|
1709
1709
|
hash :annotations, as: 'annotations'
|
|
1710
1710
|
property :create_time, as: 'createTime'
|
|
1711
1711
|
property :description, as: 'description'
|
|
1712
|
+
collection :fingerprints, as: 'fingerprints', class: Google::Apis::ArtifactregistryV1::HashProp, decorator: Google::Apis::ArtifactregistryV1::HashProp::Representation
|
|
1713
|
+
|
|
1712
1714
|
hash :metadata, as: 'metadata'
|
|
1713
1715
|
property :name, as: 'name'
|
|
1714
1716
|
collection :related_tags, as: 'relatedTags', class: Google::Apis::ArtifactregistryV1::Tag, decorator: Google::Apis::ArtifactregistryV1::Tag::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.78.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1/v0.78.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|