google-apis-artifactregistry_v1beta1 0.13.0 → 0.17.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: 0c39d46721ea2d06200bb5e8f6cb478b7bed0efdde3860d55b921b09c1b81f77
4
- data.tar.gz: ce63dd46aa42b8936a0d1b80d4a87e2a2e3445249c4a47024d272d2a015c64ed
3
+ metadata.gz: 3fcd250b7f7934dc3fbab5e36cd7cdbdb0191ac86b6e74da44e285148756c286
4
+ data.tar.gz: 1bd01632f562ed3b5161762565acc79a42ab319ce1bd0335c6cc916e88ffe0e6
5
5
  SHA512:
6
- metadata.gz: 611f8bd83edeb683d60b4d06c67d53a7d0ce0750f0c0888d225a1ab59a202579b8b14d1833db082d5a54bf098d4ed5f27eebe8aaa6270cbe16790721b7da8a03
7
- data.tar.gz: a051682818f108d29f8f0ffb9e1f0150c39856cdfb71f14e2c9b6c953fba791b458fe9375b6d4a814a9c105ab2ad9c73c4dc9be0d41efb9a39946f721e4a6c80
6
+ metadata.gz: 86828c709ed72fa1ab9d1c6c016b3aa4448e3ea8691535cc4a43af82a7af2c2cafd6966533b26600a51e5e9c7fc7819435af829a2e691fa8bf2bad515ee3e0a8
7
+ data.tar.gz: 8c9ed90878d5329f2f27775ecf1659454c500066402b2e85a04681e0ddfcec0e0a75df023ef02b1454db15b1f42c2dd906721cdb4d558b5385b297d1979d5814
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-artifactregistry_v1beta1
2
2
 
3
+ ### v0.17.0 (2022-01-15)
4
+
5
+ * Regenerated from discovery document revision 20220113
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.16.0 (2021-12-14)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.15.0 (2021-12-08)
13
+
14
+ * Regenerated from discovery document revision 20211203
15
+
16
+ ### v0.14.0 (2021-11-13)
17
+
18
+ * Regenerated from discovery document revision 20211108
19
+
3
20
  ### v0.13.0 (2021-10-22)
4
21
 
5
22
  * Regenerated from discovery document revision 20211015
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/artifactregistry_v1beta1"
51
51
  client = Google::Apis::ArtifactregistryV1beta1::ArtifactRegistryService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -22,58 +22,6 @@ module Google
22
22
  module Apis
23
23
  module ArtifactregistryV1beta1
24
24
 
25
- # A detailed representation of an Apt artifact. Information in the record is
26
- # derived from the archive's control file. See https://www.debian.org/doc/debian-
27
- # policy/ch-controlfields.html
28
- class AptArtifact
29
- include Google::Apis::Core::Hashable
30
-
31
- # Output only. Operating system architecture of the artifact.
32
- # Corresponds to the JSON property `architecture`
33
- # @return [String]
34
- attr_accessor :architecture
35
-
36
- # Output only. Repository component of the artifact.
37
- # Corresponds to the JSON property `component`
38
- # @return [String]
39
- attr_accessor :component
40
-
41
- # Output only. Contents of the artifact's control metadata file.
42
- # Corresponds to the JSON property `controlFile`
43
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
44
- # @return [String]
45
- attr_accessor :control_file
46
-
47
- # Output only. The Artifact Registry resource name of the artifact.
48
- # Corresponds to the JSON property `name`
49
- # @return [String]
50
- attr_accessor :name
51
-
52
- # Output only. The Apt package name of the artifact.
53
- # Corresponds to the JSON property `packageName`
54
- # @return [String]
55
- attr_accessor :package_name
56
-
57
- # Output only. An artifact is a binary or source package.
58
- # Corresponds to the JSON property `packageType`
59
- # @return [String]
60
- attr_accessor :package_type
61
-
62
- def initialize(**args)
63
- update!(**args)
64
- end
65
-
66
- # Update properties of this object
67
- def update!(**args)
68
- @architecture = args[:architecture] if args.key?(:architecture)
69
- @component = args[:component] if args.key?(:component)
70
- @control_file = args[:control_file] if args.key?(:control_file)
71
- @name = args[:name] if args.key?(:name)
72
- @package_name = args[:package_name] if args.key?(:package_name)
73
- @package_type = args[:package_type] if args.key?(:package_type)
74
- end
75
- end
76
-
77
25
  # Associates `members`, or principals, with a `role`.
