import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * A schema bundle object that can be referenced in SQL queries. * * To get more information about SchemaBundle, see: * * * [API documentation](https://cloud.google.com/bigtable/docs/reference/admin/rest/v2/projects.instances.tables.schemaBundles) * * ## Example Usage * * ### Bigtable Schema Bundle * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * import * as std from "@pulumi/std"; * * const instance = new gcp.bigtable.Instance("instance", { * name: "bt-instance", * clusters: [{ * clusterId: "cluster-1", * zone: "us-east1-b", * numNodes: 1, * storageType: "HDD", * }], * deletionProtection: false, * }); * const table = new gcp.bigtable.Table("table", { * name: "bt-table", * instanceName: instance.name, * columnFamilies: [{ * family: "CF", * }], * }); * const schemaBundle = new gcp.bigtable.SchemaBundle("schema_bundle", { * schemaBundleId: "bt-schema-bundle", * instance: instance.name, * table: table.name, * protoSchema: { * protoDescriptors: std.filebase64({ * input: "test-fixtures/proto_schema_bundle.pb", * }).then(invoke => invoke.result), * }, * }); * ``` * * ## Import * * SchemaBundle can be imported using any of these accepted formats: * * * `projects/{{project}}/instances/{{instance}}/tables/{{table}}/schemaBundles/{{schema_bundle_id}}` * * `{{project}}/{{instance}}/{{table}}/{{schema_bundle_id}}` * * `{{instance}}/{{table}}/{{schema_bundle_id}}` * * When using the `pulumi import` command, SchemaBundle can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:bigtable/schemaBundle:SchemaBundle default projects/{{project}}/instances/{{instance}}/tables/{{table}}/schemaBundles/{{schema_bundle_id}} * $ pulumi import gcp:bigtable/schemaBundle:SchemaBundle default {{project}}/{{instance}}/{{table}}/{{schema_bundle_id}} * $ pulumi import gcp:bigtable/schemaBundle:SchemaBundle default {{instance}}/{{table}}/{{schema_bundle_id}} * ``` */ export declare class SchemaBundle extends pulumi.CustomResource { /** * Get an existing SchemaBundle resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SchemaBundleState, opts?: pulumi.CustomResourceOptions): SchemaBundle; /** * Returns true if the given object is an instance of SchemaBundle. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SchemaBundle; /** * etag is used for optimistic concurrency control as a way to help prevent simultaneous * updates of a schema bundle from overwriting each other. This may be sent on update and delete * requests to ensure the client has an update-to-date value before proceeding. The server returns * an ABORTED error on a mismatched etag. */ readonly etag: pulumi.Output; /** * If true, allow backwards incompatible changes. */ readonly ignoreWarnings: pulumi.Output; /** * The name of the instance to create the schema bundle within. */ readonly instance: pulumi.Output; /** * The unique name of the requested schema bundle. Values are of the form `projects//instances//tables//schemaBundles/`. */ readonly name: pulumi.Output; /** * The ID of the project in which the resource belongs. * If it is not provided, the provider project is used. */ readonly project: pulumi.Output; /** * File descriptor set, generated by protoc. * To generate, use protoc with imports and source info included. For an example test.proto file, the following command would put the value in a new file named out.pb. * $ protoc --include_imports --include_source_info test.proto -o out.pb * Structure is documented below. */ readonly protoSchema: pulumi.Output; /** * The unique name of the schema bundle in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`. */ readonly schemaBundleId: pulumi.Output; /** * The name of the table to create the schema bundle within. */ readonly table: pulumi.Output; /** * Create a SchemaBundle resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SchemaBundleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SchemaBundle resources. */ export interface SchemaBundleState { /** * etag is used for optimistic concurrency control as a way to help prevent simultaneous * updates of a schema bundle from overwriting each other. This may be sent on update and delete * requests to ensure the client has an update-to-date value before proceeding. The server returns * an ABORTED error on a mismatched etag. */ etag?: pulumi.Input; /** * If true, allow backwards incompatible changes. */ ignoreWarnings?: pulumi.Input; /** * The name of the instance to create the schema bundle within. */ instance?: pulumi.Input; /** * The unique name of the requested schema bundle. Values are of the form `projects//instances//tables/
/schemaBundles/`. */ name?: pulumi.Input; /** * The ID of the project in which the resource belongs. * If it is not provided, the provider project is used. */ project?: pulumi.Input; /** * File descriptor set, generated by protoc. * To generate, use protoc with imports and source info included. For an example test.proto file, the following command would put the value in a new file named out.pb. * $ protoc --include_imports --include_source_info test.proto -o out.pb * Structure is documented below. */ protoSchema?: pulumi.Input; /** * The unique name of the schema bundle in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`. */ schemaBundleId?: pulumi.Input; /** * The name of the table to create the schema bundle within. */ table?: pulumi.Input; } /** * The set of arguments for constructing a SchemaBundle resource. */ export interface SchemaBundleArgs { /** * If true, allow backwards incompatible changes. */ ignoreWarnings?: pulumi.Input; /** * The name of the instance to create the schema bundle within. */ instance?: pulumi.Input; /** * The ID of the project in which the resource belongs. * If it is not provided, the provider project is used. */ project?: pulumi.Input; /** * File descriptor set, generated by protoc. * To generate, use protoc with imports and source info included. For an example test.proto file, the following command would put the value in a new file named out.pb. * $ protoc --include_imports --include_source_info test.proto -o out.pb * Structure is documented below. */ protoSchema: pulumi.Input; /** * The unique name of the schema bundle in the form `[_a-zA-Z0-9][-_.a-zA-Z0-9]*`. */ schemaBundleId: pulumi.Input; /** * The name of the table to create the schema bundle within. */ table?: pulumi.Input; }