google-apis-cloudbuild_v1alpha1 0.28.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: 7201192713811453ea1cf1a97d4c58c3c21e03db9a64c91a0da09cf0d1619b51
4
- data.tar.gz: 90ee9e8ee9ecd93417500fec9a68f4e717e34d63fcfa46d9d8d3d2493d9cdeb9
3
+ metadata.gz: 3eaf580406543f8e68d8f7a00927b114650903b993bd27ab3aeb2506f95a47c9
4
+ data.tar.gz: 2808721ff8ea4bef88ccd611207fa62eb01e588cd4a4822afeab9521b4746597
5
5
  SHA512:
6
- metadata.gz: e28ac66cfbfeda3381c71e0233078506db5f5ecf1cc0d60827af0b41a70102bc31adca98bec659e793dead23b83c646a4181283cbf26b5c82bfe20080db5a6c5
7
- data.tar.gz: 5413c8069da4282bdf5948bb896edc72dde9013f8c74bd45ba4fb3dd66ef3ee1f4ea397eff63618487a286db78c515a3841e8174b95da434c58aa44cc52436db
6
+ metadata.gz: ba81cd66e80d0558a4e77c4138006442eb6c52982efb376e487ab05aa1123315dc55f643645396641f084fbb5dbdbabe03382748840bb554792a44917daa9755
7
+ data.tar.gz: 1c245911000bfc3d837394eeaf415fbc84bfdb1f9c7f0ba3908a271647cc32ce3cd5e2e654a461a0c8f40b95bf4f86fb5585e70f1cc4d5b773a0ff3328388ee0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
7
+ ### v0.29.0 (2022-10-27)
8
+
9
+ * Regenerated from discovery document revision 20221015
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.28.0 (2022-10-03)
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::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
@@ -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::CloudbuildV1alpha1::TimeSpan>]
563
582
  attr_accessor :timing
@@ -2076,11 +2095,64 @@ 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
2082
2153
 
2083
- # Path to the artifact manifest. Only populated when artifacts are uploaded.
2154
+ # Path to the artifact manifest for non-container artifacts uploaded to Cloud
2155
+ # Storage. Only populated when artifacts are uploaded to Cloud Storage.
2084
2156
  # Corresponds to the JSON property `artifactManifest`
2085
2157
  # @return [String]
2086
2158
  attr_accessor :artifact_manifest
@@ -2113,7 +2185,8 @@ module Google
2113
2185
  # @return [Array<Google::Apis::CloudbuildV1alpha1::UploadedMavenArtifact>]
2114
2186
  attr_accessor :maven_artifacts
2115
2187
 
2116
- # Number of artifacts uploaded. Only populated when artifacts are uploaded.
2188
+ # Number of non-container artifacts uploaded to Cloud Storage. Only populated
2189
+ # when artifacts are uploaded to Cloud Storage.
2117
2190
  # Corresponds to the JSON property `numArtifacts`
2118
2191
  # @return [Fixnum]
2119
2192
  attr_accessor :num_artifacts
@@ -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.28.0"
19
+ GEM_VERSION = "0.30.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::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.28.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-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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.28.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: []