google-cloud-build-v1 0.1.1 → 0.1.2

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: a7d797898ba8d71737b40410f2a4d8199e9be8dbdeea0fb53f186da219d891af
4
- data.tar.gz: 490b16e90cde2a773be1aede4b0bf36bdeb4df6200d972a633c9c2a371e9f120
3
+ metadata.gz: 30f401867ea163cc50455bae96b2e985aa40934037669970dafa983879ee9cf2
4
+ data.tar.gz: 05c6070f5fab47205f99a05672804a8f3805ee59276fe6adbda4026d67ff9e28
5
5
  SHA512:
6
- metadata.gz: 1b91839ff4778b2c3dd1b69949e44eaeb36b7e203f69eabe7ece9cb2b3869b2d48d0cfb205116a2e68475abd53cfbdf37357499ac1e2bc32100ca365645b859d
7
- data.tar.gz: d57571f3531228400a7bc99054070c32b553e86e3999519c01368e230a0a528078ea9d7497797b6359958edad9d18b3ff73dd8d8e172429a2ee801e3f7dd18eb
6
+ metadata.gz: d42efec8de8b1b38cb74004dc0dbf89d043df7445fe2ec2b646165998974509bea64056ed1e16f89519a045b46c0a57e9114b11bfa63bc6107a2a7534dd4b966
7
+ data.tar.gz: 1b500ab3e273f89baf8428c09b030077e1340cb176f92fb8d73ee869fb04154a3887976021c06a0f2f8db874708de3b20380a83829684fba67e2150674b929e2
@@ -77,7 +77,7 @@ module Google
77
77
  initial_delay: 0.1,
78
78
  max_delay: 60.0,
79
79
  multiplier: 1.3,
80
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
80
+ retry_codes: [14, 4]
81
81
  }
82
82
 
83
83
  default_config.rpcs.list_builds.timeout = 600.0
@@ -85,7 +85,7 @@ module Google
85
85
  initial_delay: 0.1,
86
86
  max_delay: 60.0,
87
87
  multiplier: 1.3,
88
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
88
+ retry_codes: [14, 4]
89
89
  }
90
90
 
91
91
  default_config.rpcs.cancel_build.timeout = 600.0
@@ -99,7 +99,7 @@ module Google
99
99
  initial_delay: 0.1,
100
100
  max_delay: 60.0,
101
101
  multiplier: 1.3,
102
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
102
+ retry_codes: [14, 4]
103
103
  }
104
104
 
105
105
  default_config.rpcs.list_build_triggers.timeout = 600.0
@@ -107,7 +107,7 @@ module Google
107
107
  initial_delay: 0.1,
108
108
  max_delay: 60.0,
109
109
  multiplier: 1.3,
110
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
110
+ retry_codes: [14, 4]
111
111
  }
112
112
 
113
113
  default_config.rpcs.delete_build_trigger.timeout = 600.0
@@ -115,7 +115,7 @@ module Google
115
115
  initial_delay: 0.1,
116
116
  max_delay: 60.0,
117
117
  multiplier: 1.3,
118
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
118
+ retry_codes: [14, 4]
119
119
  }
120
120
 
121
121
  default_config.rpcs.update_build_trigger.timeout = 600.0
@@ -129,7 +129,7 @@ module Google
129
129
  initial_delay: 0.1,
130
130
  max_delay: 60.0,
131
131
  multiplier: 1.3,
132
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
132
+ retry_codes: [14, 4]
133
133
  }
134
134
 
135
135
  default_config.rpcs.delete_worker_pool.timeout = 600.0
@@ -141,7 +141,7 @@ module Google
141
141
  initial_delay: 0.1,
142
142
  max_delay: 60.0,
143
143
  multiplier: 1.3,
144
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
144
+ retry_codes: [14, 4]
145
145
  }
146
146
 
147
147
  default_config
@@ -1307,7 +1307,7 @@ module Google
1307
1307
  end
1308
1308
 
1309
1309
  ##
1310
- # List project's `WorkerPool`s.
1310
+ # List project's `WorkerPools`.
1311
1311
  #
1312
1312
  # This API is experimental.
1313
1313
  #
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Build
23
23
  module V1
24
- VERSION = "0.1.1"
24
+ VERSION = "0.1.2"
25
25
  end
26
26
  end
27
27
  end
@@ -124,7 +124,7 @@ module Google
124
124
  #
125
125
  # This API is experimental.
126
126
  rpc :UpdateWorkerPool, Google::Cloud::Build::V1::UpdateWorkerPoolRequest, Google::Cloud::Build::V1::WorkerPool
127
- # List project's `WorkerPool`s.
127
+ # List project's `WorkerPools`.
128
128
  #
129
129
  # This API is experimental.
130
130
  rpc :ListWorkerPools, Google::Cloud::Build::V1::ListWorkerPoolsRequest, Google::Cloud::Build::V1::ListWorkerPoolsResponse
@@ -992,7 +992,7 @@ module Google
992
992
  # @!attribute [rw] worker_pool
993
993
  # @return [::String]
994
994
  # Option to specify a `WorkerPool` for the build.
995
- # Format: projects/\\{project}/workerPools/\\{workerPool}
995
+ # Format: projects/\\{project}/locations/\\{location}/workerPools/\\{workerPool}
996
996
  #
997
997
  # This field is experimental.
998
998
  # @!attribute [rw] logging
@@ -1276,7 +1276,7 @@ module Google
1276
1276
  extend ::Google::Protobuf::MessageExts::ClassMethods
1277
1277
  end
1278
1278
 
1279
- # Request to list `WorkerPool`s.
1279
+ # Request to list `WorkerPools`.
1280
1280
  # @!attribute [rw] parent
1281
1281
  # @return [::String]
1282
1282
  # ID of the parent project.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-build-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-21 00:00:00.000000000 Z
11
+ date: 2020-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common