google-apis-cloudbuild_v1alpha1 0.29.0 → 0.30.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: 9984daf1f5066674fc089814a9579f7f3b20a4fe2f1563b027b6151a7edf6310
4
- data.tar.gz: 2de8e43a735b99349382e8f36c9c48739f09790cfe941bcafc0039595e85f94d
3
+ metadata.gz: 3eaf580406543f8e68d8f7a00927b114650903b993bd27ab3aeb2506f95a47c9
4
+ data.tar.gz: 2808721ff8ea4bef88ccd611207fa62eb01e588cd4a4822afeab9521b4746597
5
5
  SHA512:
6
- metadata.gz: 4a1b3c40da804bbe023504544e365662651b7c92b6f250dc6edb6c460131e2a9ff1d9c2b2b1c95fc42adb2fd1ea6be3fc667092434671ec884dd877527e0bec5
7
- data.tar.gz: 751f46cb025640e942d076dfac8cf7ac63aca81195d209d485e0386b6d2d88df40a9f0e8ab72e77f890a0a9fa584291957212f1a2c1b36afe766f0ee7d7b01f9
6
+ metadata.gz: ba81cd66e80d0558a4e77c4138006442eb6c52982efb376e487ab05aa1123315dc55f643645396641f084fbb5dbdbabe03382748840bb554792a44917daa9755
7
+ data.tar.gz: 1c245911000bfc3d837394eeaf415fbc84bfdb1f9c7f0ba3908a271647cc32ce3cd5e2e654a461a0c8f40b95bf4f86fb5585e70f1cc4d5b773a0ff3328388ee0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha1
2
2
 
3
+ ### v0.30.0 (2022-11-13)
4
+
5
+ * Regenerated from discovery document revision 20221103
6
+
3
7
  ### v0.29.0 (2022-10-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20221015
@@ -307,6 +307,25 @@ module Google
307
307
  end
308
308
  end
309
309
 
310
+ # Message for response of creating repositories in batch.
311
+ class BatchCreateRepositoriesResponse
312
+ include Google::Apis::Core::Hashable
313
+
314
+ # Repository resources created.
315
+ # Corresponds to the JSON property `repositories`
316
+ # @return [Array<Google::Apis::CloudbuildV1alpha1::Repository>]
317
+ attr_accessor :repositories
318
+
319
+ def initialize(**args)
320
+ update!(**args)
321
+ end
322
+
323
+ # Update properties of this object
324
+ def update!(**args)
325
+ @repositories = args[:repositories] if args.key?(:repositories)
326
+ end
327
+ end
328
+
310
329
  # / BitbucketServerConnectedRepository represents a connected Bitbucket Server /
311
330
  # repository.
312
331
  class BitbucketServerConnectedRepository
@@ -2076,6 +2095,58 @@ module Google
2076
2095
  end
2077
2096
  end
2078
2097
 
2098
+ # A repository associated to a parent connection.
2099
+ class Repository
2100
+ include Google::Apis::Core::Hashable
2101
+
2102
+ # Allows clients to store small amounts of arbitrary data.
2103
+ # Corresponds to the JSON property `annotations`
2104
+ # @return [Hash<String,String>]
2105
+ attr_accessor :annotations
2106
+
2107
+ # Output only. Server assigned timestamp for when the connection was created.
2108
+ # Corresponds to the JSON property `createTime`
2109
+ # @return [String]
2110
+ attr_accessor :create_time
2111
+
2112
+ # This checksum is computed by the server based on the value of other fields,
2113
+ # and may be sent on update and delete requests to ensure the client has an up-
2114
+ # to-date value before proceeding.
2115
+ # Corresponds to the JSON property `etag`
2116
+ # @return [String]
2117
+ attr_accessor :etag
2118
+
2119
+ # Immutable. Resource name of the repository, in the format `projects/*/
2120
+ # locations/*/connections/*/repositories/*`.
2121
+ # Corresponds to the JSON property `name`
2122
+ # @return [String]
2123
+ attr_accessor :name
2124
+
2125
+ # Required. Git Clone HTTPS URI.
2126
+ # Corresponds to the JSON property `remoteUri`
2127
+ # @return [String]
2128
+ attr_accessor :remote_uri
2129
+
2130
+ # Output only. Server assigned timestamp for when the connection was updated.
2131
+ # Corresponds to the JSON property `updateTime`
2132
+ # @return [String]
2133
+ attr_accessor :update_time
2134
+
2135
+ def initialize(**args)
2136
+ update!(**args)
2137
+ end
2138
+
2139
+ # Update properties of this object
2140
+ def update!(**args)
2141
+ @annotations = args[:annotations] if args.key?(:annotations)
2142
+ @create_time = args[:create_time] if args.key?(:create_time)
2143
+ @etag = args[:etag] if args.key?(:etag)
2144
+ @name = args[:name] if args.key?(:name)
2145
+ @remote_uri = args[:remote_uri] if args.key?(:remote_uri)
2146
+ @update_time = args[:update_time] if args.key?(:update_time)
2147
+ end
2148
+ end
2149
+
2079
2150
  # Artifacts created by the build pipeline.
2080
2151
  class Results
2081
2152
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha1
18
18
  # Version of the google-apis-cloudbuild_v1alpha1 gem
19
- GEM_VERSION = "0.29.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221015"
25
+ REVISION = "20221103"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,12 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class BatchCreateRepositoriesResponse
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
79
85
  class BitbucketServerConnectedRepository
80
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
87
 
@@ -322,6 +328,12 @@ module Google
322
328
  include Google::Apis::Core::JsonObjectSupport
323
329
  end
324
330
 
331
+ class Repository
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
325
337
  class Results
326
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
339
 
@@ -544,6 +556,14 @@ module Google
544
556
  end
545
557
  end
546
558
 
559
+ class BatchCreateRepositoriesResponse
560
+ # @private
561
+ class Representation < Google::Apis::Core::JsonRepresentation
562
+ collection :repositories, as: 'repositories', class: Google::Apis::CloudbuildV1alpha1::Repository, decorator: Google::Apis::CloudbuildV1alpha1::Repository::Representation
563
+
564
+ end
565
+ end
566
+
547
567
  class BitbucketServerConnectedRepository
548
568
  # @private
549
569
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -992,6 +1012,18 @@ module Google
992
1012
  end
993
1013
  end
994
1014
 
1015
+ class Repository
1016
+ # @private
1017
+ class Representation < Google::Apis::Core::JsonRepresentation
1018
+ hash :annotations, as: 'annotations'
1019
+ property :create_time, as: 'createTime'
1020
+ property :etag, as: 'etag'
1021
+ property :name, as: 'name'
1022
+ property :remote_uri, as: 'remoteUri'
1023
+ property :update_time, as: 'updateTime'
1024
+ end
1025
+ end
1026
+
995
1027
  class Results
996
1028
  # @private
997
1029
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.30.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-31 00:00:00.000000000 Z
11
+ date: 2022-11-14 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-cloudbuild_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []