google-apis-artifactregistry_v1 0.76.0 → 0.77.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 +4 -0
- data/lib/google/apis/artifactregistry_v1/classes.rb +79 -0
- data/lib/google/apis/artifactregistry_v1/gem_version.rb +2 -2
- data/lib/google/apis/artifactregistry_v1/representations.rb +22 -0
- data/lib/google/apis/artifactregistry_v1/service.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8cb9b7686adf5fb791be7532083285329f87c1f944d94c9a8bf6ff0be68bafe9
|
|
4
|
+
data.tar.gz: c66768a67c0944b768cd30b6d40b9275b24bddcc9b2468700bf4223a583c6580
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 450c1080b086e9484b63834d23b88eecafa60e010a2ea097a7c456d9a2b7aea2efedbef45a325bfc81335bc9d461e21e1394a3c3c2a7c5e8f2cd69b4cd553f41
|
|
7
|
+
data.tar.gz: b25d3a95af7627ee40d20fe26e480877d4dc5dbed5705d9ac31eb25d6daadff0139ea1b5f405b754633354681d85bb4a4379859aeb1f1a0843d997f63b48e7d3
|
data/CHANGELOG.md
CHANGED
|
@@ -468,6 +468,14 @@ module Google
|
|
|
468
468
|
class DockerImage
|
|
469
469
|
include Google::Apis::Core::Hashable
|
|
470
470
|
|
|
471
|
+
# ArtifactType of this image, e.g. "application/vnd.example+type". If the `
|
|
472
|
+
# subject_digest` is set and no `artifact_type` is given, the `media_type` will
|
|
473
|
+
# be considered as the `artifact_type`. This field is returned as the `metadata.
|
|
474
|
+
# artifactType` field in the Version resource.
|
|
475
|
+
# Corresponds to the JSON property `artifactType`
|
|
476
|
+
# @return [String]
|
|
477
|
+
attr_accessor :artifact_type
|
|
478
|
+
|
|
471
479
|
# The time this image was built. This field is returned as the 'metadata.
|
|
472
480
|
# buildTime' field in the Version resource. The build time is returned to the
|
|
473
481
|
# client as an RFC 3339 string, which can be easily used with the JavaScript
|
|
@@ -476,6 +484,12 @@ module Google
|
|
|
476
484
|
# @return [String]
|
|
477
485
|
attr_accessor :build_time
|
|
478
486
|
|
|
487
|
+
# Optional. For multi-arch images (manifest lists), this field contains the list
|
|
488
|
+
# of image manifests.
|
|
489
|
+
# Corresponds to the JSON property `imageManifests`
|
|
490
|
+
# @return [Array<Google::Apis::ArtifactregistryV1::ImageManifest>]
|
|
491
|
+
attr_accessor :image_manifests
|
|
492
|
+
|
|
479
493
|
# Calculated size of the image. This field is returned as the 'metadata.
|
|
480
494
|
# imageSizeBytes' field in the Version resource.
|
|
481
495
|
# Corresponds to the JSON property `imageSizeBytes`
|
|
@@ -530,7 +544,9 @@ module Google
|
|
|
530
544
|
|
|
531
545
|
# Update properties of this object
|
|
532
546
|
def update!(**args)
|
|
547
|
+
@artifact_type = args[:artifact_type] if args.key?(:artifact_type)
|
|
533
548
|
@build_time = args[:build_time] if args.key?(:build_time)
|
|
549
|
+
@image_manifests = args[:image_manifests] if args.key?(:image_manifests)
|
|
534
550
|
@image_size_bytes = args[:image_size_bytes] if args.key?(:image_size_bytes)
|
|
535
551
|
@media_type = args[:media_type] if args.key?(:media_type)
|
|
536
552
|
@name = args[:name] if args.key?(:name)
|
|
@@ -1212,6 +1228,69 @@ module Google
|
|
|
1212
1228
|
end
|
|
1213
1229
|
end
|
|
1214
1230
|
|
|
1231
|
+
# Details of a single image manifest within a multi-arch image.
|
|
1232
|
+
class ImageManifest
|
|
1233
|
+
include Google::Apis::Core::Hashable
|
|
1234
|
+
|
|
1235
|
+
# Optional. The CPU architecture of the image. Values are provided by the Docker
|
|
1236
|
+
# client and are not validated by Artifact Registry. Example values include "
|
|
1237
|
+
# amd64", "arm64", "ppc64le", "s390x", "riscv64", "mips64le", etc.
|
|
1238
|
+
# Corresponds to the JSON property `architecture`
|
|
1239
|
+
# @return [String]
|
|
1240
|
+
attr_accessor :architecture
|
|
1241
|
+
|
|
1242
|
+
# Optional. The manifest digest, in the format "sha256:".
|
|
1243
|
+
# Corresponds to the JSON property `digest`
|
|
1244
|
+
# @return [String]
|
|
1245
|
+
attr_accessor :digest
|
|
1246
|
+
|
|
1247
|
+
# Optional. The media type of the manifest, e.g., "application/vnd.docker.
|
|
1248
|
+
# distribution.manifest.v2+json"
|
|
1249
|
+
# Corresponds to the JSON property `mediaType`
|
|
1250
|
+
# @return [String]
|
|
1251
|
+
attr_accessor :media_type
|
|
1252
|
+
|
|
1253
|
+
# Optional. The operating system of the image. Values are provided by the Docker
|
|
1254
|
+
# client and are not validated by Artifact Registry. Example values include "
|
|
1255
|
+
# linux", "windows", "darwin", "aix", etc.
|
|
1256
|
+
# Corresponds to the JSON property `os`
|
|
1257
|
+
# @return [String]
|
|
1258
|
+
attr_accessor :os
|
|
1259
|
+
|
|
1260
|
+
# Optional. The required OS features for the image, for example on Windows `
|
|
1261
|
+
# win32k`.
|
|
1262
|
+
# Corresponds to the JSON property `osFeatures`
|
|
1263
|
+
# @return [Array<String>]
|
|
1264
|
+
attr_accessor :os_features
|
|
1265
|
+
|
|
1266
|
+
# Optional. The OS version of the image, for example on Windows `10.0.14393.1066`
|
|
1267
|
+
# .
|
|
1268
|
+
# Corresponds to the JSON property `osVersion`
|
|
1269
|
+
# @return [String]
|
|
1270
|
+
attr_accessor :os_version
|
|
1271
|
+
|
|
1272
|
+
# Optional. The variant of the CPU in the image, for example `v7` to specify
|
|
1273
|
+
# ARMv7 when architecture is `arm`.
|
|
1274
|
+
# Corresponds to the JSON property `variant`
|
|
1275
|
+
# @return [String]
|
|
1276
|
+
attr_accessor :variant
|
|
1277
|
+
|
|
1278
|
+
def initialize(**args)
|
|
1279
|
+
update!(**args)
|
|
1280
|
+
end
|
|
1281
|
+
|
|
1282
|
+
# Update properties of this object
|
|
1283
|
+
def update!(**args)
|
|
1284
|
+
@architecture = args[:architecture] if args.key?(:architecture)
|
|
1285
|
+
@digest = args[:digest] if args.key?(:digest)
|
|
1286
|
+
@media_type = args[:media_type] if args.key?(:media_type)
|
|
1287
|
+
@os = args[:os] if args.key?(:os)
|
|
1288
|
+
@os_features = args[:os_features] if args.key?(:os_features)
|
|
1289
|
+
@os_version = args[:os_version] if args.key?(:os_version)
|
|
1290
|
+
@variant = args[:variant] if args.key?(:variant)
|
|
1291
|
+
end
|
|
1292
|
+
end
|
|
1293
|
+
|
|
1215
1294
|
# Error information explaining why a package was not imported.
|
|
1216
1295
|
class ImportAptArtifactsErrorInfo
|
|
1217
1296
|
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.77.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 = "20251201"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -226,6 +226,12 @@ module Google
|
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
|
227
227
|
end
|
|
228
228
|
|
|
229
|
+
class ImageManifest
|
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
|
+
|
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
233
|
+
end
|
|
234
|
+
|
|
229
235
|
class ImportAptArtifactsErrorInfo
|
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
237
|
|
|
@@ -810,7 +816,10 @@ module Google
|
|
|
810
816
|
class DockerImage
|
|
811
817
|
# @private
|
|
812
818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
819
|
+
property :artifact_type, as: 'artifactType'
|
|
813
820
|
property :build_time, as: 'buildTime'
|
|
821
|
+
collection :image_manifests, as: 'imageManifests', class: Google::Apis::ArtifactregistryV1::ImageManifest, decorator: Google::Apis::ArtifactregistryV1::ImageManifest::Representation
|
|
822
|
+
|
|
814
823
|
property :image_size_bytes, :numeric_string => true, as: 'imageSizeBytes'
|
|
815
824
|
property :media_type, as: 'mediaType'
|
|
816
825
|
property :name, as: 'name'
|
|
@@ -1016,6 +1025,19 @@ module Google
|
|
|
1016
1025
|
end
|
|
1017
1026
|
end
|
|
1018
1027
|
|
|
1028
|
+
class ImageManifest
|
|
1029
|
+
# @private
|
|
1030
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1031
|
+
property :architecture, as: 'architecture'
|
|
1032
|
+
property :digest, as: 'digest'
|
|
1033
|
+
property :media_type, as: 'mediaType'
|
|
1034
|
+
property :os, as: 'os'
|
|
1035
|
+
collection :os_features, as: 'osFeatures'
|
|
1036
|
+
property :os_version, as: 'osVersion'
|
|
1037
|
+
property :variant, as: 'variant'
|
|
1038
|
+
end
|
|
1039
|
+
end
|
|
1040
|
+
|
|
1019
1041
|
class ImportAptArtifactsErrorInfo
|
|
1020
1042
|
# @private
|
|
1021
1043
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -364,7 +364,7 @@ module Google
|
|
|
364
364
|
execute_or_queue_command(command, &block)
|
|
365
365
|
end
|
|
366
366
|
|
|
367
|
-
# Exports an artifact.
|
|
367
|
+
# Exports an artifact to a Cloud Storage bucket.
|
|
368
368
|
# @param [String] repository
|
|
369
369
|
# Required. The repository of the artifact to export. Format: projects/`project`/
|
|
370
370
|
# locations/`location`/repositories/`repository`
|
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.77.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.77.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:
|