Skip to content

Commit 01c373c

Browse files
yoshi-automationchingor13
authored andcommitted
---
yaml --- r: 34731 b: refs/heads/autosynth-texttospeech c: 73747f1 h: refs/heads/master i: 34729: 9e3c664 34727: 4921f8e
1 parent 94cc1ec commit 01c373c

5 files changed

Lines changed: 42 additions & 60 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ refs/heads/autosynth-scheduler: a3de6480746d1cd586ca8b9d75c55a636f371539
140140
refs/heads/autosynth-spanner: d963fe4368e79cf6abae5d511785e8ced8ac57f4
141141
refs/heads/autosynth-speech: c563dcd420cce0a37c39b1b9c24be1b9ba604dc7
142142
refs/heads/autosynth-tasks: 25d1eafe8cb66b00e3dad765dac74a5b45b83e63
143-
refs/heads/autosynth-texttospeech: 69e24c578c20663c1de76dab1b9caed7ff1347ba
143+
refs/heads/autosynth-texttospeech: 73747f1b1e465559238a719da17872aba3bece42
144144
refs/heads/autosynth-trace: c94eef6e4d9c6fd24888216e28ca7271959c1cf0
145145
refs/heads/autosynth-websecurityscanner: fa561b356aabcd92d415ae8dc88fd8d87dbc5b23
146146
refs/heads/bigquerystorage: 06db74d123d7f8a3ef48755c2fcabed09faf8e64