78
26
  class Binding
79
27
  include Google::Apis::Core::Hashable
@@ -293,168 +241,6 @@ module Google
293
241
  end
294
242
  end
295
243
 
296
- # Error information explaining why a package was not imported.
297
- class ImportAptArtifactsErrorInfo
298
- include Google::Apis::Core::Hashable
299
-
300
- # The `Status` type defines a logical error model that is suitable for different
301
- # programming environments, including REST APIs and RPC APIs. It is used by [
302
- # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
303
- # data: error code, error message, and error details. You can find out more
304
- # about this error model and how to work with it in the [API Design Guide](https:
305
- # //cloud.google.com/apis/design/errors).
306
- # Corresponds to the JSON property `error`
307
- # @return [Google::Apis::ArtifactregistryV1beta1::Status]
308
- attr_accessor :error
309
-
310
- # Google Cloud Storage location where the artifacts currently reside.
311
- # Corresponds to the JSON property `gcsSource`
312
- # @return [Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsGcsSource]
313
- attr_accessor :gcs_source
314
-
315
- def initialize(**args)
316
- update!(**args)
317
- end
318
-
319
- # Update properties of this object
320
- def update!(**args)
321
- @error = args[:error] if args.key?(:error)
322
- @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
323
- end
324
- end
325
-
326
- # Google Cloud Storage location where the artifacts currently reside.
327
- class ImportAptArtifactsGcsSource
328
- include Google::Apis::Core::Hashable
329
-
330
- # Cloud Storage paths URI (e.g., gs://my_bucket//my_object).
331
- # Corresponds to the JSON property `uris`
332
- # @return [Array<String>]
333
- attr_accessor :uris
334
-
335
- # Supports URI wildcards for matching multiple objects from a single URI.
336
- # Corresponds to the JSON property `useWildcards`
337
- # @return [Boolean]
338
- attr_accessor :use_wildcards
339
- alias_method :use_wildcards?, :use_wildcards
340
-
341
- def initialize(**args)
342
- update!(**args)
343
- end
344
-
345
- # Update properties of this object
346
- def update!(**args)
347
- @uris = args[:uris] if args.key?(:uris)
348
- @use_wildcards = args[:use_wildcards] if args.key?(:use_wildcards)
349
- end
350
- end
351
-
352
- # The response message from importing artifacts.
353
- class ImportAptArtifactsResponse
354
- include Google::Apis::Core::Hashable
355
-
356
- # The Apt artifacts updated.
357
- # Corresponds to the JSON property `aptArtifacts`
358
- # @return [Array<Google::Apis::ArtifactregistryV1beta1::AptArtifact>]
359
- attr_accessor :apt_artifacts
360
-
361
- # Detailed error info for packages that were not imported.
362
- # Corresponds to the JSON property `errors`
363
- # @return [Array<Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsErrorInfo>]
364
- attr_accessor :errors
365
-
366
- def initialize(**args)
367
- update!(**args)
368
- end
369
-
370
- # Update properties of this object
371
- def update!(**args)
372
- @apt_artifacts = args[:apt_artifacts] if args.key?(:apt_artifacts)
373
- @errors = args[:errors] if args.key?(:errors)
374
- end
375
- end
376
-
377
- # Error information explaining why a package was not imported.
378
- class ImportYumArtifactsErrorInfo
379
- include Google::Apis::Core::Hashable
380
-
381
- # The `Status` type defines a logical error model that is suitable for different
382
- # programming environments, including REST APIs and RPC APIs. It is used by [
383
- # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
384
- # data: error code, error message, and error details. You can find out more
385
- # about this error model and how to work with it in the [API Design Guide](https:
386
- # //cloud.google.com/apis/design/errors).
387
- # Corresponds to the JSON property `error`
388
- # @return [Google::Apis::ArtifactregistryV1beta1::Status]
389
- attr_accessor :error
390
-
391
- # Google Cloud Storage location where the artifacts currently reside.
392
- # Corresponds to the JSON property `gcsSource`
393
- # @return [Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsGcsSource]
394
- attr_accessor :gcs_source
395
-
396
- def initialize(**args)
397
- update!(**args)
398
- end
399
-
400
- # Update properties of this object
401
- def update!(**args)
402
- @error = args[:error] if args.key?(:error)
403
- @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
404
- end
405
- end
406
-
407
- # Google Cloud Storage location where the artifacts currently reside.
408
- class ImportYumArtifactsGcsSource
409
- include Google::Apis::Core::Hashable
410
-
411
- # Cloud Storage paths URI (e.g., gs://my_bucket//my_object).
412
- # Corresponds to the JSON property `uris`
413
- # @return [Array<String>]
414
- attr_accessor :uris
415
-
416
- # Supports URI wildcards for matching multiple objects from a single URI.
417
- # Corresponds to the JSON property `useWildcards`
418
- # @return [Boolean]
419
- attr_accessor :use_wildcards
420
- alias_method :use_wildcards?, :use_wildcards
421
-
422
- def initialize(**args)
423
- update!(**args)
424
- end
425
-
426
- # Update properties of this object
427
- def update!(**args)
428
- @uris = args[:uris] if args.key?(:uris)
429
- @use_wildcards = args[:use_wildcards] if args.key?(:use_wildcards)
430
- end
431
- end
432
-
433
- # The response message from importing artifacts.
434
- class ImportYumArtifactsResponse
435
- include Google::Apis::Core::Hashable
436
-
437
- # Detailed error info for packages that were not imported.
438
- # Corresponds to the JSON property `errors`
439
- # @return [Array<Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsErrorInfo>]
440
- attr_accessor :errors
441
-
442
- # The yum artifacts updated.
443
- # Corresponds to the JSON property `yumArtifacts`
444
- # @return [Array<Google::Apis::ArtifactregistryV1beta1::YumArtifact>]
445
- attr_accessor :yum_artifacts
446
-
447
- def initialize(**args)
448
- update!(**args)
449
- end
450
-
451
- # Update properties of this object
452
- def update!(**args)
453
- @errors = args[:errors] if args.key?(:errors)
454
- @yum_artifacts = args[:yum_artifacts] if args.key?(:yum_artifacts)
455
- end
456
- end
457
-
458
244
  # The response from listing files.
