google-apis-artifactregistry_v1 0.38.0 → 0.39.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad1221ec0026f85043f0c300929590ca8e9fe5202f69384b153506f2f21c98b1
|
4
|
+
data.tar.gz: '059e923cdf3d5a8f0e812f4e076be27ee460cbd01a4917540c80f37855eb756f'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c7abb243112d05454dc28c22fafc91c09ffc67789a671c34a264597a98ce61462d769468d5cac7e429e6bfd5becb3cb66a892e20be2f3210b6f4c26688adcef
|
7
|
+
data.tar.gz: e6711996430f11e1be69b2d6f92dfd0c201dc10539a51b27dd9b59a9a67d5a85de88cb0c2e72bc40141d21b56f357bb6b44c9af56daac7f936a97f8e1dccd2d6
|
data/CHANGELOG.md
CHANGED
@@ -268,6 +268,28 @@ module Google
|
|
268
268
|
end
|
269
269
|
end
|
270
270
|
|
271
|
+
# DockerRepositoryConfig is docker related repository details. Provides
|
272
|
+
# additional configuration details for repositories of the docker format type.
|
273
|
+
class DockerRepositoryConfig
|
274
|
+
include Google::Apis::Core::Hashable
|
275
|
+
|
276
|
+
# The repository which enabled this flag prevents all tags from being modified,
|
277
|
+
# moved or deleted. This does not prevent tags from being created.
|
278
|
+
# Corresponds to the JSON property `immutableTags`
|
279
|
+
# @return [Boolean]
|
280
|
+
attr_accessor :immutable_tags
|
281
|
+
alias_method :immutable_tags?, :immutable_tags
|
282
|
+
|
283
|
+
def initialize(**args)
|
284
|
+
update!(**args)
|
285
|
+
end
|
286
|
+
|
287
|
+
# Update properties of this object
|
288
|
+
def update!(**args)
|
289
|
+
@immutable_tags = args[:immutable_tags] if args.key?(:immutable_tags)
|
290
|
+
end
|
291
|
+
end
|
292
|
+
|
271
293
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
272
294
|
# messages in your APIs. A typical example is to use it as the request or the
|
273
295
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -648,7 +670,7 @@ module Google
|
|
648
670
|
end
|
649
671
|
end
|
650
672
|
|
651
|
-
# A detailed representation of a
|
673
|
+
# A detailed representation of a KFP artifact.
|
652
674
|
class KfpArtifact
|
653
675
|
include Google::Apis::Core::Hashable
|
654
676
|
|
@@ -1515,7 +1537,7 @@ module Google
|
|
1515
1537
|
class Repository
|
1516
1538
|
include Google::Apis::Core::Hashable
|
1517
1539
|
|
1518
|
-
# The time when the repository was created.
|
1540
|
+
# Output only. The time when the repository was created.
|
1519
1541
|
# Corresponds to the JSON property `createTime`
|
1520
1542
|
# @return [String]
|
1521
1543
|
attr_accessor :create_time
|
@@ -1525,6 +1547,12 @@ module Google
|
|
1525
1547
|
# @return [String]
|
1526
1548
|
attr_accessor :description
|
1527
1549
|
|
1550
|
+
# DockerRepositoryConfig is docker related repository details. Provides
|
1551
|
+
# additional configuration details for repositories of the docker format type.
|
1552
|
+
# Corresponds to the JSON property `dockerConfig`
|
1553
|
+
# @return [Google::Apis::ArtifactregistryV1::DockerRepositoryConfig]
|
1554
|
+
attr_accessor :docker_config
|
1555
|
+
|
1528
1556
|
# The format of packages that are stored in the repository.
|
1529
1557
|
# Corresponds to the JSON property `format`
|
1530
1558
|
# @return [String]
|
@@ -1581,7 +1609,7 @@ module Google
|
|
1581
1609
|
# @return [Fixnum]
|
1582
1610
|
attr_accessor :size_bytes
|
1583
1611
|
|
1584
|
-
# The time when the repository was last updated.
|
1612
|
+
# Output only. The time when the repository was last updated.
|
1585
1613
|
# Corresponds to the JSON property `updateTime`
|
1586
1614
|
# @return [String]
|
1587
1615
|
attr_accessor :update_time
|
@@ -1599,6 +1627,7 @@ module Google
|
|
1599
1627
|
def update!(**args)
|
1600
1628
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1601
1629
|
@description = args[:description] if args.key?(:description)
|
1630
|
+
@docker_config = args[:docker_config] if args.key?(:docker_config)
|
1602
1631
|
@format = args[:format] if args.key?(:format)
|
1603
1632
|
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
1604
1633
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -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.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230313"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class DockerRepositoryConfig
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class Empty
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -468,6 +474,13 @@ module Google
|
|
468
474
|
end
|
469
475
|
end
|
470
476
|
|
477
|
+
class DockerRepositoryConfig
|
478
|
+
# @private
|
479
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
480
|
+
property :immutable_tags, as: 'immutableTags'
|
481
|
+
end
|
482
|
+
end
|
483
|
+
|
471
484
|
class Empty
|
472
485
|
# @private
|
473
486
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -831,6 +844,8 @@ module Google
|
|
831
844
|
class Representation < Google::Apis::Core::JsonRepresentation
|
832
845
|
property :create_time, as: 'createTime'
|
833
846
|
property :description, as: 'description'
|
847
|
+
property :docker_config, as: 'dockerConfig', class: Google::Apis::ArtifactregistryV1::DockerRepositoryConfig, decorator: Google::Apis::ArtifactregistryV1::DockerRepositoryConfig::Representation
|
848
|
+
|
834
849
|
property :format, as: 'format'
|
835
850
|
property :kms_key_name, as: 'kmsKeyName'
|
836
851
|
hash :labels, as: 'labels'
|
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.39.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: 2023-
|
11
|
+
date: 2023-03-19 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.39.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: []
|