Skip to content

Commit b028b4c

Browse files
1 parent 0e9fb5e commit b028b4c

4 files changed

Lines changed: 98 additions & 1 deletion

File tree

β€Žhandwritten/bigquery/src/types.d.tsβ€Ž

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
/**
16-
* Discovery Revision: 20260211
16+
* Discovery Revision: 20260224
1717
*/
1818

1919
/**
@@ -1262,6 +1262,21 @@ declare namespace bigquery {
12621262
* Output only. Number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.
12631263
*/
12641264
deletedRowCount?: string;
1265+
/**
1266+
* Output only. DML mode used.
1267+
*/
1268+
dmlMode?:
1269+
| 'DML_MODE_UNSPECIFIED'
1270+
| 'COARSE_GRAINED_DML'
1271+
| 'FINE_GRAINED_DML';
1272+
/**
1273+
* Output only. Reason for disabling fine-grained DML if applicable.
1274+
*/
1275+
fineGrainedDmlUnusedReason?:
1276+
| 'FINE_GRAINED_DML_UNUSED_REASON_UNSPECIFIED'
1277+
| 'MAX_PARTITION_SIZE_EXCEEDED'
1278+
| 'TABLE_NOT_ENROLLED'
1279+
| 'DML_IN_MULTI_STATEMENT_TRANSACTION';
12651280
/**
12661281
* Output only. Number of inserted Rows. Populated by DML INSERT and MERGE statements
12671282
*/
@@ -3198,6 +3213,10 @@ declare namespace bigquery {
31983213
* Output only. Describes execution plan for the query.
31993214
*/
32003215
queryPlan?: Array<IExplainQueryStage>;
3216+
/**
3217+
* Output only. Referenced property graphs for the job. Queries that reference more than 50 property graphs will not have a complete list.
3218+
*/
3219+
referencedPropertyGraphs?: Array<IPropertyGraphReference>;
32013220
/**
32023221
* Output only. Referenced routines for the job.
32033222
*/
@@ -4000,6 +4019,24 @@ declare namespace bigquery {
40004019
projectId?: string;
40014020
};
40024021

4022+
/**
4023+
* Id path of a property graph.
4024+
*/
4025+
type IPropertyGraphReference = {
4026+
/**
4027+
* Required. The ID of the dataset containing this property graph.
4028+
*/
4029+
datasetId?: string;
4030+
/**
4031+
* Required. The ID of the project containing this property graph.
4032+
*/
4033+
projectId?: string;
4034+
/**
4035+
* Required. The ID of the property graph. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters.
4036+
*/
4037+
propertyGraphId?: string;
4038+
};
4039+
40034040
/**
40044041
* The column metadata index pruning statistics.
40054042
*/

β€Žhandwritten/logging-bunyan/.kokoro/common.cfgβ€Ž

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žhandwritten/logging-bunyan/.kokoro/continuous/node14/common.cfgβ€Ž

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žhandwritten/logging-winston/.kokoro/common.cfgβ€Ž

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)