459
245
  class ListFilesResponse
460
246
  include Google::Apis::Core::Hashable
@@ -1008,7 +794,8 @@ module Google
1008
794
  attr_accessor :name
1009
795
 
1010
796
  # The name of the version the tag refers to, for example: "projects/p1/locations/
1011
- # us-central1/repositories/repo1/packages/pkg1/versions/sha256:5243811"
797
+ # us-central1/repositories/repo1/packages/pkg1/versions/sha256:5243811" If the
798
+ # package or version ID parts contain slashes, the slashes are escaped.
1012
799
  # Corresponds to the JSON property `version`
1013
800
  # @return [String]
1014
801
  attr_accessor :version
@@ -1064,86 +851,6 @@ module Google
1064
851
  end
1065
852
  end
1066
853
 
1067
- # The response to upload an artifact.
1068
- class UploadAptArtifactMediaResponse
1069
- include Google::Apis::Core::Hashable
1070
-
1071
- # This resource represents a long-running operation that is the result of a
1072
- # network API call.
1073
- # Corresponds to the JSON property `operation`
1074
- # @return [Google::Apis::ArtifactregistryV1beta1::Operation]
1075
- attr_accessor :operation
1076
-
1077
- def initialize(**args)
1078
- update!(**args)
1079
- end
1080
-
1081
- # Update properties of this object
1082
- def update!(**args)
1083
- @operation = args[:operation] if args.key?(:operation)
1084
- end
1085
- end
1086
-
1087
- # The response of the completed artifact upload operation. This response is
1088
- # contained in the Operation and available to users.
1089
- class UploadAptArtifactResponse
1090
- include Google::Apis::Core::Hashable
1091
-
1092
- # The Apt artifacts updated.
1093
- # Corresponds to the JSON property `aptArtifacts`
1094
- # @return [Array<Google::Apis::ArtifactregistryV1beta1::AptArtifact>]
1095
- attr_accessor :apt_artifacts
1096
-
1097
- def initialize(**args)
1098
- update!(**args)
1099
- end
1100
-
1101
- # Update properties of this object
1102
- def update!(**args)
1103
- @apt_artifacts = args[:apt_artifacts] if args.key?(:apt_artifacts)
1104
- end
1105
- end
1106
-
1107
- # The response to upload an artifact.
1108
- class UploadYumArtifactMediaResponse
1109
- include Google::Apis::Core::Hashable
1110
-
1111
- # This resource represents a long-running operation that is the result of a
1112
- # network API call.
1113
- # Corresponds to the JSON property `operation`
1114
- # @return [Google::Apis::ArtifactregistryV1beta1::Operation]
1115
- attr_accessor :operation
1116
-
1117
- def initialize(**args)
1118
- update!(**args)
1119
- end
1120
-
1121
- # Update properties of this object
1122
- def update!(**args)
1123
- @operation = args[:operation] if args.key?(:operation)
1124
- end
1125
- end
1126
-
1127
- # The response of the completed artifact upload operation. This response is
1128
- # contained in the Operation and available to users.
1129
- class UploadYumArtifactResponse
1130
- include Google::Apis::Core::Hashable
1131
-
1132
- # The Apt artifacts updated.
1133
- # Corresponds to the JSON property `yumArtifacts`
1134
- # @return [Array<Google::Apis::ArtifactregistryV1beta1::YumArtifact>]
1135
- attr_accessor :yum_artifacts
1136
-
1137
- def initialize(**args)
1138
- update!(**args)
1139
- end
1140
-
1141
- # Update properties of this object
1142
- def update!(**args)
1143
- @yum_artifacts = args[:yum_artifacts] if args.key?(:yum_artifacts)
1144
- end
1145
- end
1146
-
1147
854
  # The body of a version resource. A version resource represents a collection of
