google-apis-artifactregistry_v1 0.30.0 → 0.31.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: 86878ea6fdab2f215523ac0e45eee0e63d68eb39a2a7449c535d0795c5122406
4
- data.tar.gz: 88aa0e406c1363c4d10bcba2b0a89ab8dd83d002b9a2d169d6a4a6ae86b91928
3
+ metadata.gz: 3013e035c5d484e464d6449091f0ddbb499842e4aaa9362a8195988b0d9866d3
4
+ data.tar.gz: ecfc0df7192e23cdb66ed3fe665245d9d9a0ddaf908df25cf1aad759db83cd2b
5
5
  SHA512:
6
- metadata.gz: ab0491bbd479721c39fc9f05b7fb693b6a92dd903624972db31de134aa527bee3ff096be67d7a0ffc2dee972f8c51279a42f4b7d6c61b23face0e780a0f09844
7
- data.tar.gz: 7b55b1715985283f7560d4c3bab50ea89ce75160d8fd80a9ad56cd4cc414314925d6b24102dbf34b379495def9fdb1b2fed1165fe0a71dbcc9d0861f42a17e44
6
+ metadata.gz: 980d4e898d26fd5db4b2175e1782368dfe95f2fe263390fb6e64034a70eebd5223c1a48d87ca35cb38107af0e61f1106e0d12aae45098bf2e97cab53a832560b
7
+ data.tar.gz: 75049b18c4f9cc304f201f3feb539d684d3de0914f5fdad34c80c9d4fb37318f97b28839ac57334dad509f5ef6d9861c8d632d834f2acabe98451b1f8182b4d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-artifactregistry_v1
2
2
 
3
+ ### v0.31.0 (2022-08-13)
4
+
5
+ * Regenerated from discovery document revision 20220809
6
+
3
7
  ### v0.30.0 (2022-08-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20220803
@@ -212,6 +212,11 @@ module Google
212
212
  # @return [Array<String>]
213
213
  attr_accessor :tags
214
214
 
215
+ # Output only. The time when the docker image was last updated.
216
+ # Corresponds to the JSON property `updateTime`
217
+ # @return [String]
218
+ attr_accessor :update_time
219
+
215
220
  # Time the image was uploaded.
216
221
  # Corresponds to the JSON property `uploadTime`
217
222
  # @return [String]
@@ -235,6 +240,7 @@ module Google
235
240
  @media_type = args[:media_type] if args.key?(:media_type)
236
241
  @name = args[:name] if args.key?(:name)
237
242
  @tags = args[:tags] if args.key?(:tags)
243
+ @update_time = args[:update_time] if args.key?(:update_time)
238
244
  @upload_time = args[:upload_time] if args.key?(:upload_time)
239
245
  @uri = args[:uri] if args.key?(:uri)
240
246
  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.30.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220803"
25
+ REVISION = "20220809"
26
26
  end
27
27
  end
28
28
  end
@@ -383,6 +383,7 @@ module Google
383
383
  property :media_type, as: 'mediaType'
384
384
  property :name, as: 'name'
385
385
  collection :tags, as: 'tags'
386
+ property :update_time, as: 'updateTime'
386
387
  property :upload_time, as: 'uploadTime'
387
388
  property :uri, as: 'uri'
388
389
  end
@@ -624,6 +624,8 @@ module Google
624
624
  # Lists docker images.
625
625
  # @param [String] parent
626
626
  # Required. The name of the parent resource whose docker images will be listed.
627
+ # @param [String] order_by
628
+ # The field to order the results by.
627
629
  # @param [Fixnum] page_size
628
630
  # The maximum number of artifacts to return.
629
631
  # @param [String] page_token
@@ -645,11 +647,12 @@ module Google
645
647
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
646
648
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
647
649
  # @raise [Google::Apis::AuthorizationError] Authorization is required
648
- def list_project_location_repository_docker_images(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
650
+ def list_project_location_repository_docker_images(parent, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
649
651
  command = make_simple_command(:get, 'v1/{+parent}/dockerImages', options)
650
652
  command.response_representation = Google::Apis::ArtifactregistryV1::ListDockerImagesResponse::Representation
651
653
  command.response_class = Google::Apis::ArtifactregistryV1::ListDockerImagesResponse
652
654
  command.params['parent'] = parent unless parent.nil?
655
+ command.query['orderBy'] = order_by unless order_by.nil?
653
656
  command.query['pageSize'] = page_size unless page_size.nil?
654
657
  command.query['pageToken'] = page_token unless page_token.nil?
655
658
  command.query['fields'] = fields unless fields.nil?
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.30.0
4
+ version: 0.31.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-08-08 00:00:00.000000000 Z
11
+ date: 2022-08-15 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.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-artifactregistry_v1/v0.31.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: []