google-apis-artifactregistry_v1 0.43.0 → 0.45.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 +8 -0
- data/lib/google/apis/artifactregistry_v1/classes.rb +164 -27
- data/lib/google/apis/artifactregistry_v1/gem_version.rb +2 -2
- data/lib/google/apis/artifactregistry_v1/representations.rb +76 -0
- data/lib/google/apis/artifactregistry_v1/service.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5eb4434c9107853daaf6f70ed0504cc99a080ee3d464c438b2378ebf43b1e6d5
|
4
|
+
data.tar.gz: 5bf9159ce0f7dbe25a6709ab069a9f470b7e3461ec3a6ed7f098b043a0444462
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46150201904cdd4a9468477937aaee8f41ffc595939cc62c08dc04cc81f6a065528b185b01b597dc5759f4347e22cef1a25e2831466c9daa9f0abd0438a83118
|
7
|
+
data.tar.gz: 8cd0b3b76a989f6e7112f6f76c36ef66343c4fd7ad65b448dda1de9777cee2ad9348a64ee55fb84384d4f52ad14b25b97c17dddb53887884179c70f4e801551d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-artifactregistry_v1
|
2
2
|
|
3
|
+
### v0.45.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230809
|
6
|
+
|
7
|
+
### v0.44.0 (2023-07-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230719
|
10
|
+
|
3
11
|
### v0.43.0 (2023-07-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230628
|
@@ -74,6 +74,26 @@ module Google
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
+
# Configuration for an Apt remote repository.
|
78
|
+
class AptRepository
|
79
|
+
include Google::Apis::Core::Hashable
|
80
|
+
|
81
|
+
# Publicly available Apt repositories constructed from a common repository base
|
82
|
+
# and a custom repository path.
|
83
|
+
# Corresponds to the JSON property `publicRepository`
|
84
|
+
# @return [Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository]
|
85
|
+
attr_accessor :public_repository
|
86
|
+
|
87
|
+
def initialize(**args)
|
88
|
+
update!(**args)
|
89
|
+
end
|
90
|
+
|
91
|
+
# Update properties of this object
|
92
|
+
def update!(**args)
|
93
|
+
@public_repository = args[:public_repository] if args.key?(:public_repository)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
77
97
|
# The metadata of an LRO from deleting multiple versions.
|
78
98
|
class BatchDeleteVersionsMetadata
|
79
99
|
include Google::Apis::Core::Hashable
|
@@ -637,6 +657,58 @@ module Google
|
|
637
657
|
end
|
638
658
|
end
|
639
659
|
|
660
|
+
# Publicly available Apt repositories constructed from a common repository base
|
661
|
+
# and a custom repository path.
|
662
|
+
class GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository
|
663
|
+
include Google::Apis::Core::Hashable
|
664
|
+
|
665
|
+
# A common public repository base for Apt.
|
666
|
+
# Corresponds to the JSON property `repositoryBase`
|
667
|
+
# @return [String]
|
668
|
+
attr_accessor :repository_base
|
669
|
+
|
670
|
+
# A custom field to define a path to a specific repository from the base.
|
671
|
+
# Corresponds to the JSON property `repositoryPath`
|
672
|
+
# @return [String]
|
673
|
+
attr_accessor :repository_path
|
674
|
+
|
675
|
+
def initialize(**args)
|
676
|
+
update!(**args)
|
677
|
+
end
|
678
|
+
|
679
|
+
# Update properties of this object
|
680
|
+
def update!(**args)
|
681
|
+
@repository_base = args[:repository_base] if args.key?(:repository_base)
|
682
|
+
@repository_path = args[:repository_path] if args.key?(:repository_path)
|
683
|
+
end
|
684
|
+
end
|
685
|
+
|
686
|
+
# Publicly available Yum repositories constructed from a common repository base
|
687
|
+
# and a custom repository path.
|
688
|
+
class GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository
|
689
|
+
include Google::Apis::Core::Hashable
|
690
|
+
|
691
|
+
# A common public repository base for Yum.
|
692
|
+
# Corresponds to the JSON property `repositoryBase`
|
693
|
+
# @return [String]
|
694
|
+
attr_accessor :repository_base
|
695
|
+
|
696
|
+
# A custom field to define a path to a specific repository from the base.
|
697
|
+
# Corresponds to the JSON property `repositoryPath`
|
698
|
+
# @return [String]
|
699
|
+
attr_accessor :repository_path
|
700
|
+
|
701
|
+
def initialize(**args)
|
702
|
+
update!(**args)
|
703
|
+
end
|
704
|
+
|
705
|
+
# Update properties of this object
|
706
|
+
def update!(**args)
|
707
|
+
@repository_base = args[:repository_base] if args.key?(:repository_base)
|
708
|
+
@repository_path = args[:repository_path] if args.key?(:repository_path)
|
709
|
+
end
|
710
|
+
end
|
711
|
+
|
640
712
|
# A hash of file content.
|
641
713
|
class HashProp
|
642
714
|
include Google::Apis::Core::Hashable
|
@@ -1554,13 +1626,13 @@ module Google
|
|
1554
1626
|
# @return [String]
|
1555
1627
|
attr_accessor :name
|
1556
1628
|
|
1557
|
-
# The normal response of the operation
|
1558
|
-
#
|
1559
|
-
#
|
1560
|
-
#
|
1561
|
-
#
|
1562
|
-
#
|
1563
|
-
#
|
1629
|
+
# The normal, successful response of the operation. If the original method
|
1630
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
1631
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
1632
|
+
# response should be the resource. For other methods, the response should have
|
1633
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
1634
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
1635
|
+
# `TakeSnapshotResponse`.
|
1564
1636
|
# Corresponds to the JSON property `response`
|
1565
1637
|
# @return [Hash<String,Object>]
|
1566
1638
|
attr_accessor :response
|
@@ -1643,22 +1715,22 @@ module Google
|
|
1643
1715
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
1644
1716
|
# the request, the resource, or both. To learn which resources support
|
1645
1717
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
1646
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
1718
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
1647
1719
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
1648
1720
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
1649
1721
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
1650
1722
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
1651
1723
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
1652
1724
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
1653
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
1654
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
1655
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
1656
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
1657
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
1658
|
-
# access description: Does not grant access after Sep 2020
|
1659
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1660
|
-
# a description of IAM and its features, see the
|
1661
|
-
# cloud.google.com/iam/docs/).
|
1725
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
1726
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
1727
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
1728
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
1729
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
1730
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
1731
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
1732
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
1733
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
1662
1734
|
class Policy
|
1663
1735
|
include Google::Apis::Core::Hashable
|
1664
1736
|
|
@@ -1826,6 +1898,11 @@ module Google
|
|
1826
1898
|
class RemoteRepositoryConfig
|
1827
1899
|
include Google::Apis::Core::Hashable
|
1828
1900
|
|
1901
|
+
# Configuration for an Apt remote repository.
|
1902
|
+
# Corresponds to the JSON property `aptRepository`
|
1903
|
+
# @return [Google::Apis::ArtifactregistryV1::AptRepository]
|
1904
|
+
attr_accessor :apt_repository
|
1905
|
+
|
1829
1906
|
# The description of the remote source.
|
1830
1907
|
# Corresponds to the JSON property `description`
|
1831
1908
|
# @return [String]
|
@@ -1851,17 +1928,24 @@ module Google
|
|
1851
1928
|
# @return [Google::Apis::ArtifactregistryV1::PythonRepository]
|
1852
1929
|
attr_accessor :python_repository
|
1853
1930
|
|
1931
|
+
# Configuration for a Yum remote repository.
|
1932
|
+
# Corresponds to the JSON property `yumRepository`
|
1933
|
+
# @return [Google::Apis::ArtifactregistryV1::YumRepository]
|
1934
|
+
attr_accessor :yum_repository
|
1935
|
+
|
1854
1936
|
def initialize(**args)
|
1855
1937
|
update!(**args)
|
1856
1938
|
end
|
1857
1939
|
|
1858
1940
|
# Update properties of this object
|
1859
1941
|
def update!(**args)
|
1942
|
+
@apt_repository = args[:apt_repository] if args.key?(:apt_repository)
|
1860
1943
|
@description = args[:description] if args.key?(:description)
|
1861
1944
|
@docker_repository = args[:docker_repository] if args.key?(:docker_repository)
|
1862
1945
|
@maven_repository = args[:maven_repository] if args.key?(:maven_repository)
|
1863
1946
|
@npm_repository = args[:npm_repository] if args.key?(:npm_repository)
|
1864
1947
|
@python_repository = args[:python_repository] if args.key?(:python_repository)
|
1948
|
+
@yum_repository = args[:yum_repository] if args.key?(:yum_repository)
|
1865
1949
|
end
|
1866
1950
|
end
|
1867
1951
|
|
@@ -1949,6 +2033,12 @@ module Google
|
|
1949
2033
|
attr_accessor :satisfies_pzs
|
1950
2034
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
1951
2035
|
|
2036
|
+
# Config for whether to generate SBOMs for resources in this repository, as well
|
2037
|
+
# as output fields describing current state.
|
2038
|
+
# Corresponds to the JSON property `sbomConfig`
|
2039
|
+
# @return [Google::Apis::ArtifactregistryV1::SbomConfig]
|
2040
|
+
attr_accessor :sbom_config
|
2041
|
+
|
1952
2042
|
# Output only. The size, in bytes, of all artifact storage in this repository.
|
1953
2043
|
# Repositories that are generally available or in public preview use this to
|
1954
2044
|
# calculate storage costs.
|
@@ -1985,12 +2075,39 @@ module Google
|
|
1985
2075
|
@name = args[:name] if args.key?(:name)
|
1986
2076
|
@remote_repository_config = args[:remote_repository_config] if args.key?(:remote_repository_config)
|
1987
2077
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
2078
|
+
@sbom_config = args[:sbom_config] if args.key?(:sbom_config)
|
1988
2079
|
@size_bytes = args[:size_bytes] if args.key?(:size_bytes)
|
1989
2080
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1990
2081
|
@virtual_repository_config = args[:virtual_repository_config] if args.key?(:virtual_repository_config)
|
1991
2082
|
end
|
1992
2083
|
end
|
1993
2084
|
|
2085
|
+
# Config for whether to generate SBOMs for resources in this repository, as well
|
2086
|
+
# as output fields describing current state.
|
2087
|
+
class SbomConfig
|
2088
|
+
include Google::Apis::Core::Hashable
|
2089
|
+
|
2090
|
+
# Optional. Config for whether this repository has sbom generation disabled.
|
2091
|
+
# Corresponds to the JSON property `enablementConfig`
|
2092
|
+
# @return [String]
|
2093
|
+
attr_accessor :enablement_config
|
2094
|
+
|
2095
|
+
# Output only. The last time this repository config was set to INHERITED.
|
2096
|
+
# Corresponds to the JSON property `lastEnableTime`
|
2097
|
+
# @return [String]
|
2098
|
+
attr_accessor :last_enable_time
|
2099
|
+
|
2100
|
+
def initialize(**args)
|
2101
|
+
update!(**args)
|
2102
|
+
end
|
2103
|
+
|
2104
|
+
# Update properties of this object
|
2105
|
+
def update!(**args)
|
2106
|
+
@enablement_config = args[:enablement_config] if args.key?(:enablement_config)
|
2107
|
+
@last_enable_time = args[:last_enable_time] if args.key?(:last_enable_time)
|
2108
|
+
end
|
2109
|
+
end
|
2110
|
+
|
1994
2111
|
# Request message for `SetIamPolicy` method.
|
1995
2112
|
class SetIamPolicyRequest
|
1996
2113
|
include Google::Apis::Core::Hashable
|
@@ -2006,22 +2123,22 @@ module Google
|
|
2006
2123
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
2007
2124
|
# the request, the resource, or both. To learn which resources support
|
2008
2125
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
2009
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
2126
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
2010
2127
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
2011
2128
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
2012
2129
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
2013
2130
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
2014
2131
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
2015
2132
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
2016
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
2017
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
2018
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
2019
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
2020
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
2021
|
-
# access description: Does not grant access after Sep 2020
|
2022
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2023
|
-
# a description of IAM and its features, see the
|
2024
|
-
# cloud.google.com/iam/docs/).
|
2133
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
2134
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
2135
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
2136
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
2137
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
2138
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
2139
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2140
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
2141
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
2025
2142
|
# Corresponds to the JSON property `policy`
|
2026
2143
|
# @return [Google::Apis::ArtifactregistryV1::Policy]
|
2027
2144
|
attr_accessor :policy
|
@@ -2620,6 +2737,26 @@ module Google
|
|
2620
2737
|
@package_type = args[:package_type] if args.key?(:package_type)
|
2621
2738
|
end
|
2622
2739
|
end
|
2740
|
+
|
2741
|
+
# Configuration for a Yum remote repository.
|
2742
|
+
class YumRepository
|
2743
|
+
include Google::Apis::Core::Hashable
|
2744
|
+
|
2745
|
+
# Publicly available Yum repositories constructed from a common repository base
|
2746
|
+
# and a custom repository path.
|
2747
|
+
# Corresponds to the JSON property `publicRepository`
|
2748
|
+
# @return [Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository]
|
2749
|
+
attr_accessor :public_repository
|
2750
|
+
|
2751
|
+
def initialize(**args)
|
2752
|
+
update!(**args)
|
2753
|
+
end
|
2754
|
+
|
2755
|
+
# Update properties of this object
|
2756
|
+
def update!(**args)
|
2757
|
+
@public_repository = args[:public_repository] if args.key?(:public_repository)
|
2758
|
+
end
|
2759
|
+
end
|
2623
2760
|
end
|
2624
2761
|
end
|
2625
2762
|
end
|
@@ -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.45.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 = "20230809"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AptRepository
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class BatchDeleteVersionsMetadata
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -112,6 +118,18 @@ module Google
|
|
112
118
|
include Google::Apis::Core::JsonObjectSupport
|
113
119
|
end
|
114
120
|
|
121
|
+
class GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
127
|
+
class GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
115
133
|
class HashProp
|
116
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
135
|
|
@@ -364,6 +382,12 @@ module Google
|
|
364
382
|
include Google::Apis::Core::JsonObjectSupport
|
365
383
|
end
|
366
384
|
|
385
|
+
class SbomConfig
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
367
391
|
class SetIamPolicyRequest
|
368
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
393
|
|
@@ -532,6 +556,12 @@ module Google
|
|
532
556
|
include Google::Apis::Core::JsonObjectSupport
|
533
557
|
end
|
534
558
|
|
559
|
+
class YumRepository
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
535
565
|
class AptArtifact
|
536
566
|
# @private
|
537
567
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -544,6 +574,14 @@ module Google
|
|
544
574
|
end
|
545
575
|
end
|
546
576
|
|
577
|
+
class AptRepository
|
578
|
+
# @private
|
579
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
580
|
+
property :public_repository, as: 'publicRepository', class: Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository, decorator: Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository::Representation
|
581
|
+
|
582
|
+
end
|
583
|
+
end
|
584
|
+
|
547
585
|
class BatchDeleteVersionsMetadata
|
548
586
|
# @private
|
549
587
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -679,6 +717,22 @@ module Google
|
|
679
717
|
end
|
680
718
|
end
|
681
719
|
|
720
|
+
class GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepository
|
721
|
+
# @private
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
723
|
+
property :repository_base, as: 'repositoryBase'
|
724
|
+
property :repository_path, as: 'repositoryPath'
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
728
|
+
class GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository
|
729
|
+
# @private
|
730
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
731
|
+
property :repository_base, as: 'repositoryBase'
|
732
|
+
property :repository_path, as: 'repositoryPath'
|
733
|
+
end
|
734
|
+
end
|
735
|
+
|
682
736
|
class HashProp
|
683
737
|
# @private
|
684
738
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1037,6 +1091,8 @@ module Google
|
|
1037
1091
|
class RemoteRepositoryConfig
|
1038
1092
|
# @private
|
1039
1093
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1094
|
+
property :apt_repository, as: 'aptRepository', class: Google::Apis::ArtifactregistryV1::AptRepository, decorator: Google::Apis::ArtifactregistryV1::AptRepository::Representation
|
1095
|
+
|
1040
1096
|
property :description, as: 'description'
|
1041
1097
|
property :docker_repository, as: 'dockerRepository', class: Google::Apis::ArtifactregistryV1::DockerRepository, decorator: Google::Apis::ArtifactregistryV1::DockerRepository::Representation
|
1042
1098
|
|
@@ -1046,6 +1102,8 @@ module Google
|
|
1046
1102
|
|
1047
1103
|
property :python_repository, as: 'pythonRepository', class: Google::Apis::ArtifactregistryV1::PythonRepository, decorator: Google::Apis::ArtifactregistryV1::PythonRepository::Representation
|
1048
1104
|
|
1105
|
+
property :yum_repository, as: 'yumRepository', class: Google::Apis::ArtifactregistryV1::YumRepository, decorator: Google::Apis::ArtifactregistryV1::YumRepository::Representation
|
1106
|
+
|
1049
1107
|
end
|
1050
1108
|
end
|
1051
1109
|
|
@@ -1069,6 +1127,8 @@ module Google
|
|
1069
1127
|
property :remote_repository_config, as: 'remoteRepositoryConfig', class: Google::Apis::ArtifactregistryV1::RemoteRepositoryConfig, decorator: Google::Apis::ArtifactregistryV1::RemoteRepositoryConfig::Representation
|
1070
1128
|
|
1071
1129
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
1130
|
+
property :sbom_config, as: 'sbomConfig', class: Google::Apis::ArtifactregistryV1::SbomConfig, decorator: Google::Apis::ArtifactregistryV1::SbomConfig::Representation
|
1131
|
+
|
1072
1132
|
property :size_bytes, :numeric_string => true, as: 'sizeBytes'
|
1073
1133
|
property :update_time, as: 'updateTime'
|
1074
1134
|
property :virtual_repository_config, as: 'virtualRepositoryConfig', class: Google::Apis::ArtifactregistryV1::VirtualRepositoryConfig, decorator: Google::Apis::ArtifactregistryV1::VirtualRepositoryConfig::Representation
|
@@ -1076,6 +1136,14 @@ module Google
|
|
1076
1136
|
end
|
1077
1137
|
end
|
1078
1138
|
|
1139
|
+
class SbomConfig
|
1140
|
+
# @private
|
1141
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1142
|
+
property :enablement_config, as: 'enablementConfig'
|
1143
|
+
property :last_enable_time, as: 'lastEnableTime'
|
1144
|
+
end
|
1145
|
+
end
|
1146
|
+
|
1079
1147
|
class SetIamPolicyRequest
|
1080
1148
|
# @private
|
1081
1149
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1288,6 +1356,14 @@ module Google
|
|
1288
1356
|
property :package_type, as: 'packageType'
|
1289
1357
|
end
|
1290
1358
|
end
|
1359
|
+
|
1360
|
+
class YumRepository
|
1361
|
+
# @private
|
1362
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1363
|
+
property :public_repository, as: 'publicRepository', class: Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository, decorator: Google::Apis::ArtifactregistryV1::GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepository::Representation
|
1364
|
+
|
1365
|
+
end
|
1366
|
+
end
|
1291
1367
|
end
|
1292
1368
|
end
|
1293
1369
|
end
|
@@ -1306,8 +1306,8 @@ module Google
|
|
1306
1306
|
|
1307
1307
|
# Lists tags.
|
1308
1308
|
# @param [String] parent
|
1309
|
-
# The name of the parent package whose tags will be listed.
|
1310
|
-
# p1/locations/us-central1/repositories/repo1/packages/pkg1
|
1309
|
+
# The name of the parent package whose tags will be listed. For example: `
|
1310
|
+
# projects/p1/locations/us-central1/repositories/repo1/packages/pkg1`.
|
1311
1311
|
# @param [String] filter
|
1312
1312
|
# An expression for filtering the results of the request. Filter rules are case
|
1313
1313
|
# insensitive. The fields eligible for filtering are: * `version` An example of
|
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.45.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-08-13 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.45.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: []
|