1148
855
  # components, such as files and other data. This may correspond to a version in
1149
856
  # many package management schemes.
@@ -1191,43 +898,6 @@ module Google
1191
898
  @update_time = args[:update_time] if args.key?(:update_time)
1192
899
  end
1193
900
  end
1194
-
1195
- # A detailed representation of a Yum artifact.
1196
- class YumArtifact
1197
- include Google::Apis::Core::Hashable
1198
-
1199
- # Output only. Operating system architecture of the artifact.
1200
- # Corresponds to the JSON property `architecture`
1201
- # @return [String]
1202
- attr_accessor :architecture
1203
-
1204
- # Output only. The Artifact Registry resource name of the artifact.
1205
- # Corresponds to the JSON property `name`
1206
- # @return [String]
1207
- attr_accessor :name
1208
-
1209
- # Output only. The yum package name of the artifact.
1210
- # Corresponds to the JSON property `packageName`
1211
- # @return [String]
1212
- attr_accessor :package_name
1213
-
1214
- # Output only. An artifact is a binary or source package.
1215
- # Corresponds to the JSON property `packageType`
1216
- # @return [String]
1217
- attr_accessor :package_type
1218
-
1219
- def initialize(**args)
1220
- update!(**args)
1221
- end
1222
-
1223
- # Update properties of this object
1224
- def update!(**args)
1225
- @architecture = args[:architecture] if args.key?(:architecture)
1226
- @name = args[:name] if args.key?(:name)
1227
- @package_name = args[:package_name] if args.key?(:package_name)
1228
- @package_type = args[:package_type] if args.key?(:package_type)
1229
- end
1230
- end
1231
901
  end
1232
902
  end
1233
903
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ArtifactregistryV1beta1
18
18
  # Version of the google-apis-artifactregistry_v1beta1 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.17.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211015"
25
+ REVISION = "20220113"
26
26
  end
27
27
  end
28
28
  end
@@ -22,12 +22,6 @@ module Google
22
22
  module Apis
23
23
  module ArtifactregistryV1beta1
24
24
 
25
- class AptArtifact
26
- class Representation < Google::Apis::Core::JsonRepresentation; end
27
-
28
- include Google::Apis::Core::JsonObjectSupport
29
- end
30
-
31
25
  class Binding
32
26
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
27
 
@@ -58,42 +52,6 @@ module Google
58
52
  include Google::Apis::Core::JsonObjectSupport
59
53
  end
60
54
 
