google-apis-cloudbuild_v1alpha1 0.29.0 → 0.31.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1029ffa9caa20d6ac336b972697a67e99e59d55b07c54c8e58462f4f4990f029
|
4
|
+
data.tar.gz: 84f7e74cc8ca16101b9d4e6ac9edf82b27efa73eb07cfe754b8d5e52e8aae45f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 510a11523eefe92071489245ae5b72febfb869861b40e87b5af46227603891e61cfb49a0d509658edb8d770ab4d1584a9116b6bd0ada008f9ce6b8fc96f709c7
|
7
|
+
data.tar.gz: e0d12cdca92b789929c44f82bd132eb3864381f44c19f995ee8887a7c099bcb96ef52b58cf4355afee609eae21259d172f9accf0c31571edcbd5e235eaeca0b0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudbuild_v1alpha1
|
2
2
|
|
3
|
+
### v0.31.0 (2022-11-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221110
|
6
|
+
|
7
|
+
### v0.30.0 (2022-11-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221103
|
10
|
+
|
3
11
|
### v0.29.0 (2022-10-27)
|
4
12
|
|
5
13
|
* 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
|
@@ -675,7 +694,7 @@ module Google
|
|
675
694
|
# disk free"; some of the space will be used by the operating system and build
|
676
695
|
# utilities. Also note that this is the minimum disk size that will be allocated
|
677
696
|
# for the build -- the build may run with a larger disk than requested. At
|
678
|
-
# present, the maximum disk size is
|
697
|
+
# present, the maximum disk size is 2000GB; builds that request more than the
|
679
698
|
# maximum are rejected with an error.
|
680
699
|
# Corresponds to the JSON property `diskSizeGb`
|
681
700
|
# @return [Fixnum]
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.31.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 = "
|
25
|
+
REVISION = "20221110"
|
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.
|
4
|
+
version: 0.31.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-
|
11
|
+
date: 2022-12-12 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha1/v0.31.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: []
|