google-apis-artifactregistry_v1beta2 0.21.0 → 0.24.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 26dfecc9932d36777966e69932f182db15d94c92e7f9fe570e307d6bbb2b1806
4
- data.tar.gz: a343b8e520e370ba88ab505c37a7be4a859d8d9fc9629b50ea60678dc91c471a
3
+ metadata.gz: ef77eb5df18c481db68a1eec5fb4ed6d1232ae87f1ff143e2b88d02d3c98beed
4
+ data.tar.gz: 2c3e766f41eb5c215cc04420159bcf214ca771bbf38c06a63994fbefc40ac5d9
5
5
  SHA512:
6
- metadata.gz: 6a7835f083557fc7a30119cc856e164a37e4bba9c970e34eee702caf2a1c0eb1f666f52cd0c6464e575239168bb90a798e1340e8cf0b6ccc11ac4d7d11bf16dc
7
- data.tar.gz: f598d2d1c37c9bb60997a7c398d84d4528d8b1f79a57c61870d3dbec4dcdb9de01557a310130e20e8a227a5bd983192938d99a764ae4dd000b97c82e73703ab7
6
+ metadata.gz: 1cca5ca17045e528c90454fc1d3b0a481c87e8c1791f71acee7869bf5fd0fb6b80c54ebed1e5bca2fc2eb50a38d86d0c4cbbf8cfc5315fcf9b654536fe0a09d3
7
+ data.tar.gz: 36acb97873e45de9b2b9f561bd212f44f154a7381d2adab131c7e24c4f46d95487279d0f598d4281e74ca197d3e8bfd81051d144702b46c24a8bf6f9a780c45f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-artifactregistry_v1beta2
2
2
 
3
+ ### v0.24.0 (2022-04-22)
4
+
5
+ * Regenerated from discovery document revision 20220415
6
+
7
+ ### v0.23.0 (2022-04-06)
8
+
9
+ * Regenerated from discovery document revision 20220401
10
+
11
+ ### v0.22.0 (2022-03-31)
12
+
13
+ * Regenerated from discovery document revision 20220328
14
+
3
15
  ### v0.21.0 (2022-03-10)
4
16
 
5
17
  * Regenerated from discovery document revision 20220307
@@ -97,7 +97,7 @@ module Google
97
97
  # @return [Google::Apis::ArtifactregistryV1beta2::Expr]
98
98
  attr_accessor :condition
99
99
 
100
- # Specifies the principals requesting access for a Cloud Platform resource. `
100
+ # Specifies the principals requesting access for a Google Cloud resource. `
101
101
  # members` can have the following values: * `allUsers`: A special identifier
102
102
  # that represents anyone who is on the internet; with or without a Google
103
103
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -148,8 +148,7 @@ module Google
148
148
  # A generic empty message that you can re-use to avoid defining duplicated empty
149
149
  # messages in your APIs. A typical example is to use it as the request or the
150
150
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
151
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
152
- # `Empty` is empty JSON object ````.
151
+ # protobuf.Empty) returns (google.protobuf.Empty); `
153
152
  class Empty
154
153
  include Google::Apis::Core::Hashable
155
154
 
@@ -349,6 +348,19 @@ module Google
349
348
  end
350
349
  end
351
350
 
351
+ # The operation metadata for importing artifacts.
352
+ class ImportAptArtifactsMetadata
353
+ include Google::Apis::Core::Hashable
354
+
355
+ def initialize(**args)
356
+ update!(**args)
357
+ end
358
+
359
+ # Update properties of this object
360
+ def update!(**args)
361
+ end
362
+ end
363
+
352
364
  # The request to import new apt artifacts.
353
365
  class ImportAptArtifactsRequest
354
366
  include Google::Apis::Core::Hashable
@@ -449,6 +461,19 @@ module Google
449
461
  end
450
462
  end
451
463
 
464
+ # The operation metadata for importing artifacts.
465
+ class ImportYumArtifactsMetadata
466
+ include Google::Apis::Core::Hashable
467
+
468
+ def initialize(**args)
469
+ update!(**args)
470
+ end
471
+
472
+ # Update properties of this object
473
+ def update!(**args)
474
+ end
475
+ end
476
+
452
477
  # The request to import new yum artifacts.
453
478
  class ImportYumArtifactsRequest
454
479
  include Google::Apis::Core::Hashable
@@ -999,6 +1024,13 @@ module Google
999
1024
  # @return [String]
1000
1025
  attr_accessor :name
1001
1026
 
1027
+ # Output only. The size, in bytes, of all artifact storage in this repository.
1028
+ # Repositories that are generally available or in public preview use this to
1029
+ # calculate storage costs.
1030
+ # Corresponds to the JSON property `sizeBytes`
1031
+ # @return [Fixnum]
1032
+ attr_accessor :size_bytes
1033
+
1002
1034
  # The time when the repository was last updated.
1003
1035
  # Corresponds to the JSON property `updateTime`
1004
1036
  # @return [String]
@@ -1017,6 +1049,7 @@ module Google
1017
1049
  @labels = args[:labels] if args.key?(:labels)
1018
1050
  @maven_config = args[:maven_config] if args.key?(:maven_config)
1019
1051
  @name = args[:name] if args.key?(:name)
1052
+ @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
1020
1053
  @update_time = args[:update_time] if args.key?(:update_time)
