Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit 3f82655

Browse files
feat: Add service_account_id output field to CloudSQL properties (#724)
- [ ] Regenerate this pull request now. Clients can now observe the Service Account that is being used when connecting to the CloudSQL from the BigQuery. PiperOrigin-RevId: 463445598 Source-Link: googleapis/googleapis@fe833dd Source-Link: https://github.com/googleapis/googleapis-gen/commit/73fad9a6502225fc64332b2f6fea8089cda6db55 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNzNmYWQ5YTY1MDIyMjVmYzY0MzMyYjJmNmZlYTgwODljZGE2ZGI1NSJ9
1 parent 6bf4073 commit 3f82655

File tree

8 files changed

+627
-150
lines changed

8 files changed

+627
-150
lines changed

google-cloud-bigqueryconnection/src/main/java/com/google/cloud/bigquery/connection/v1beta1/ConnectionServiceClient.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ public final UnaryCallable<GetIamPolicyRequest, Policy> getIamPolicyCallable() {
961961
/**
962962
* Sets the access control policy on the specified resource. Replaces any existing policy.
963963
*
964-
* <p>Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
964+
* <p>Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
965965
*
966966
* <p>Sample code:
967967
*
@@ -995,7 +995,7 @@ public final Policy setIamPolicy(ResourceName resource, Policy policy) {
995995
/**
996996
* Sets the access control policy on the specified resource. Replaces any existing policy.
997997
*
998-
* <p>Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
998+
* <p>Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
999999
*
10001000
* <p>Sample code:
10011001
*
@@ -1026,7 +1026,7 @@ public final Policy setIamPolicy(String resource, Policy policy) {
10261026
/**
10271027
* Sets the access control policy on the specified resource. Replaces any existing policy.
10281028
*
1029-
* <p>Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
1029+
* <p>Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
10301030
*
10311031
* <p>Sample code:
10321032
*
@@ -1055,7 +1055,7 @@ public final Policy setIamPolicy(SetIamPolicyRequest request) {
10551055
/**
10561056
* Sets the access control policy on the specified resource. Replaces any existing policy.
10571057
*
1058-
* <p>Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
1058+
* <p>Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
10591059
*
10601060
* <p>Sample code:
10611061
*
@@ -1082,7 +1082,7 @@ public final UnaryCallable<SetIamPolicyRequest, Policy> setIamPolicyCallable() {
10821082
// AUTO-GENERATED DOCUMENTATION AND METHOD.
10831083
/**
10841084
* Returns permissions that a caller has on the specified resource. If the resource does not
1085-
* exist, this will return an empty set of permissions, not a NOT_FOUND error.
1085+
* exist, this will return an empty set of permissions, not a `NOT_FOUND` error.
10861086
*
10871087
* <p>Note: This operation is designed to be used for building permission-aware UIs and
10881088
* command-line tools, not for authorization checking. This operation may "fail open" without
@@ -1121,7 +1121,7 @@ public final TestIamPermissionsResponse testIamPermissions(
11211121
// AUTO-GENERATED DOCUMENTATION AND METHOD.
11221122
/**
11231123
* Returns permissions that a caller has on the specified resource. If the resource does not
1124-
* exist, this will return an empty set of permissions, not a NOT_FOUND error.
1124+
* exist, this will return an empty set of permissions, not a `NOT_FOUND` error.
11251125
*
11261126
* <p>Note: This operation is designed to be used for building permission-aware UIs and
11271127
* command-line tools, not for authorization checking. This operation may "fail open" without
@@ -1160,7 +1160,7 @@ public final TestIamPermissionsResponse testIamPermissions(
11601160
// AUTO-GENERATED DOCUMENTATION AND METHOD.
11611161
/**
11621162
* Returns permissions that a caller has on the specified resource. If the resource does not
1163-
* exist, this will return an empty set of permissions, not a NOT_FOUND error.
1163+
* exist, this will return an empty set of permissions, not a `NOT_FOUND` error.
11641164
*
11651165
* <p>Note: This operation is designed to be used for building permission-aware UIs and
11661166
* command-line tools, not for authorization checking. This operation may "fail open" without
@@ -1191,7 +1191,7 @@ public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsReq
11911191
// AUTO-GENERATED DOCUMENTATION AND METHOD.
11921192
/**
11931193
* Returns permissions that a caller has on the specified resource. If the resource does not
1194-
* exist, this will return an empty set of permissions, not a NOT_FOUND error.
1194+
* exist, this will return an empty set of permissions, not a `NOT_FOUND` error.
11951195
*
11961196
* <p>Note: This operation is designed to be used for building permission-aware UIs and
11971197
* command-line tools, not for authorization checking. This operation may "fail open" without

grpc-google-cloud-bigqueryconnection-v1beta1/src/main/java/com/google/cloud/bigquery/connection/v1beta1/ConnectionServiceGrpc.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ public void getIamPolicy(
637637
* <pre>
638638
* Sets the access control policy on the specified resource. Replaces any
639639
* existing policy.
640-
* Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
640+
* Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
641641
* </pre>
642642
*/
643643
public void setIamPolicy(
@@ -653,7 +653,7 @@ public void setIamPolicy(
653653
* <pre>
654654
* Returns permissions that a caller has on the specified resource.
655655
* If the resource does not exist, this will return an empty set of
656-
* permissions, not a NOT_FOUND error.
656+
* permissions, not a `NOT_FOUND` error.
657657
* Note: This operation is designed to be used for building permission-aware
658658
* UIs and command-line tools, not for authorization checking. This operation
659659
* may "fail open" without warning.
@@ -893,7 +893,7 @@ public void getIamPolicy(
893893
* <pre>
894894
* Sets the access control policy on the specified resource. Replaces any
895895
* existing policy.
896-
* Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
896+
* Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
897897
* </pre>
898898
*/
899899
public void setIamPolicy(
@@ -911,7 +911,7 @@ public void setIamPolicy(
911911
* <pre>
912912
* Returns permissions that a caller has on the specified resource.
913913
* If the resource does not exist, this will return an empty set of
914-
* permissions, not a NOT_FOUND error.
914+
* permissions, not a `NOT_FOUND` error.
915915
* Note: This operation is designed to be used for building permission-aware
916916
* UIs and command-line tools, not for authorization checking. This operation
917917
* may "fail open" without warning.
@@ -1054,7 +1054,7 @@ public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyReque
10541054
* <pre>
10551055
* Sets the access control policy on the specified resource. Replaces any
10561056
* existing policy.
1057-
* Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
1057+
* Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
10581058
* </pre>
10591059
*/
10601060
public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request) {
@@ -1068,7 +1068,7 @@ public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyReque
10681068
* <pre>
10691069
* Returns permissions that a caller has on the specified resource.
10701070
* If the resource does not exist, this will return an empty set of
1071-
* permissions, not a NOT_FOUND error.
1071+
* permissions, not a `NOT_FOUND` error.
10721072
* Note: This operation is designed to be used for building permission-aware
10731073
* UIs and command-line tools, not for authorization checking. This operation
10741074
* may "fail open" without warning.
@@ -1217,7 +1217,7 @@ protected ConnectionServiceFutureStub build(
12171217
* <pre>
12181218
* Sets the access control policy on the specified resource. Replaces any
12191219
* existing policy.
1220-
* Can return Public Errors: NOT_FOUND, INVALID_ARGUMENT and PERMISSION_DENIED
1220+
* Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors.
12211221
* </pre>
12221222
*/
12231223
public com.google.common.util.concurrent.ListenableFuture<com.google.iam.v1.Policy>
@@ -1232,7 +1232,7 @@ protected ConnectionServiceFutureStub build(
12321232
* <pre>
12331233
* Returns permissions that a caller has on the specified resource.
12341234
* If the resource does not exist, this will return an empty set of
1235-
* permissions, not a NOT_FOUND error.
1235+
* permissions, not a `NOT_FOUND` error.
12361236
* Note: This operation is designed to be used for building permission-aware
12371237
* UIs and command-line tools, not for authorization checking. This operation
12381238
* may "fail open" without warning.

0 commit comments

Comments
 (0)