61
- class ImportAptArtifactsErrorInfo
62
- class Representation < Google::Apis::Core::JsonRepresentation; end
63
-
64
- include Google::Apis::Core::JsonObjectSupport
65
- end
66
-
67
- class ImportAptArtifactsGcsSource
68
- class Representation < Google::Apis::Core::JsonRepresentation; end
69
-
70
- include Google::Apis::Core::JsonObjectSupport
71
- end
72
-
73
- class ImportAptArtifactsResponse
74
- class Representation < Google::Apis::Core::JsonRepresentation; end
75
-
76
- include Google::Apis::Core::JsonObjectSupport
77
- end
78
-
79
- class ImportYumArtifactsErrorInfo
80
- class Representation < Google::Apis::Core::JsonRepresentation; end
81
-
82
- include Google::Apis::Core::JsonObjectSupport
83
- end
84
-
85
- class ImportYumArtifactsGcsSource
86
- class Representation < Google::Apis::Core::JsonRepresentation; end
87
-
88
- include Google::Apis::Core::JsonObjectSupport
89
- end
90
-
91
- class ImportYumArtifactsResponse
92
- class Representation < Google::Apis::Core::JsonRepresentation; end
93
-
94
- include Google::Apis::Core::JsonObjectSupport
95
- end
96
-
97
55
  class ListFilesResponse
98
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
57
 
@@ -190,54 +148,12 @@ module Google
190
148
  include Google::Apis::Core::JsonObjectSupport
191
149
  end
192
150
 
193
- class UploadAptArtifactMediaResponse
194
- class Representation < Google::Apis::Core::JsonRepresentation; end
195
-
196
- include Google::Apis::Core::JsonObjectSupport
197
- end
198
-
199
- class UploadAptArtifactResponse
200
- class Representation < Google::Apis::Core::JsonRepresentation; end
201
-
202
- include Google::Apis::Core::JsonObjectSupport
203
- end
204
-
205
- class UploadYumArtifactMediaResponse
206
- class Representation < Google::Apis::Core::JsonRepresentation; end
207
-
208
- include Google::Apis::Core::JsonObjectSupport
209
- end
210
-
211
- class UploadYumArtifactResponse
212
- class Representation < Google::Apis::Core::JsonRepresentation; end
213
-
214
- include Google::Apis::Core::JsonObjectSupport
215
- end
216
-
217
151
  class Version
218
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
153
 
220
154
  include Google::Apis::Core::JsonObjectSupport
221
155
  end
222
156
 
223
- class YumArtifact
224
- class Representation < Google::Apis::Core::JsonRepresentation; end
225
-
226
- include Google::Apis::Core::JsonObjectSupport
227
- end
228
-
229
- class AptArtifact
230
- # @private
231
- class Representation < Google::Apis::Core::JsonRepresentation
232
- property :architecture, as: 'architecture'
233
- property :component, as: 'component'
234
- property :control_file, :base64 => true, as: 'controlFile'
235
- property :name, as: 'name'
236
- property :package_name, as: 'packageName'
237
- property :package_type, as: 'packageType'
238
- end
239
- end
240
-
241
157
  class Binding
242
158
  # @private
243
159
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -285,62 +201,6 @@ module Google
285
201
  end
286
202
  end
287
203
 
288
- class ImportAptArtifactsErrorInfo
289
- # @private
290
- class Representation < Google::Apis::Core::JsonRepresentation
291
- property :error, as: 'error', class: Google::Apis::ArtifactregistryV1beta1::Status, decorator: Google::Apis::ArtifactregistryV1beta1::Status::Representation
292
-
293
- property :gcs_source, as: 'gcsSource', class: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsGcsSource, decorator: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsGcsSource::Representation
294
-
295
- end
296
- end
297
-
298
- class ImportAptArtifactsGcsSource
299
- # @private
300
- class Representation < Google::Apis::Core::JsonRepresentation
301
- collection :uris, as: 'uris'
302
- property :use_wildcards, as: 'useWildcards'
303
- end
304
- end
305
-
306
- class ImportAptArtifactsResponse
307
- # @private
308
- class Representation < Google::Apis::Core::JsonRepresentation
309
- collection :apt_artifacts, as: 'aptArtifacts', class: Google::Apis::ArtifactregistryV1beta1::AptArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::AptArtifact::Representation
310
-
311
- collection :errors, as: 'errors', class: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsErrorInfo, decorator: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsErrorInfo::Representation
312
-
313
- end
314
- end
315
-
316
- class ImportYumArtifactsErrorInfo
317
- # @private
318
- class Representation < Google::Apis::Core::JsonRepresentation
319
- property :error, as: 'error', class: Google::Apis::ArtifactregistryV1beta1::Status, decorator: Google::Apis::ArtifactregistryV1beta1::Status::Representation
320
-
321
- property :gcs_source, as: 'gcsSource', class: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsGcsSource, decorator: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsGcsSource::Representation
322
-
323
- end
324
- end
325
-
326
- class ImportYumArtifactsGcsSource
327
- # @private
328
- class Representation < Google::Apis::Core::JsonRepresentation
329
- collection :uris, as: 'uris'
330
- property :use_wildcards, as: 'useWildcards'
331
- end
332
- end
333
-
334
- class ImportYumArtifactsResponse
335
- # @private
336
- class Representation < Google::Apis::Core::JsonRepresentation
337
- collection :errors, as: 'errors', class: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsErrorInfo, decorator: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsErrorInfo::Representation
338
-
339
- collection :yum_artifacts, as: 'yumArtifacts', class: Google::Apis::ArtifactregistryV1beta1::YumArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::YumArtifact::Representation
340
-
341
- end
342
- end
343
-
344
204
  class ListFilesResponse
