google-apis-artifactregistry_v1beta1 0.9.0 → 0.10.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: e28c40f8ed4de25d203d9e23ced4d4b30817b1f46a4fb5b73a359877aef847e3
4
- data.tar.gz: bf5fee13ba272bc62c46740280f8a07427c04dd03beaa6f9ad06b28d642f1794
3
+ metadata.gz: '08ca27152e81c171a875dddb17174a0b007ffeded05ebe6d9d5c982c914f9867'
4
+ data.tar.gz: 4baf5f4321a4f4bf16c173b1c0e658121d207548aadc48338cf422613174e3b4
5
5
  SHA512:
6
- metadata.gz: df16b87d6353356f6c9164b554d7edf167fb0d96b28d5ced1eb8dec118b4c4d4463109ff595058c8395b9742897c2d445e6b5acfc1bbb417081ae2fc37ab9766
7
- data.tar.gz: 686f565e7d5cee6ba92f002703f297d3a25f7b183efdd6d524605102d437248b8d724e10da39f03df0a0d802c3c6cf6ba42afd8cdc48844eaa8b59dd2186bf99
6
+ metadata.gz: e70d5036f8bc9aa3eafe2dc4feab912bf020a97e7c48cc9996ae9de7ba934607bf19ae2f872da02cf46df3e506962d62787ecc2d29a44fa83484103f1f3958c5
7
+ data.tar.gz: 87183608036a6c9566c300ed3fd069cb5d743d5b2ce0ae6204b7fd3b93f4fc51ea821c9853861e861e1f25c8adf00fa7aab179ace68291766c2529fbbf107d8c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-artifactregistry_v1beta1
2
2
 
3
+ ### v0.10.0 (2021-07-06)
4
+
5
+ * Regenerated from discovery document revision 20210629
6
+
3
7
  ### v0.9.0 (2021-06-29)
4
8
 
5
9
  * Regenerated using generator version 0.4.0
@@ -22,6 +22,58 @@ 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
+
25
77
  # Associates `members` with a `role`.
26
78
  class Binding
27
79
  include Google::Apis::Core::Hashable
@@ -241,6 +293,168 @@ module Google
241
293
  end
242
294
  end
243
295
 
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
+
244
458
  # The response from listing files.
245
459
  class ListFilesResponse
246
460
  include Google::Apis::Core::Hashable
@@ -869,6 +1083,86 @@ module Google
869
1083
  end
870
1084
  end
871
1085
 
1086
+ # The response to upload an artifact.
1087
+ class UploadAptArtifactMediaResponse
1088
+ include Google::Apis::Core::Hashable
1089
+
1090
+ # This resource represents a long-running operation that is the result of a
1091
+ # network API call.
1092
+ # Corresponds to the JSON property `operation`
1093
+ # @return [Google::Apis::ArtifactregistryV1beta1::Operation]
1094
+ attr_accessor :operation
1095
+
1096
+ def initialize(**args)
1097
+ update!(**args)
1098
+ end
1099
+
1100
+ # Update properties of this object
1101
+ def update!(**args)
1102
+ @operation = args[:operation] if args.key?(:operation)
1103
+ end
1104
+ end
1105
+
1106
+ # The response of the completed artifact upload operation. This response is
1107
+ # contained in the Operation and available to users.
1108
+ class UploadAptArtifactResponse
1109
+ include Google::Apis::Core::Hashable
1110
+
1111
+ # The Apt artifacts updated.
1112
+ # Corresponds to the JSON property `aptArtifacts`
1113
+ # @return [Array<Google::Apis::ArtifactregistryV1beta1::AptArtifact>]
1114
+ attr_accessor :apt_artifacts
1115
+
1116
+ def initialize(**args)
1117
+ update!(**args)
1118
+ end
1119
+
1120
+ # Update properties of this object
1121
+ def update!(**args)
1122
+ @apt_artifacts = args[:apt_artifacts] if args.key?(:apt_artifacts)
1123
+ end
1124
+ end
1125
+
1126
+ # The response to upload an artifact.
1127
+ class UploadYumArtifactMediaResponse
1128
+ include Google::Apis::Core::Hashable
1129
+
1130
+ # This resource represents a long-running operation that is the result of a
1131
+ # network API call.
1132
+ # Corresponds to the JSON property `operation`
1133
+ # @return [Google::Apis::ArtifactregistryV1beta1::Operation]
1134
+ attr_accessor :operation
1135
+
1136
+ def initialize(**args)
1137
+ update!(**args)
1138
+ end
1139
+
1140
+ # Update properties of this object
1141
+ def update!(**args)
1142
+ @operation = args[:operation] if args.key?(:operation)
1143
+ end
1144
+ end
1145
+
1146
+ # The response of the completed artifact upload operation. This response is
1147
+ # contained in the Operation and available to users.
1148
+ class UploadYumArtifactResponse
1149
+ include Google::Apis::Core::Hashable
1150
+
1151
+ # The Apt artifacts updated.
1152
+ # Corresponds to the JSON property `yumArtifacts`
1153
+ # @return [Array<Google::Apis::ArtifactregistryV1beta1::YumArtifact>]
1154
+ attr_accessor :yum_artifacts
1155
+
1156
+ def initialize(**args)
1157
+ update!(**args)
1158
+ end
1159
+
1160
+ # Update properties of this object
1161
+ def update!(**args)
1162
+ @yum_artifacts = args[:yum_artifacts] if args.key?(:yum_artifacts)
1163
+ end
1164
+ end
1165
+
872
1166
  # The body of a version resource. A version resource represents a collection of
