Skip to content

Commit 57b6246

Browse files
feat(spanner): update the api
#### spanner:v1 The following keys were added: - schemas.CreateInstanceMetadata.properties.expectedFulfillmentPeriod.type (Total Keys: 1) - schemas.UpdateInstanceMetadata.properties.expectedFulfillmentPeriod.type (Total Keys: 1)
1 parent 7500810 commit 57b6246

File tree

3 files changed

+47
-19
lines changed

3 files changed

+47
-19
lines changed

docs/dyn/spanner_v1.projects.instances.databases.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ <h3>Method Details</h3>
155155
&quot;extraStatements&quot;: [ # Optional. A list of DDL statements to run inside the newly created database. Statements can create tables, indexes, etc. These statements execute atomically with the creation of the database: if there is an error in any statement, the database is not created.
156156
&quot;A String&quot;,
157157
],
158-
&quot;protoDescriptors&quot;: &quot;A String&quot;, # Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in &#x27;extra_statements&#x27; above. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto). To generate it, [install](https://grpc.io/docs/protoc-installation/) and run `protoc` with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run &quot;&quot;&quot; $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto &quot;&quot;&quot; For more details, see protobuffer [self description](https://developers.google.com/protocol-buffers/docs/techniques#self-description).
158+
&quot;protoDescriptors&quot;: &quot;A String&quot;, # Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in &#x27;extra_statements&#x27; above. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto). To generate it, [install](https://grpc.io/docs/protoc-installation/) and run `protoc` with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run ``` $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto ``` For more details, see protobuffer [self description](https://developers.google.com/protocol-buffers/docs/techniques#self-description).
159159
}
160160

161161
x__xgafv: string, V1 error format.
@@ -828,7 +828,7 @@ <h3>Method Details</h3>
828828

829829
{ # Enqueues the given DDL statements to be applied, in order but not necessarily all at once, to the database schema at some point (or points) in the future. The server checks that the statements are executable (syntactically valid, name tables that exist, etc.) before enqueueing them, but they may still fail upon later execution (e.g., if a statement from another batch of statements is applied first and it conflicts in some way, or if there is some data-related problem like a `NULL` value in a column to which `NOT NULL` would be added). If a statement fails, all subsequent statements in the batch are automatically cancelled. Each batch of statements is assigned a name which can be used with the Operations API to monitor progress. See the operation_id field for more details.
830830
&quot;operationId&quot;: &quot;A String&quot;, # If empty, the new update request is assigned an automatically-generated operation ID. Otherwise, `operation_id` is used to construct the name of the resulting Operation. Specifying an explicit operation ID simplifies determining whether the statements were executed in the event that the UpdateDatabaseDdl call is replayed, or the return value is otherwise lost: the database and `operation_id` fields can be combined to form the name of the resulting longrunning.Operation: `/operations/`. `operation_id` should be unique within the database, and must be a valid identifier: `a-z*`. Note that automatically-generated operation IDs always begin with an underscore. If the named operation already exists, UpdateDatabaseDdl returns `ALREADY_EXISTS`.
831-
&quot;protoDescriptors&quot;: &quot;A String&quot;, # Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto). To generate it, [install](https://grpc.io/docs/protoc-installation/) and run `protoc` with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run &quot;&quot;&quot; $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto &quot;&quot;&quot; For more details, see protobuffer [self description](https://developers.google.com/protocol-buffers/docs/techniques#self-description).
831+
&quot;protoDescriptors&quot;: &quot;A String&quot;, # Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet](https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/descriptor.proto). To generate it, [install](https://grpc.io/docs/protoc-installation/) and run `protoc` with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run ``` $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto ``` For more details, see protobuffer [self description](https://developers.google.com/protocol-buffers/docs/techniques#self-description).
832832
&quot;statements&quot;: [ # Required. DDL statements to be applied to the database.
833833
&quot;A String&quot;,
834834
],

0 commit comments

Comments
 (0)