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-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/DataPolicyOption.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,8 @@
17
17
packagecom.google.api.services.bigquery.model;
18
18
19
19
/**
20
-
* Data policy option proto, it currently supports name only, will support precedence later.
20
+
* Data policy option. For more information, see [Mask data by applying data policies to a
Copy file name to clipboardExpand all lines: clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/JobConfiguration.java
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,15 @@ public final class JobConfiguration extends com.google.api.client.json.GenericJs
87
87
@com.google.api.client.util.Key
88
88
privateJobConfigurationLoadload;
89
89
90
+
/**
91
+
* Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow for this job. If
92
+
* set, the number of slots used to execute the job will be throttled to try and keep its slot
93
+
* consumption below the requested rate.
94
+
* The value may be {@code null}.
95
+
*/
96
+
@com.google.api.client.util.Key
97
+
privatejava.lang.IntegermaxSlots;
98
+
90
99
/**
91
100
* [Pick one] Configures a query job.
92
101
* The value may be {@code null}.
@@ -241,6 +250,27 @@ public JobConfiguration setLoad(JobConfigurationLoad load) {
241
250
returnthis;
242
251
}
243
252
253
+
/**
254
+
* Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow for this job. If
255
+
* set, the number of slots used to execute the job will be throttled to try and keep its slot
256
+
* consumption below the requested rate.
257
+
* @return value or {@code null} for none
258
+
*/
259
+
publicjava.lang.IntegergetMaxSlots() {
260
+
returnmaxSlots;
261
+
}
262
+
263
+
/**
264
+
* Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow for this job. If
265
+
* set, the number of slots used to execute the job will be throttled to try and keep its slot
266
+
* consumption below the requested rate.
267
+
* @param maxSlots maxSlots or {@code null} for none
Copy file name to clipboardExpand all lines: clients/google-api-services-bigquery/v2/2.0.0/com/google/api/services/bigquery/model/TableFieldSchema.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ public final class TableFieldSchema extends com.google.api.client.json.GenericJs
46
46
privatejava.lang.Stringcollation;
47
47
48
48
/**
49
-
* Optional. Data policy options, will replace the data_policies.
49
+
* Optional. Data policies attached to this field, used for field-level access control.
50
50
* The value may be {@code null}.
51
51
*/
52
52
@com.google.api.client.util.Key
@@ -214,15 +214,15 @@ public TableFieldSchema setCollation(java.lang.String collation) {
214
214
}
215
215
216
216
/**
217
-
* Optional. Data policy options, will replace the data_policies.
217
+
* Optional. Data policies attached to this field, used for field-level access control.
0 commit comments