google-apis-artifactregistry_v1beta2 0.34.0 → 0.36.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: df2933764fb7da3ae27c80eb34f46d4ad3d924f1f212987e85a1a6fd301e8584
4
- data.tar.gz: c731edd3ff06ed03c9d914d47ff2aec38437dae849b0b81ae17dfd2888e4bbfb
3
+ metadata.gz: 63dbf640c23c1f31f3d2c61c5958a90cbb7067da28bf6650df96faece7436b91
4
+ data.tar.gz: 2619b1b0275292d7d00cc9991489cb267df76d50f639f0b53b04f95df411d1d3
5
5
  SHA512:
6
- metadata.gz: bf2104f427e9b55d33c570fc8080b4b68ba3c3fda825bfb96deb14f2daa0d6d24d5e145dd0f86390c726e676ca578bf3fe050f3775a39aa764ab9739d5a707fc
7
- data.tar.gz: 37c0576913e597eb2ebda0263f596966e1004ee3e99af2357d7ffcb32157f3a517333f84d8ec7012325d967bfe2c95c43c21b33bdf6b8bf475b5851748242a41
6
+ metadata.gz: d75b196c24cbf30d041ccb41e4d340faa3244859fd9e736129671c0807670b6dc1e4d6d31b8d8a51c212ae62091565a99c0ed28632644a2d4cfcc1d0bafae63d
7
+ data.tar.gz: bf3774f7c2f434acd33bff204a5cd70640e26c27046e7a2fa78dcc2cd95814055a20e969c711eb539aba20b130439d6b4996ac3b842cd4ecd6bafe8f0a682ba9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-artifactregistry_v1beta2
2
2
 
3
+ ### v0.36.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230202
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.35.0 (2022-10-31)
9
+
10
+ * Regenerated from discovery document revision 20221022
11
+
3
12
  ### v0.34.0 (2022-10-20)
4
13
 
5
14
  * Regenerated using generator version 0.11.0
@@ -112,22 +112,22 @@ module Google
112
112
  # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
113
113
  # project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
114
114
  # email address that represents a Google group. For example, `admins@example.com`
115
- # . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
116
- # identifier) representing a user that has been recently deleted. For example, `
117
- # alice@example.com?uid=123456789012345678901`. If the user is recovered, this
118
- # value reverts to `user:`emailid`` and the recovered user retains the role in
119
- # the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
120
- # address (plus unique identifier) representing a service account that has been
121
- # recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
115
+ # . * `domain:`domain``: The G Suite domain (primary) that represents all the
116
+ # users of that domain. For example, `google.com` or `example.com`. * `deleted:
117
+ # user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
118
+ # representing a user that has been recently deleted. For example, `alice@
119
+ # example.com?uid=123456789012345678901`. If the user is recovered, this value
120
+ # reverts to `user:`emailid`` and the recovered user retains the role in the
121
+ # binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
122
+ # (plus unique identifier) representing a service account that has been recently
123
+ # deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
122
124
  # 123456789012345678901`. If the service account is undeleted, this value
123
125
  # reverts to `serviceAccount:`emailid`` and the undeleted service account
124
126
  # retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
125
127
  # An email address (plus unique identifier) representing a Google group that has
126
128
  # been recently deleted. For example, `admins@example.com?uid=
127
129
  # 123456789012345678901`. If the group is recovered, this value reverts to `
128
- # group:`emailid`` and the recovered group retains the role in the binding. * `
129
- # domain:`domain``: The G Suite domain (primary) that represents all the users
130
- # of that domain. For example, `google.com` or `example.com`.
130
+ # group:`emailid`` and the recovered group retains the role in the binding.
131
131
  # Corresponds to the JSON property `members`
132
132
  # @return [Array<String>]
133
133
  attr_accessor :members
@@ -1029,6 +1029,12 @@ module Google
1029
1029
  # @return [String]
1030
1030
  attr_accessor :name
1031
1031
 
1032
+ # Output only. If set, the repository satisfies physical zone separation.
1033
+ # Corresponds to the JSON property `satisfiesPzs`
1034
+ # @return [Boolean]
1035
+ attr_accessor :satisfies_pzs
1036
+ alias_method :satisfies_pzs?, :satisfies_pzs
1037
+
1032
1038
  # Output only. The size, in bytes, of all artifact storage in this repository.
1033
1039
  # Repositories that are generally available or in public preview use this to
1034
1040
  # calculate storage costs.
@@ -1054,6 +1060,7 @@ module Google
1054
1060
  @labels = args[:labels] if args.key?(:labels)
1055
1061
  @maven_config = args[:maven_config] if args.key?(:maven_config)
1056
1062
  @name = args[:name] if args.key?(:name)
1063
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1057
1064
  @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
1058
1065
  @update_time = args[:update_time] if args.key?(:update_time)
1059
1066
  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.34.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221003"
25
+ REVISION = "20230202"
26
26
  end
27
27
  end
28
28
  end
@@ -565,6 +565,7 @@ module Google
565
565
  property :maven_config, as: 'mavenConfig', class: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig, decorator: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig::Representation
566
566
 
567
567
  property :name, as: 'name'
568
+ property :satisfies_pzs, as: 'satisfiesPzs'
568
569
  property :size_bytes, :numeric_string => true, as: 'sizeBytes'
569
570
  property :update_time, as: 'updateTime'
570
571
  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.34.0
4
+ version: 0.36.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-10-21 00:00:00.000000000 Z
11
+ date: 2023-02-05 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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta2/v0.36.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Artifact Registry API V1beta2