google-apis-cloudbuild_v1beta1 0.28.0 → 0.29.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: 59cf49240dce1a8358adcd6482cf9a18585ee82380cc7754cef2cbea8e3cfa7f
4
- data.tar.gz: 1033451a06c27eaf993d620f49276b903e3fe2c556901b06bb75982c8362d4e4
3
+ metadata.gz: 702694ef3b000d0e6a659abaf4d2e6c3b7688d044a4f60a43af778e1ce2b49b2
4
+ data.tar.gz: 323e5da273bb1b943366ded157a803464195de8cd643d1628ad0e87a8c1fd20d
5
5
  SHA512:
6
- metadata.gz: ef0cfb564dd1bd5e66b841a761facc14bae9ab6e4e00e4b3190c109e3aac4df3e598f46c9ed809b0c54bd787f1e9ccfc8f9ddbdd64124977371061a58f062f24
7
- data.tar.gz: e13c3fd41231ec617da3efcd95a3992aba27283ce912a40cb07d85c5d57ac64d8895c59a5ae6fad0eacd8752f18ceab7455aa001c9f868b0e18c0c5227c3d6b1
6
+ metadata.gz: 27e0f3544dd36b3683b75335986edf06a525084aa90fc6cb2ba92724c98d513edf68bc288cffc407f96d22033a72a154943fe5dd5cd077a847435c76dcf0d702
7
+ data.tar.gz: 5eb188e20aeaca222959e28c693e48501ea230708805915fb8af90fe27daf93294903d7ea5b3f8dfd68013c9d222b340055be3f95369e31b595069441e4349c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudbuild_v1beta1
2
2
 
3
+ ### v0.29.0 (2022-11-08)
4
+
5
+ * Regenerated from discovery document revision 20221103
6
+
3
7
  ### v0.28.0 (2022-10-19)
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::CloudbuildV1beta1::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
@@ -2066,6 +2085,58 @@ module Google
2066
2085
  end
2067
2086
  end
2068
2087
 
2088
+ # A repository associated to a parent connection.
2089
+ class Repository
2090
+ include Google::Apis::Core::Hashable
2091
+
2092
+ # Allows clients to store small amounts of arbitrary data.
2093
+ # Corresponds to the JSON property `annotations`
2094
+ # @return [Hash<String,String>]
2095
+ attr_accessor :annotations
2096
+
2097
+ # Output only. Server assigned timestamp for when the connection was created.
2098
+ # Corresponds to the JSON property `createTime`
2099
+ # @return [String]
2100
+ attr_accessor :create_time
2101
+
2102
+ # This checksum is computed by the server based on the value of other fields,
2103
+ # and may be sent on update and delete requests to ensure the client has an up-
2104
+ # to-date value before proceeding.
2105
+ # Corresponds to the JSON property `etag`
2106
+ # @return [String]
2107
+ attr_accessor :etag
2108
+
2109
+ # Immutable. Resource name of the repository, in the format `projects/*/
2110
+ # locations/*/connections/*/repositories/*`.
2111
+ # Corresponds to the JSON property `name`
2112
+ # @return [String]
2113
+ attr_accessor :name
2114
+
2115
+ # Required. Git Clone HTTPS URI.
2116
+ # Corresponds to the JSON property `remoteUri`
2117
+ # @return [String]
2118
+ attr_accessor :remote_uri
2119
+
2120
+ # Output only. Server assigned timestamp for when the connection was updated.
2121
+ # Corresponds to the JSON property `updateTime`
2122
+ # @return [String]
2123
+ attr_accessor :update_time
2124
+
2125
+ def initialize(**args)
2126
+ update!(**args)
2127
+ end
2128
+
2129
+ # Update properties of this object
2130
+ def update!(**args)
2131
+ @annotations = args[:annotations] if args.key?(:annotations)
2132
+ @create_time = args[:create_time] if args.key?(:create_time)
2133
+ @etag = args[:etag] if args.key?(:etag)
2134
+ @name = args[:name] if args.key?(:name)
2135
+ @remote_uri = args[:remote_uri] if args.key?(:remote_uri)
2136
+ @update_time = args[:update_time] if args.key?(:update_time)
2137
+ end
2138
+ end
2139
+
2069
2140
  # Artifacts created by the build pipeline.
2070
2141
  class Results
2071
2142
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1beta1
18
18
  # Version of the google-apis-cloudbuild_v1beta1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.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::CloudbuildV1beta1::Repository, decorator: Google::Apis::CloudbuildV1beta1::Repository::Representation
563
+
564
+ end
565
+ end
566
+
547
567
  class BitbucketServerConnectedRepository
548
568
  # @private
549
569
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -990,6 +1010,18 @@ module Google
990
1010
  end
991
1011
  end
992
1012
 
1013
+ class Repository
1014
+ # @private
1015
+ class Representation < Google::Apis::Core::JsonRepresentation
1016
+ hash :annotations, as: 'annotations'
1017
+ property :create_time, as: 'createTime'
1018
+ property :etag, as: 'etag'
1019
+ property :name, as: 'name'
1020
+ property :remote_uri, as: 'remoteUri'
1021
+ property :update_time, as: 'updateTime'
1022
+ end
1023
+ end
1024
+
993
1025
  class Results
994
1026
  # @private
995
1027
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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-21 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1beta1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []