google-apis-cloudbuild_v1 0.19.0 → 0.20.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3dc5132254879b353ed347b336f4fa2d6bf99439154fe6a0d0528c373d6e28cf
|
|
4
|
+
data.tar.gz: 9af327cefcefe07396e16edfd10fcf67df07752d61ec0ccf73a3ce328485992a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68f7f403f1c6a74680ee2ce51baa05a2106da7aeea1475acb8107f6c0dc0d1f609af4cccedd6d2b433c681bcdb20c06feec65cbf0b60d8392a00b2f2092c8208
|
|
7
|
+
data.tar.gz: fa516bb6e40a1e399da25eaab9007c85526fef0b862ed548c891d8a585bafb113410b333ba4a6ab16f1b83fb482d9b9bff03ff67a9739215c948b66a8702c952
|
data/CHANGELOG.md
CHANGED
|
@@ -204,6 +204,39 @@ module Google
|
|
|
204
204
|
end
|
|
205
205
|
end
|
|
206
206
|
|
|
207
|
+
# Metadata for `BatchCreateBitbucketServerConnectedRepositories` operation.
|
|
208
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
|
209
|
+
include Google::Apis::Core::Hashable
|
|
210
|
+
|
|
211
|
+
# Time the operation was completed.
|
|
212
|
+
# Corresponds to the JSON property `completeTime`
|
|
213
|
+
# @return [String]
|
|
214
|
+
attr_accessor :complete_time
|
|
215
|
+
|
|
216
|
+
# The name of the `BitbucketServerConfig` that added connected repositories.
|
|
217
|
+
# Format: `projects/`project`/locations/`location`/bitbucketServerConfigs/`
|
|
218
|
+
# config``
|
|
219
|
+
# Corresponds to the JSON property `config`
|
|
220
|
+
# @return [String]
|
|
221
|
+
attr_accessor :config
|
|
222
|
+
|
|
223
|
+
# Time the operation was created.
|
|
224
|
+
# Corresponds to the JSON property `createTime`
|
|
225
|
+
# @return [String]
|
|
226
|
+
attr_accessor :create_time
|
|
227
|
+
|
|
228
|
+
def initialize(**args)
|
|
229
|
+
update!(**args)
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
# Update properties of this object
|
|
233
|
+
def update!(**args)
|
|
234
|
+
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
|
235
|
+
@config = args[:config] if args.key?(:config)
|
|
236
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
237
|
+
end
|
|
238
|
+
end
|
|
239
|
+
|
|
207
240
|
# A build resource in the Cloud Build API. At a high level, a `Build` describes
|
|
208
241
|
# where to find source code, how to build it (for example, the builder image to
|
|
209
242
|
# run on the source), and where to store the built artifacts. Fields can include
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudbuildV1
|
|
18
18
|
# Version of the google-apis-cloudbuild_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.20.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20211115"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -58,6 +58,12 @@ module Google
|
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
|
+
|
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
65
|
+
end
|
|
66
|
+
|
|
61
67
|
class Build
|
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
69
|
|
|
@@ -520,6 +526,15 @@ module Google
|
|
|
520
526
|
end
|
|
521
527
|
end
|
|
522
528
|
|
|
529
|
+
class BatchCreateBitbucketServerConnectedRepositoriesResponseMetadata
|
|
530
|
+
# @private
|
|
531
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
532
|
+
property :complete_time, as: 'completeTime'
|
|
533
|
+
property :config, as: 'config'
|
|
534
|
+
property :create_time, as: 'createTime'
|
|
535
|
+
end
|
|
536
|
+
end
|
|
537
|
+
|
|
523
538
|
class Build
|
|
524
539
|
# @private
|
|
525
540
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudbuild_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.20.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: 2021-
|
|
11
|
+
date: 2021-12-06 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_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.20.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|