873
1167
  # components, such as files and other data. This may correspond to a version in
874
1168
  # many package management schemes.
@@ -916,6 +1210,43 @@ module Google
916
1210
  @update_time = args[:update_time] if args.key?(:update_time)
917
1211
  end
918
1212
  end
1213
+
1214
+ # A detailed representation of a Yum artifact.
1215
+ class YumArtifact
1216
+ include Google::Apis::Core::Hashable
1217
+
1218
+ # Output only. Operating system architecture of the artifact.
1219
+ # Corresponds to the JSON property `architecture`
1220
+ # @return [String]
1221
+ attr_accessor :architecture
1222
+
1223
+ # Output only. The Artifact Registry resource name of the artifact.
1224
+ # Corresponds to the JSON property `name`
1225
+ # @return [String]
1226
+ attr_accessor :name
1227
+
1228
+ # Output only. The yum package name of the artifact.
1229
+ # Corresponds to the JSON property `packageName`
1230
+ # @return [String]
1231
+ attr_accessor :package_name
1232
+
1233
+ # Output only. An artifact is a binary or source package.
1234
+ # Corresponds to the JSON property `packageType`
1235
+ # @return [String]
1236
+ attr_accessor :package_type
1237
+
1238
+ def initialize(**args)
1239
+ update!(**args)
1240
+ end
1241
+
1242
+ # Update properties of this object
1243
+ def update!(**args)
1244
+ @architecture = args[:architecture] if args.key?(:architecture)
1245
+ @name = args[:name] if args.key?(:name)
1246
+ @package_name = args[:package_name] if args.key?(:package_name)
1247
+ @package_type = args[:package_type] if args.key?(:package_type)
1248
+ end
1249
+ end
919
1250
  end
920
1251
  end
921
1252
  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.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210524"
25
+ REVISION = "20210629"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ 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
+
25
31
  class Binding
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -52,6 +58,42 @@ module Google
52
58
  include Google::Apis::Core::JsonObjectSupport
53
59
  end
54
60
 
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
+
55
97
  class ListFilesResponse
56
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
99
 
@@ -154,12 +196,54 @@ module Google
154
196
  include Google::Apis::Core::JsonObjectSupport
155
197
  end
156
198
 
199
+ class UploadAptArtifactMediaResponse
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class UploadAptArtifactResponse
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
211
+ class UploadYumArtifactMediaResponse
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class UploadYumArtifactResponse
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
157
223
  class Version
158
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
225
 
160
226
  include Google::Apis::Core::JsonObjectSupport
161
227
  end
162
228
 
229
+ class YumArtifact
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
235
+ class AptArtifact
236
+ # @private
237
+ class Representation < Google::Apis::Core::JsonRepresentation
238
+ property :architecture, as: 'architecture'
239
+ property :component, as: 'component'
240
+ property :control_file, :base64 => true, as: 'controlFile'
241
+ property :name, as: 'name'
242
+ property :package_name, as: 'packageName'
243
+ property :package_type, as: 'packageType'
244
+ end
245
+ end
246
+
163
247
  class Binding
164
248
  # @private
165
249
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -207,6 +291,62 @@ module Google
207
291
  end
208
292
  end
209
293
 