345
205
  # @private
346
206
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -490,38 +350,6 @@ module Google
490
350
  end
491
351
  end
492
352
 
493
- class UploadAptArtifactMediaResponse
494
- # @private
495
- class Representation < Google::Apis::Core::JsonRepresentation
496
- property :operation, as: 'operation', class: Google::Apis::ArtifactregistryV1beta1::Operation, decorator: Google::Apis::ArtifactregistryV1beta1::Operation::Representation
497
-
498
- end
499
- end
500
-
501
- class UploadAptArtifactResponse
502
- # @private
503
- class Representation < Google::Apis::Core::JsonRepresentation
504
- collection :apt_artifacts, as: 'aptArtifacts', class: Google::Apis::ArtifactregistryV1beta1::AptArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::AptArtifact::Representation
505
-
506
- end
507
- end
508
-
509
- class UploadYumArtifactMediaResponse
510
- # @private
511
- class Representation < Google::Apis::Core::JsonRepresentation
512
- property :operation, as: 'operation', class: Google::Apis::ArtifactregistryV1beta1::Operation, decorator: Google::Apis::ArtifactregistryV1beta1::Operation::Representation
513
-
514
- end
515
- end
516
-
517
- class UploadYumArtifactResponse
518
- # @private
519
- class Representation < Google::Apis::Core::JsonRepresentation
520
- collection :yum_artifacts, as: 'yumArtifacts', class: Google::Apis::ArtifactregistryV1beta1::YumArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::YumArtifact::Representation
521
-
522
- end
523
- end
524
-
525
353
  class Version
526
354
  # @private
527
355
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -533,16 +361,6 @@ module Google
533
361
  property :update_time, as: 'updateTime'
534
362
  end
535
363
  end
536
-
537
- class YumArtifact
538
- # @private
539
- class Representation < Google::Apis::Core::JsonRepresentation
540
- property :architecture, as: 'architecture'
541
- property :name, as: 'name'
542
- property :package_name, as: 'packageName'
543
- property :package_type, as: 'packageType'
544
- end
545
- end
546
364
  end
547
365
  end
548
366
  end
@@ -157,7 +157,7 @@ module Google
157
157
  # Creates a repository. The returned Operation will finish once the repository
158
158
  # has been created. Its response will be the created Repository.
159
159
  # @param [String] parent
160
- # The name of the parent resource where the repository will be created.
160
+ # Required. The name of the parent resource where the repository will be created.
161
161
  # @param [Google::Apis::ArtifactregistryV1beta1::Repository] repository_object
162
162
  # @param [String] repository_id
163
163
  # The repository id to use for this repository.
@@ -195,7 +195,7 @@ module Google
195
195
  # finish once the repository has been deleted. It will not have any Operation
196
196
  # metadata and will return a google.protobuf.Empty response.
197
197
  # @param [String] name
198
- # The name of the repository to delete.
198
+ # Required. The name of the repository to delete.
199
199
  # @param [String] fields
200
200
  # Selector specifying which fields to include in a partial response.
201
201
  # @param [String] quota_user
@@ -225,7 +225,7 @@ module Google
225
225
 
226
226
  # Gets a repository.
227
227
  # @param [String] name
228
- # The name of the repository to retrieve.
228
+ # Required. The name of the repository to retrieve.
229
229
  # @param [String] fields
230
230
  # Selector specifying which fields to include in a partial response.
