Skip to content

CreateOptions

Defined in: packages/repo/src/types.ts:390

Options for Repository.create.

optional contextValues?: ContextValues

Defined in: packages/repo/src/types.ts:414

Advanced: reuse an existing context bag for a nested repository call. When omitted, the repository creates a fresh bag for this operation.


optional readMask?: FieldMask

Defined in: packages/repo/src/types.ts:396

A FieldMask controlling which fields are returned on the created resource. Overrides the repository’s default read mask. Defaults to "*".


optional transaction?: Engine

Defined in: packages/repo/src/types.ts:408

Run the operation within a transaction.


optional validateOnly?: boolean

Defined in: packages/repo/src/types.ts:405

If true, the resource is validated but not persisted. The returned message reflects what would have been created (including the computed etag), but no database write occurs.

https://google.aip.dev/163