294
+ class ImportAptArtifactsErrorInfo
295
+ # @private
296
+ class Representation < Google::Apis::Core::JsonRepresentation
297
+ property :error, as: 'error', class: Google::Apis::ArtifactregistryV1beta1::Status, decorator: Google::Apis::ArtifactregistryV1beta1::Status::Representation
298
+
299
+ property :gcs_source, as: 'gcsSource', class: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsGcsSource, decorator: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsGcsSource::Representation
300
+
301
+ end
302
+ end
303
+
304
+ class ImportAptArtifactsGcsSource
305
+ # @private
306
+ class Representation < Google::Apis::Core::JsonRepresentation
307
+ collection :uris, as: 'uris'
308
+ property :use_wildcards, as: 'useWildcards'
309
+ end
310
+ end
311
+
312
+ class ImportAptArtifactsResponse
313
+ # @private
314
+ class Representation < Google::Apis::Core::JsonRepresentation
315
+ collection :apt_artifacts, as: 'aptArtifacts', class: Google::Apis::ArtifactregistryV1beta1::AptArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::AptArtifact::Representation
316
+
317
+ collection :errors, as: 'errors', class: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsErrorInfo, decorator: Google::Apis::ArtifactregistryV1beta1::ImportAptArtifactsErrorInfo::Representation
318
+
319
+ end
320
+ end
321
+
322
+ class ImportYumArtifactsErrorInfo
323
+ # @private
324
+ class Representation < Google::Apis::Core::JsonRepresentation
325
+ property :error, as: 'error', class: Google::Apis::ArtifactregistryV1beta1::Status, decorator: Google::Apis::ArtifactregistryV1beta1::Status::Representation
326
+
327
+ property :gcs_source, as: 'gcsSource', class: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsGcsSource, decorator: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsGcsSource::Representation
328
+
329
+ end
330
+ end
331
+
332
+ class ImportYumArtifactsGcsSource
333
+ # @private
334
+ class Representation < Google::Apis::Core::JsonRepresentation
335
+ collection :uris, as: 'uris'
336
+ property :use_wildcards, as: 'useWildcards'
337
+ end
338
+ end
339
+
340
+ class ImportYumArtifactsResponse
341
+ # @private
342
+ class Representation < Google::Apis::Core::JsonRepresentation
343
+ collection :errors, as: 'errors', class: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsErrorInfo, decorator: Google::Apis::ArtifactregistryV1beta1::ImportYumArtifactsErrorInfo::Representation
344
+
345
+ collection :yum_artifacts, as: 'yumArtifacts', class: Google::Apis::ArtifactregistryV1beta1::YumArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::YumArtifact::Representation
346
+
347
+ end
348
+ end
349
+
210
350
  class ListFilesResponse
211
351
  # @private
212
352
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -365,6 +505,38 @@ module Google
365
505
  end
366
506
  end
367
507
 
508
+ class UploadAptArtifactMediaResponse
509
+ # @private
510
+ class Representation < Google::Apis::Core::JsonRepresentation
511
+ property :operation, as: 'operation', class: Google::Apis::ArtifactregistryV1beta1::Operation, decorator: Google::Apis::ArtifactregistryV1beta1::Operation::Representation
512
+
513
+ end
514
+ end
515
+
516
+ class UploadAptArtifactResponse
517
+ # @private
518
+ class Representation < Google::Apis::Core::JsonRepresentation
519
+ collection :apt_artifacts, as: 'aptArtifacts', class: Google::Apis::ArtifactregistryV1beta1::AptArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::AptArtifact::Representation
520
+
521
+ end
522
+ end
523
+
524
+ class UploadYumArtifactMediaResponse
525
+ # @private
526
+ class Representation < Google::Apis::Core::JsonRepresentation
527
+ property :operation, as: 'operation', class: Google::Apis::ArtifactregistryV1beta1::Operation, decorator: Google::Apis::ArtifactregistryV1beta1::Operation::Representation
528
+
529
+ end
530
+ end
531
+
532
+ class UploadYumArtifactResponse
533
+ # @private
534
+ class Representation < Google::Apis::Core::JsonRepresentation
535
+ collection :yum_artifacts, as: 'yumArtifacts', class: Google::Apis::ArtifactregistryV1beta1::YumArtifact, decorator: Google::Apis::ArtifactregistryV1beta1::YumArtifact::Representation
536
+
537
+ end
538
+ end
539
+
368
540
  class Version
369
541
  # @private
370
542
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -376,6 +548,16 @@ module Google
376
548
  property :update_time, as: 'updateTime'
377
549
  end
378
550
  end
551
+
552
+ class YumArtifact
553
+ # @private
554
+ class Representation < Google::Apis::Core::JsonRepresentation
555
+ property :architecture, as: 'architecture'
556
+ property :name, as: 'name'
557
+ property :package_name, as: 'packageName'
558
+ property :package_type, as: 'packageType'
559
+ end
560
+ end
379
561
  end
380
562
  end
381
563
  end
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.9.0
4
+ version: 0.10.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-07-05 00:00:00.000000000 Z
11
+ date: 2021-07-12 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/master/generated/google-apis-artifactregistry_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta1/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-artifactregistry_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []