google-apis-cloudbuild_v1alpha2 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: 6b431b7a80fa224ef1032fe03e9d1ab9debcdc35762123390b78d0b0437a90d2
4
- data.tar.gz: 3c42cb0df117bda4b915cd73920a7a1f9f998bd2b1dc5d457372e02329356f42
3
+ metadata.gz: 825d4a2702e208b6afe45aab266ad7dcfb5a4095498322be854296a728984381
4
+ data.tar.gz: d745606c5e6fea43b3040eaa9d27b7622c27ed07e808ac52ed51a3ecee1989c7
5
5
  SHA512:
6
- metadata.gz: 7e2a481df817c4c4fdd17ee2b43a4beb19fa0235a0a62661a55de30ae8f2461da44a35e62e0d3b5fe1259e353a05c5b4f32656f4d6a7ccb775edb665c3ef8be8
7
- data.tar.gz: f5338ed9ec31a7b88df37325b5a8ca4718be9db6302d3b9281cc8356e319d204a550886757ec7c2fa45c22654bc12f3bcc4064a24e9248b95f27f2432ee0bf85
6
+ metadata.gz: da8c390781927d29b875c36fa2a3214480bb1f986f057c6e70c45cfbf4391bc1f8224597192d6552ddb0d1ffad1ca6bc12acf22127b8c1177de31dec8667cb18
7
+ data.tar.gz: e710b9c5073353da3cd6c77ae2e0242945b46bbc666d23ef6bd27f30f0c2c8efaec78d909c50711aa9d6b4d4720ebd5d7ea5051ef869db0dc6c7a5252f5228a4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudbuild_v1alpha2
2
2
 
3
+ ### v0.30.0 (2022-11-16)
4
+
5
+ * Regenerated from discovery document revision 20221110
6
+
7
+ ### v0.29.0 (2022-11-12)
8
+
9
+ * Regenerated from discovery document revision 20221103
10
+
3
11
  ### v0.28.0 (2022-10-19)
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::CloudbuildV1alpha2::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 1000GB; builds that request more than the
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]
@@ -2063,6 +2082,58 @@ module Google
2063
2082
  end
2064
2083
  end
2065
2084
 
2085
+ # A repository associated to a parent connection.
2086
+ class Repository
2087
+ include Google::Apis::Core::Hashable
2088
+
2089
+ # Allows clients to store small amounts of arbitrary data.
2090
+ # Corresponds to the JSON property `annotations`
2091
+ # @return [Hash<String,String>]
2092
+ attr_accessor :annotations
2093
+
2094
+ # Output only. Server assigned timestamp for when the connection was created.
2095
+ # Corresponds to the JSON property `createTime`
2096
+ # @return [String]
2097
+ attr_accessor :create_time
2098
+
2099
+ # This checksum is computed by the server based on the value of other fields,
2100
+ # and may be sent on update and delete requests to ensure the client has an up-
2101
+ # to-date value before proceeding.
2102
+ # Corresponds to the JSON property `etag`
2103
+ # @return [String]
2104
+ attr_accessor :etag
2105
+
2106
+ # Immutable. Resource name of the repository, in the format `projects/*/
2107
+ # locations/*/connections/*/repositories/*`.
2108
+ # Corresponds to the JSON property `name`
2109
+ # @return [String]
2110
+ attr_accessor :name
2111
+
2112
+ # Required. Git Clone HTTPS URI.
2113
+ # Corresponds to the JSON property `remoteUri`
2114
+ # @return [String]
2115
+ attr_accessor :remote_uri
2116
+
2117
+ # Output only. Server assigned timestamp for when the connection was updated.
2118
+ # Corresponds to the JSON property `updateTime`
2119
+ # @return [String]
2120
+ attr_accessor :update_time
2121
+
2122
+ def initialize(**args)
2123
+ update!(**args)
2124
+ end
2125
+
2126
+ # Update properties of this object
2127
+ def update!(**args)
2128
+ @annotations = args[:annotations] if args.key?(:annotations)
2129
+ @create_time = args[:create_time] if args.key?(:create_time)
2130
+ @etag = args[:etag] if args.key?(:etag)
2131
+ @name = args[:name] if args.key?(:name)
2132
+ @remote_uri = args[:remote_uri] if args.key?(:remote_uri)
2133
+ @update_time = args[:update_time] if args.key?(:update_time)
2134
+ end
2135
+ end
2136
+
2066
2137
  # Artifacts created by the build pipeline.
2067
2138
  class Results
2068
2139
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1alpha2
18
18
  # Version of the google-apis-cloudbuild_v1alpha2 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
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 = "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::CloudbuildV1alpha2::Repository, decorator: Google::Apis::CloudbuildV1alpha2::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_v1alpha2
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-21 00:00:00.000000000 Z
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_v1alpha2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1alpha2/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1alpha2
63
63
  post_install_message:
64
64
  rdoc_options: []