google-apis-artifactregistry_v1 0.82.0 → 0.83.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: 345c32b40cbd516a25f292433f5d118d763eabf4103ffb1303714d66d23189cc
|
|
4
|
+
data.tar.gz: 8aeda0adb22d03b6ee16c270d2bf8ab28bcbce7ebd8d4db1a78a5ec63d59f666
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9ef9917cd7c6f357e57b87da592296ca30c6b1d81179cecc3e1964db14c17eaf4cb973202d20a5e9a27b745f8e458b0e1e00936f36430456703a502dbd1769e
|
|
7
|
+
data.tar.gz: cfd6eef15bf40471f5df23fc7ce4cba1c41a2e8aab19c5e2af06f54e05fe6d95f481116f52d42f7cd082a6ab194535ed31b399589ce75d5291df67a32d8c9ed9
|
data/CHANGELOG.md
CHANGED
|
@@ -3377,6 +3377,12 @@ module Google
|
|
|
3377
3377
|
# @return [String]
|
|
3378
3378
|
attr_accessor :file_id
|
|
3379
3379
|
|
|
3380
|
+
# Optional. The type of the file to upload. Defaulting to ATTACHMENT if not
|
|
3381
|
+
# specified.
|
|
3382
|
+
# Corresponds to the JSON property `fileType`
|
|
3383
|
+
# @return [String]
|
|
3384
|
+
attr_accessor :file_type
|
|
3385
|
+
|
|
3380
3386
|
def initialize(**args)
|
|
3381
3387
|
update!(**args)
|
|
3382
3388
|
end
|
|
@@ -3384,6 +3390,7 @@ module Google
|
|
|
3384
3390
|
# Update properties of this object
|
|
3385
3391
|
def update!(**args)
|
|
3386
3392
|
@file_id = args[:file_id] if args.key?(:file_id)
|
|
3393
|
+
@file_type = args[:file_type] if args.key?(:file_type)
|
|
3387
3394
|
end
|
|
3388
3395
|
end
|
|
3389
3396
|
|
|
@@ -3442,6 +3449,13 @@ module Google
|
|
|
3442
3449
|
# @return [String]
|
|
3443
3450
|
attr_accessor :package_id
|
|
3444
3451
|
|
|
3452
|
+
# Optional. Client specified annotations to attach to the version upon creation.
|
|
3453
|
+
# This field is only applied if the Version is created during this upload. If
|
|
3454
|
+
# the Version already exists and this field is set, the request will fail.
|
|
3455
|
+
# Corresponds to the JSON property `versionAnnotations`
|
|
3456
|
+
# @return [Hash<String,String>]
|
|
3457
|
+
attr_accessor :version_annotations
|
|
3458
|
+
|
|
3445
3459
|
# The ID of the version of the generic artifact. If the version does not exist,
|
|
3446
3460
|
# a new version will be created. The version_id must start and end with a letter
|
|
3447
3461
|
# or number, can only contain lowercase letters, numbers, the following
|
|
@@ -3459,6 +3473,7 @@ module Google
|
|
|
3459
3473
|
def update!(**args)
|
|
3460
3474
|
@filename = args[:filename] if args.key?(:filename)
|
|
3461
3475
|
@package_id = args[:package_id] if args.key?(:package_id)
|
|
3476
|
+
@version_annotations = args[:version_annotations] if args.key?(:version_annotations)
|
|
3462
3477
|
@version_id = args[:version_id] if args.key?(:version_id)
|
|
3463
3478
|
end
|
|
3464
3479
|
end
|
|
@@ -3901,7 +3916,8 @@ module Google
|
|
|
3901
3916
|
include Google::Apis::Core::Hashable
|
|
3902
3917
|
|
|
3903
3918
|
# Optional. Config for whether this repository has vulnerability scanning
|
|
3904
|
-
# disabled.
|
|
3919
|
+
# disabled. When unset (ENABLEMENT_CONFIG_UNSPECIFIED), this is treated as
|
|
3920
|
+
# INHERITED for Docker repositories and DISABLED for non-Docker repositories.
|
|
3905
3921
|
# Corresponds to the JSON property `enablementConfig`
|
|
3906
3922
|
# @return [String]
|
|
3907
3923
|
attr_accessor :enablement_config
|
|
@@ -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.83.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260822"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1738,6 +1738,7 @@ module Google
|
|
|
1738
1738
|
# @private
|
|
1739
1739
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1740
1740
|
property :file_id, as: 'fileId'
|
|
1741
|
+
property :file_type, as: 'fileType'
|
|
1741
1742
|
end
|
|
1742
1743
|
end
|
|
1743
1744
|
|
|
@@ -1760,6 +1761,7 @@ module Google
|
|
|
1760
1761
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1761
1762
|
property :filename, as: 'filename'
|
|
1762
1763
|
property :package_id, as: 'packageId'
|
|
1764
|
+
hash :version_annotations, as: 'versionAnnotations'
|
|
1763
1765
|
property :version_id, as: 'versionId'
|
|
1764
1766
|
end
|
|
1765
1767
|
end
|
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.83.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.83.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:
|