google-apis-cloudbuild_v1beta1 0.27.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: 19d1410e8d4e6fc757527fc6bc3ab0a29ce04b49346e29d894872b570467b70c
4
- data.tar.gz: ad9d43e4ae2afe93651a21d20139b6e9e040dec9c9b635355bd5d03eb26694d6
3
+ metadata.gz: 702694ef3b000d0e6a659abaf4d2e6c3b7688d044a4f60a43af778e1ce2b49b2
4
+ data.tar.gz: 323e5da273bb1b943366ded157a803464195de8cd643d1628ad0e87a8c1fd20d
5
5
  SHA512:
6
- metadata.gz: e368fc23c7a7ad7bcf135d51cf5c4b9f8f09c7ba75f1082eb72840b47ae77812fe07fee8587fcebe8de0dec860ecbd6469b10bb624da4d2bea98ab31d28a1cad
7
- data.tar.gz: 0bf536fe531b8af18a8b90ccca848836467ed544ff44d143ac879c515c460b7b9fa9714e248abdd4a4c4b5a3be2dca16cc6376cdaf149863ba73a4ad4cd5fe89
6
+ metadata.gz: 27e0f3544dd36b3683b75335986edf06a525084aa90fc6cb2ba92724c98d513edf68bc288cffc407f96d22033a72a154943fe5dd5cd077a847435c76dcf0d702
7
+ data.tar.gz: 5eb188e20aeaca222959e28c693e48501ea230708805915fb8af90fe27daf93294903d7ea5b3f8dfd68013c9d222b340055be3f95369e31b595069441e4349c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
7
+ ### v0.28.0 (2022-10-19)
8
+
9
+ * Regenerated from discovery document revision 20221015
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.27.0 (2022-10-11)
4
13
 
5
14
  * Regenerated from discovery document revision 20220928
@@ -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
@@ -554,10 +573,10 @@ module Google
554
573
  attr_accessor :timeout
555
574
 
556
575
  # Output only. Stores timing information for phases of the build. Valid keys are:
557
- # * BUILD: time to execute all build steps. * PUSH: time to push all specified
558
- # images. * FETCHSOURCE: time to fetch source. * SETUPBUILD: time to set up
559
- # build. If the build does not specify source or images, these keys will not be
560
- # included.
576
+ # * BUILD: time to execute all build steps. * PUSH: time to push all artifacts
577
+ # including docker images and non docker artifacts. * FETCHSOURCE: time to fetch
578
+ # source. * SETUPBUILD: time to set up build. If the build does not specify
579
+ # source or images, these keys will not be included.
561
580
  # Corresponds to the JSON property `timing`
562
581
  # @return [Hash<String,Google::Apis::CloudbuildV1beta1::TimeSpan>]
563
582
  attr_accessor :timing
@@ -2066,11 +2085,64 @@ 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
2072
2143
 
2073
- # Path to the artifact manifest. Only populated when artifacts are uploaded.
2144
+ # Path to the artifact manifest for non-container artifacts uploaded to Cloud
2145
+ # Storage. Only populated when artifacts are uploaded to Cloud Storage.
2074
2146
  # Corresponds to the JSON property `artifactManifest`
2075
2147
  # @return [String]
2076
2148
  attr_accessor :artifact_manifest
@@ -2103,7 +2175,8 @@ module Google
2103
2175
  # @return [Array<Google::Apis::CloudbuildV1beta1::UploadedMavenArtifact>]
2104
2176
  attr_accessor :maven_artifacts
2105
2177
 
2106
- # Number of artifacts uploaded. Only populated when artifacts are uploaded.
2178
+ # Number of non-container artifacts uploaded to Cloud Storage. Only populated
2179
+ # when artifacts are uploaded to Cloud Storage.
2107
2180
  # Corresponds to the JSON property `numArtifacts`
2108
2181
  # @return [Fixnum]
2109
2182
  attr_accessor :num_artifacts
@@ -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.27.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220928"
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.27.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-17 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.27.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: []