1021
1054
  end
1022
1055
  end
@@ -1141,7 +1174,7 @@ module Google
1141
1174
  include Google::Apis::Core::Hashable
1142
1175
 
1143
1176
  # The set of permissions to check for the `resource`. Permissions with wildcards
1144
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
1177
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
1145
1178
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
1146
1179
  # Corresponds to the JSON property `permissions`
1147
1180
  # @return [Array<String>]
@@ -1196,6 +1229,19 @@ module Google
1196
1229
  end
1197
1230
  end
1198
1231
 
1232
+ # The operation metadata for uploading artifacts.
1233
+ class UploadAptArtifactMetadata
1234
+ include Google::Apis::Core::Hashable
1235
+
1236
+ def initialize(**args)
1237
+ update!(**args)
1238
+ end
1239
+
1240
+ # Update properties of this object
1241
+ def update!(**args)
1242
+ end
1243
+ end
1244
+
1199
1245
  # The request to upload an artifact.
1200
1246
  class UploadAptArtifactRequest
1201
1247
  include Google::Apis::Core::Hashable
@@ -1249,6 +1295,19 @@ module Google
1249
1295
  end
1250
1296
  end
1251
1297
 
1298
+ # The operation metadata for uploading artifacts.
1299
+ class UploadYumArtifactMetadata
1300
+ include Google::Apis::Core::Hashable
1301
+
1302
+ def initialize(**args)
1303
+ update!(**args)
1304
+ end
1305
+
1306
+ # Update properties of this object
1307
+ def update!(**args)
1308
+ end
1309
+ end
1310
+
1252
1311
  # The request to upload an artifact.
1253
1312
  class UploadYumArtifactRequest
1254
1313
  include Google::Apis::Core::Hashable
@@ -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.21.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220307"
25
+ REVISION = "20220415"
26
26
  end
27
27
  end
28
28
  end
@@ -70,6 +70,12 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class ImportAptArtifactsMetadata
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class ImportAptArtifactsRequest
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
@@ -94,6 +100,12 @@ module Google
94
100
  include Google::Apis::Core::JsonObjectSupport
95
101
  end
96
102
 
103
+ class ImportYumArtifactsMetadata
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
97
109
  class ImportYumArtifactsRequest
98
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
111
 
@@ -226,6 +238,12 @@ module Google
226
238
  include Google::Apis::Core::JsonObjectSupport
227
239
  end
228
240
 
241
+ class UploadAptArtifactMetadata
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
229
247
  class UploadAptArtifactRequest
230
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
249
 
@@ -244,6 +262,12 @@ module Google
244
262
  include Google::Apis::Core::JsonObjectSupport
245
263
  end
246
264
 
265
+ class UploadYumArtifactMetadata
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
247
271
  class UploadYumArtifactRequest
248
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
273
 
@@ -345,6 +369,12 @@ module Google
345
369
  end
346
370
  end
347
371
 
372
+ class ImportAptArtifactsMetadata
373
+ # @private
374
+ class Representation < Google::Apis::Core::JsonRepresentation
375
+ end
376
+ end
377
+
348
378
  class ImportAptArtifactsRequest
349
379
  # @private
350
380
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -381,6 +411,12 @@ module Google
381
411
  end
382
412
  end
383
413
 
414
+ class ImportYumArtifactsMetadata
415
+ # @private
416
+ class Representation < Google::Apis::Core::JsonRepresentation
417
+ end
418
+ end
419
+
384
420
  class ImportYumArtifactsRequest
385
421
  # @private
386
422
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -529,6 +565,7 @@ module Google
529
565
  property :maven_config, as: 'mavenConfig', class: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig, decorator: Google::Apis::ArtifactregistryV1beta2::MavenRepositoryConfig::Representation
530
566
 
531
567
  property :name, as: 'name'
568
+ property :size_bytes, :numeric_string => true, as: 'sizeBytes'
532
569
  property :update_time, as: 'updateTime'
533
570
  end
534
571
  end
@@ -580,6 +617,12 @@ module Google
580
617
  end
581
618
  end
582
619
 
620
+ class UploadAptArtifactMetadata
621
+ # @private
622
+ class Representation < Google::Apis::Core::JsonRepresentation
623
+ end
624
+ end
625
+
583
626
  class UploadAptArtifactRequest
584
627
  # @private
585
628
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -602,6 +645,12 @@ module Google
602
645
  end
603
646
  end
604
647
 
648
+ class UploadYumArtifactMetadata
649
+ # @private
650
+ class Representation < Google::Apis::Core::JsonRepresentation
651
+ end
652
+ end
653
+
605
654
  class UploadYumArtifactRequest
606
655
  # @private
607
656
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -152,8 +152,8 @@ module Google
152
152
  # The resource that owns the locations collection, if applicable.
153
153
  # @param [String] filter
154
154
  # A filter to narrow down results to a preferred subset. The filtering language
155
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
156
- # AIP-160](https://google.aip.dev/160).
155
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
156
+ # in [AIP-160](https://google.aip.dev/160).
157
157
  # @param [Fixnum] page_size
158
158
  # The maximum number of results to return. If not set, the service selects a
159
159
  # default.
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.21.0
4
+ version: 0.24.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-03-14 00:00:00.000000000 Z
11
+ date: 2022-04-25 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.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1beta2/v0.24.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: []