231
231
  # @param [String] quota_user
@@ -258,13 +258,16 @@ module Google
258
258
  # REQUIRED: The resource for which the policy is being requested. See the
259
259
  # operation documentation for the appropriate value for this field.
260
260
  # @param [Fixnum] options_requested_policy_version
261
- # Optional. The policy format version to be returned. Valid values are 0, 1, and
262
- # 3. Requests specifying an invalid value will be rejected. Requests for
263
- # policies with any conditional bindings must specify version 3. Policies
264
- # without any conditional bindings may specify any valid value or leave the
265
- # field unset. To learn which resources support conditions in their IAM policies,
266
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
267
- # resource-policies).
261
+ # Optional. The maximum policy version that will be used to format the policy.
262
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
263
+ # rejected. Requests for policies with any conditional role bindings must
264
+ # specify version 3. Policies with no conditional role bindings may specify any
265
+ # valid value or leave the field unset. The policy in the response might use the
266
+ # policy version that you specified, or it might use a lower policy version. For
267
+ # example, if you specify version 3, but the policy has no conditional role
268
+ # bindings, the response uses version 1. To learn which resources support
269
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
270
+ # google.com/iam/help/conditions/resource-policies).
268
271
  # @param [String] fields
269
272
  # Selector specifying which fields to include in a partial response.
270
273
  # @param [String] quota_user
@@ -295,9 +298,9 @@ module Google
295
298
 
296
299
  # Lists repositories.
297
300
  # @param [String] parent
298
- # The name of the parent resource whose repositories will be listed.
301
+ # Required. The name of the parent resource whose repositories will be listed.
299
302
  # @param [Fixnum] page_size
300
- # The maximum number of repositories to return.
303
+ # The maximum number of repositories to return. Maximum page size is 1,000.
301
304
  # @param [String] page_token
302
305
  # The next_page_token value returned from a previous list request, if any.
303
306
  # @param [String] fields
@@ -513,7 +516,7 @@ module Google
513
516
  # Deletes a package and all of its versions and tags. The returned operation
514
517
  # will complete once the package has been deleted.
515
518
  # @param [String] name
516
- # The name of the package to delete.
519
+ # Required. The name of the package to delete.
517
520
  # @param [String] fields
518
521
  # Selector specifying which fields to include in a partial response.
519
522
  # @param [String] quota_user
@@ -543,7 +546,7 @@ module Google
543
546
 
544
547
  # Gets a package.
545
548
  # @param [String] name
546
- # The name of the package to retrieve.
549
+ # Required. The name of the package to retrieve.
547
550
  # @param [String] fields
548
551
  # Selector specifying which fields to include in a partial response.
549
552
  # @param [String] quota_user
@@ -573,9 +576,9 @@ module Google
573
576
 
574
577
  # Lists packages.
575
578
  # @param [String] parent
576
- # The name of the parent resource whose packages will be listed.
579
+ # Required. The name of the parent resource whose packages will be listed.
577
580
  # @param [Fixnum] page_size
578
- # The maximum number of packages to return.
581
+ # The maximum number of packages to return. Maximum page size is 1,000.
579
582
  # @param [String] page_token
580
583
  # The next_page_token value returned from a previous list request, if any.
581
584
  # @param [String] fields
@@ -713,7 +716,7 @@ module Google
713
716
  # repo1/packages/pkg1/versions/1.0"` --> Tags that are applied to the version `1.
714
717
  # 0` in package `pkg1`.
715
718
  # @param [Fixnum] page_size
716
- # The maximum number of tags to return.
719
+ # The maximum number of tags to return. Maximum page size is 10,000.
717
720
  # @param [String] page_token
718
721
  # The next_page_token value returned from a previous list request, if any.
719
722
  # @param [String] fields
@@ -861,7 +864,7 @@ module Google
861
864
  # @param [String] order_by
862
865
  # Optional. Sorting field and order
863
866
  # @param [Fixnum] page_size
864
- # The maximum number of versions to return.
867
+ # The maximum number of versions to return. Maximum page size is 1,000.
865
868
  # @param [String] page_token
866
869
  # The next_page_token value returned from a previous list request, if any.
867
870
  # @param [String] view
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-artifactregistry_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.17.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2022-01-17 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.17.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-artifactregistry_v1beta1
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.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Artifact Registry API V1beta1