google-apis-artifactregistry_v1beta2 0.21.0 → 0.22.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: 27db909a9b02fbd32d891d29f0be2b1554403ca12c7703a3d0fc6ce4410f7472
|
4
|
+
data.tar.gz: '05583078c785a7d033693bea0fcb152cd2cad149d502c965c9d5ea64bc57301c'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '059acbee00b0ee04857c3b39461386f3575850acee4d9a531e0ad667cf995f36e03f8c6b3e3a98589bd1edd956fd0b0d597abe289749bfa30c4e6ec855db0fe8'
|
7
|
+
data.tar.gz: 5549355aa584703dd81e01fe6984c98b5abcd07bc0d4bdbf614055d0c5466d841568a84471b4245a6504b01ac41d7b8a4e3cbd445ff25d8fd3471be65cf104dd
|
data/CHANGELOG.md
CHANGED
@@ -148,8 +148,7 @@ module Google
|
|
148
148
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
149
149
|
# messages in your APIs. A typical example is to use it as the request or the
|
150
150
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
151
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
152
|
-
# `Empty` is empty JSON object ````.
|
151
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
153
152
|
class Empty
|
154
153
|
include Google::Apis::Core::Hashable
|
155
154
|
|
@@ -349,6 +348,19 @@ module Google
|
|
349
348
|
end
|
350
349
|
end
|
351
350
|
|
351
|
+
# The operation metadata for importing artifacts.
|
352
|
+
class ImportAptArtifactsMetadata
|
353
|
+
include Google::Apis::Core::Hashable
|
354
|
+
|
355
|
+
def initialize(**args)
|
356
|
+
update!(**args)
|
357
|
+
end
|
358
|
+
|
359
|
+
# Update properties of this object
|
360
|
+
def update!(**args)
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
352
364
|
# The request to import new apt artifacts.
|
353
365
|
class ImportAptArtifactsRequest
|
354
366
|
include Google::Apis::Core::Hashable
|
@@ -449,6 +461,19 @@ module Google
|
|
449
461
|
end
|
450
462
|
end
|
451
463
|
|
464
|
+
# The operation metadata for importing artifacts.
|
465
|
+
class ImportYumArtifactsMetadata
|
466
|
+
include Google::Apis::Core::Hashable
|
467
|
+
|
468
|
+
def initialize(**args)
|
469
|
+
update!(**args)
|
470
|
+
end
|
471
|
+
|
472
|
+
# Update properties of this object
|
473
|
+
def update!(**args)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
452
477
|
# The request to import new yum artifacts.
|
453
478
|
class ImportYumArtifactsRequest
|
454
479
|
include Google::Apis::Core::Hashable
|
@@ -999,6 +1024,13 @@ module Google
|
|
999
1024
|
# @return [String]
|
1000
1025
|
attr_accessor :name
|
1001
1026
|
|
1027
|
+
# Output only. The size, in bytes, of all artifact storage in this repository.
|
1028
|
+
# Repositories that are generally available or in public preview use this to
|
1029
|
+
# calculate storage costs.
|
1030
|
+
# Corresponds to the JSON property `sizeBytes`
|
1031
|
+
# @return [Fixnum]
|
1032
|
+
attr_accessor :size_bytes
|
1033
|
+
|
1002
1034
|
# The time when the repository was last updated.
|
1003
1035
|
# Corresponds to the JSON property `updateTime`
|
1004
1036
|
# @return [String]
|
@@ -1017,6 +1049,7 @@ module Google
|
|
1017
1049
|
@labels = args[:labels] if args.key?(:labels)
|
1018
1050
|
@maven_config = args[:maven_config] if args.key?(:maven_config)
|
1019
1051
|
@name = args[:name] if args.key?(:name)
|
1052
|
+
@size_bytes = args[:size_bytes] if args.key?(:size_bytes)
|
1020
1053
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1021
1054
|
end
|
1022
1055
|
end
|
@@ -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.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220328"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class ImportAptArtifactsMetadata
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class ImportAptArtifactsRequest
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -94,6 +100,12 @@ module Google
|
|
94
100
|
include Google::Apis::Core::JsonObjectSupport
|
95
101
|
end
|
96
102
|
|
103
|
+
class ImportYumArtifactsMetadata
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
97
109
|
class ImportYumArtifactsRequest
|
98
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
111
|
|
@@ -345,6 +357,12 @@ module Google
|
|
345
357
|
end
|
346
358
|
end
|
347
359
|
|
360
|
+
class ImportAptArtifactsMetadata
|
361
|
+
# @private
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
348
366
|
class ImportAptArtifactsRequest
|
349
367
|
# @private
|
350
368
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -381,6 +399,12 @@ module Google
|
|
381
399
|
end
|
382
400
|
end
|
383
401
|
|
402
|
+
class ImportYumArtifactsMetadata
|
403
|
+
# @private
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
405
|
+
end
|
406
|
+
end
|
407
|
+
|
384
408
|
class ImportYumArtifactsRequest
|
385
409
|
# @private
|
386
410
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -529,6 +553,7 @@ module Google
|
|
529
553
|
property :maven_config, as: 'mavenConfig', class: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig, decorator: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig::Representation
|
530
554
|
|
531
555
|
property :name, as: 'name'
|
556
|
+
property :size_bytes, :numeric_string => true, as: 'sizeBytes'
|
532
557
|
property :update_time, as: 'updateTime'
|
533
558
|
end
|
534
559
|
end
|
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.22.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: 2022-
|
11
|
+
date: 2022-04-04 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.22.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: []
|