branches/autosynth-texttospeech/google-cloud-clients/google-cloud-tasks/src/main/java/com/google/cloud/tasks/v2/CloudTasksClient.java

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,9 +1138,8 @@ public final UnaryCallable<ResumeQueueRequest, Queue> resumeQueueCallable() {
11381138
* }
11391139
* </code></pre>
11401140
*
1141-
* @param resource REQUIRED: The resource for which the policy is being requested. `resource` is
1142-
* usually specified as a path. For example, a Project resource is specified as
1143-
* `projects/{project}`.
1141+
* @param resource REQUIRED: The resource for which the policy is being requested. See the
1142+
* operation documentation for the appropriate value for this field.
11441143
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11451144
*/
11461145
public final Policy getIamPolicy(QueueName resource) {
@@ -1171,9 +1170,8 @@ public final Policy getIamPolicy(QueueName resource) {
11711170
* }
11721171
* </code></pre>
11731172
*
1174-
* @param resource REQUIRED: The resource for which the policy is being requested. `resource` is
1175-
* usually specified as a path. For example, a Project resource is specified as
1176-
* `projects/{project}`.
1173+
* @param resource REQUIRED: The resource for which the policy is being requested. See the
1174+
* operation documentation for the appropriate value for this field.
11771175
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11781176
*/
11791177
public final Policy getIamPolicy(String resource) {
@@ -1262,9 +1260,8 @@ public final UnaryCallable<GetIamPolicyRequest, Policy> getIamPolicyCallable() {
12621260
* }
12631261
* </code></pre>
12641262
*
1265-
* @param resource REQUIRED: The resource for which the policy is being specified. `resource` is
1266-
* usually specified as a path. For example, a Project resource is specified as
1267-
* `projects/{project}`.
1263+
* @param resource REQUIRED: The resource for which the policy is being specified. See the
1264+
* operation documentation for the appropriate value for this field.
12681265
* @param policy REQUIRED: The complete policy to be applied to the `resource`. The size of the
12691266
* policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
12701267
* Platform services (such as Projects) might reject them.
@@ -1303,9 +1300,8 @@ public final Policy setIamPolicy(QueueName resource, Policy policy) {
13031300
* }
13041301
* </code></pre>
13051302
*
1306-
* @param resource REQUIRED: The resource for which the policy is being specified. `resource` is
1307-
* usually specified as a path. For example, a Project resource is specified as
1308-
* `projects/{project}`.
1303+
* @param resource REQUIRED: The resource for which the policy is being specified. See the
1304+
* operation documentation for the appropriate value for this field.
13091305
* @param policy REQUIRED: The complete policy to be applied to the `resource`. The size of the
13101306
* policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
13111307
* Platform services (such as Projects) might reject them.
@@ -1405,9 +1401,8 @@ public final UnaryCallable<SetIamPolicyRequest, Policy> setIamPolicyCallable() {
14051401
* }
14061402
* </code></pre>
14071403
*
1408-
* @param resource REQUIRED: The resource for which the policy detail is being requested.
1409-
* `resource` is usually specified as a path. For example, a Project resource is specified as
1410-
* `projects/{project}`.
1404+
* @param resource REQUIRED: The resource for which the policy detail is being requested. See the
1405+
* operation documentation for the appropriate value for this field.
14111406
* @param permissions The set of permissions to check for the `resource`. Permissions with
14121407
* wildcards (such as '&#42;' or 'storage.&#42;') are not allowed. For more information see
14131408
* [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
@@ -1444,9 +1439,8 @@ public final TestIamPermissionsResponse testIamPermissions(
14441439
* }
14451440
* </code></pre>
14461441
*
1447-
* @param resource REQUIRED: The resource for which the policy detail is being requested.
1448-
* `resource` is usually specified as a path. For example, a Project resource is specified as
1449-
* `projects/{project}`.
1442+
* @param resource REQUIRED: The resource for which the policy detail is being requested. See the
1443+
* operation documentation for the appropriate value for this field.
14501444
* @param permissions The set of permissions to check for the `resource`. Permissions with
14511445
* wildcards (such as '&#42;' or 'storage.&#42;') are not allowed. For more information see
14521446
* [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).

branches/autosynth-texttospeech/google-cloud-clients/google-cloud-tasks/src/main/java/com/google/cloud/tasks/v2beta2/CloudTasksClient.java

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,9 +1144,8 @@ public final UnaryCallable<ResumeQueueRequest, Queue> resumeQueueCallable() {
11441144
* }
11451145
* </code></pre>
11461146
*
1147-
* @param resource REQUIRED: The resource for which the policy is being requested. `resource` is
1148-
* usually specified as a path. For example, a Project resource is specified as
1149-
* `projects/{project}`.
1147+
* @param resource REQUIRED: The resource for which the policy is being requested. See the
1148+
* operation documentation for the appropriate value for this field.
11501149
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11511150
*/
11521151
public final Policy getIamPolicy(QueueName resource) {
@@ -1177,9 +1176,8 @@ public final Policy getIamPolicy(QueueName resource) {
11771176
* }
11781177
* </code></pre>
11791178
*
1180-
* @param resource REQUIRED: The resource for which the policy is being requested. `resource` is
1181-
* usually specified as a path. For example, a Project resource is specified as
1182-
* `projects/{project}`.
1179+
* @param resource REQUIRED: The resource for which the policy is being requested. See the
1180+
* operation documentation for the appropriate value for this field.
11831181
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11841182
*/
11851183
public final Policy getIamPolicy(String resource) {
@@ -1268,9 +1266,8 @@ public final UnaryCallable<GetIamPolicyRequest, Policy> getIamPolicyCallable() {
12681266
* }
12691267
* </code></pre>
12701268
*
1271-
* @param resource REQUIRED: The resource for which the policy is being specified. `resource` is
1272-
* usually specified as a path. For example, a Project resource is specified as
1273-
* `projects/{project}`.
1269+
* @param resource REQUIRED: The resource for which the policy is being specified. See the
1270+
* operation documentation for the appropriate value for this field.
12741271
* @param policy REQUIRED: The complete policy to be applied to the `resource`. The size of the
12751272
* policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
12761273
* Platform services (such as Projects) might reject them.
@@ -1309,9 +1306,8 @@ public final Policy setIamPolicy(QueueName resource, Policy policy) {
13091306
* }
13101307
* </code></pre>
13111308
*
1312-
* @param resource REQUIRED: The resource for which the policy is being specified. `resource` is
1313-
* usually specified as a path. For example, a Project resource is specified as
1314-
* `projects/{project}`.
1309+
* @param resource REQUIRED: The resource for which the policy is being specified. See the
1310+
* operation documentation for the appropriate value for this field.
13151311
* @param policy REQUIRED: The complete policy to be applied to the `resource`. The size of the
13161312
* policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
13171313
* Platform services (such as Projects) might reject them.
@@ -1411,9 +1407,8 @@ public final UnaryCallable<SetIamPolicyRequest, Policy> setIamPolicyCallable() {
14111407
* }
14121408
* </code></pre>
14131409
*
1414-
* @param resource REQUIRED: The resource for which the policy detail is being requested.
1415-
* `resource` is usually specified as a path. For example, a Project resource is specified as
1416-
* `projects/{project}`.
1410+
* @param resource REQUIRED: The resource for which the policy detail is being requested. See the
1411+
* operation documentation for the appropriate value for this field.
14171412
* @param permissions The set of permissions to check for the `resource`. Permissions with
14181413
* wildcards (such as '&#42;' or 'storage.&#42;') are not allowed. For more information see
14191414
* [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
@@ -1450,9 +1445,8 @@ public final TestIamPermissionsResponse testIamPermissions(
14501445
* }
14511446
* </code></pre>
14521447
*
1453-
* @param resource REQUIRED: The resource for which the policy detail is being requested.
1454-
* `resource` is usually specified as a path. For example, a Project resource is specified as
1455-
* `projects/{project}`.
1448+
* @param resource REQUIRED: The resource for which the policy detail is being requested. See the
1449+
* operation documentation for the appropriate value for this field.
14561450
* @param permissions The set of permissions to check for the `resource`. Permissions with
14571451
* wildcards (such as '&#42;' or 'storage.&#42;') are not allowed. For more information see
14581452
* [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).

branches/autosynth-texttospeech/google-cloud-clients/google-cloud-tasks/src/main/java/com/google/cloud/tasks/v2beta3/CloudTasksClient.java

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,9 +1142,8 @@ public final UnaryCallable<ResumeQueueRequest, Queue> resumeQueueCallable() {
11421142
* }
11431143
* </code></pre>
11441144
*
1145-
* @param resource REQUIRED: The resource for which the policy is being requested. `resource` is
1146-
* usually specified as a path. For example, a Project resource is specified as
1147-
* `projects/{project}`.
1145+
* @param resource REQUIRED: The resource for which the policy is being requested. See the
1146+
* operation documentation for the appropriate value for this field.
11481147
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11491148
*/
11501149
public final Policy getIamPolicy(QueueName resource) {
@@ -1175,9 +1174,8 @@ public final Policy getIamPolicy(QueueName resource) {
11751174
* }
11761175
* </code></pre>
11771176
*
1178-
* @param resource REQUIRED: The resource for which the policy is being requested. `resource` is
1179-
* usually specified as a path. For example, a Project resource is specified as
1180-
* `projects/{project}`.
1177+
* @param resource REQUIRED: The resource for which the policy is being requested. See the
1178+
* operation documentation for the appropriate value for this field.
11811179
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11821180
*/
11831181
public final Policy getIamPolicy(String resource) {
@@ -1266,9 +1264,8 @@ public final UnaryCallable<GetIamPolicyRequest, Policy> getIamPolicyCallable() {
12661264
* }
12671265
* </code></pre>
12681266
*
1269-
* @param resource REQUIRED: The resource for which the policy is being specified. `resource` is
1270-
* usually specified as a path. For example, a Project resource is specified as
1271-
* `projects/{project}`.
1267+
* @param resource REQUIRED: The resource for which the policy is being specified. See the
1268+
* operation documentation for the appropriate value for this field.
12721269
* @param policy REQUIRED: The complete policy to be applied to the `resource`. The size of the
12731270
* policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
12741271
* Platform services (such as Projects) might reject them.
@@ -1307,9 +1304,8 @@ public final Policy setIamPolicy(QueueName resource, Policy policy) {
13071304
* }
13081305
* </code></pre>
13091306
*
1310-
* @param resource REQUIRED: The resource for which the policy is being specified. `resource` is
1311-
* usually specified as a path. For example, a Project resource is specified as
1312-
* `projects/{project}`.
1307+
* @param resource REQUIRED: The resource for which the policy is being specified. See the
1308+
* operation documentation for the appropriate value for this field.
13131309
* @param policy REQUIRED: The complete policy to be applied to the `resource`. The size of the
13141310
* policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud
13151311
* Platform services (such as Projects) might reject them.
@@ -1409,9 +1405,8 @@ public final UnaryCallable<SetIamPolicyRequest, Policy> setIamPolicyCallable() {
14091405
* }
14101406
* </code></pre>
14111407
*
1412-
* @param resource REQUIRED: The resource for which the policy detail is being requested.
1413-
* `resource` is usually specified as a path. For example, a Project resource is specified as
1414-
* `projects/{project}`.
1408+
* @param resource REQUIRED: The resource for which the policy detail is being requested. See the
1409+
* operation documentation for the appropriate value for this field.
14151410
* @param permissions The set of permissions to check for the `resource`. Permissions with
14161411
* wildcards (such as '&#42;' or 'storage.&#42;') are not allowed. For more information see
14171412
* [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).
@@ -1448,9 +1443,8 @@ public final TestIamPermissionsResponse testIamPermissions(
14481443
* }
14491444
* </code></pre>
14501445
*
1451-
* @param resource REQUIRED: The resource for which the policy detail is being requested.
1452-
* `resource` is usually specified as a path. For example, a Project resource is specified as
1453-
* `projects/{project}`.
1446+
* @param resource REQUIRED: The resource for which the policy detail is being requested. See the
1447+
* operation documentation for the appropriate value for this field.
14541448
* @param permissions The set of permissions to check for the `resource`. Permissions with
14551449
* wildcards (such as '&#42;' or 'storage.&#42;') are not allowed. For more information see
14561450
* [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).

branches/autosynth-texttospeech/google-cloud-clients/google-cloud-tasks/synth.metadata

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"updateTime": "2019-04-05T07:58:43.933428Z",
2+
"updateTime": "2019-05-07T07:57:01.415669Z",
33
"sources": [
44
{
55
"generator": {
66
"name": "artman",
7-
"version": "0.16.25",
8-
"dockerImage": "googleapis/artman@sha256:d9597f983d1d4e61272c63cb97b7d8f8234da9999526c35d357de3d781f0ec1b"
7+
"version": "0.19.0",
8+
"dockerImage": "googleapis/artman@sha256:d3df563538225ac6caac45d8ad86499500211d1bcb2536955a6dbda15e1b368e"
99
}
1010
},
1111
{
1212
"git": {
1313
"name": "googleapis",
1414
"remote": "https://github.com/googleapis/googleapis.git",
15-
"sha": "327ff9c09f4b2bcc9633f035a58ad348e45fb2a0",
16-
"internalRef": "242045478"
15+
"sha": "5aeb4179d0c424be6b1b228bce7ec75ec24f3d12",
16+
"internalRef": "246901187"
1717
}
1818
}
1919
],

0 commit comments

Comments
 (0)