You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-sqladmin/v1/2.0.0/com/google/api/services/sqladmin/model/ExecuteSqlPayload.java
+54Lines changed: 54 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,14 @@ public final class ExecuteSqlPayload extends com.google.api.client.json.GenericJ
44
44
@com.google.api.client.util.Key
45
45
privatejava.lang.Stringdatabase;
46
46
47
+
/**
48
+
* Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The
49
+
* default mode is to throw an error.
50
+
* The value may be {@code null}.
51
+
*/
52
+
@com.google.api.client.util.Key
53
+
privatejava.lang.StringpartialResultMode;
54
+
47
55
/**
48
56
* Optional. The maximum number of rows returned per SQL statement.
49
57
* The value may be {@code null}.
@@ -59,6 +67,14 @@ public final class ExecuteSqlPayload extends com.google.api.client.json.GenericJ
59
67
@com.google.api.client.util.Key
60
68
privatejava.lang.StringsqlStatement;
61
69
70
+
/**
71
+
* Optional. The name of an existing database user to connect to the database. When
72
+
* `auto_iam_authn` is set to true, this field is ignored and the API caller's IAM user is used.
73
+
* The value may be {@code null}.
74
+
*/
75
+
@com.google.api.client.util.Key
76
+
privatejava.lang.Stringuser;
77
+
62
78
/**
63
79
* Optional. When set to true, the API caller identity associated with the request is used for
64
80
* database authentication. The API caller must be an IAM user in the database.
@@ -95,6 +111,25 @@ public ExecuteSqlPayload setDatabase(java.lang.String database) {
95
111
returnthis;
96
112
}
97
113
114
+
/**
115
+
* Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The
116
+
* default mode is to throw an error.
117
+
* @return value or {@code null} for none
118
+
*/
119
+
publicjava.lang.StringgetPartialResultMode() {
120
+
returnpartialResultMode;
121
+
}
122
+
123
+
/**
124
+
* Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The
125
+
* default mode is to throw an error.
126
+
* @param partialResultMode partialResultMode or {@code null} for none
Copy file name to clipboardExpand all lines: clients/google-api-services-sqladmin/v1/2.0.0/com/google/api/services/sqladmin/model/SqlInstancesGetLatestRecoveryTimeResponse.java
0 commit comments