import * as pulumi from "@pulumi/pulumi"; /** * Creates a new ServiceBinding in a given project and location. */ export declare class ServiceBinding extends pulumi.CustomResource { /** * Get an existing ServiceBinding 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ServiceBinding; /** * Returns true if the given object is an instance of ServiceBinding. 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 ServiceBinding; /** * The timestamp when the resource was created. */ readonly createTime: pulumi.Output; /** * Optional. A free-text description of the resource. Max length 1024 characters. */ readonly description: pulumi.Output; /** * Optional. Set of label tags associated with the ServiceBinding resource. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Name of the ServiceBinding resource. It matches pattern `projects/*/locations/global/serviceBindings/service_binding_name`. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The full Service Directory Service name of the format projects/*/locations/*/namespaces/*/services/* */ readonly service: pulumi.Output; /** * Required. Short name of the ServiceBinding resource to be created. */ readonly serviceBindingId: pulumi.Output; /** * The unique identifier of the Service Directory Service against which the Service Binding resource is validated. This is populated when the Service Binding resource is used in another resource (like Backend Service). This is of the UUID4 format. */ readonly serviceId: pulumi.Output; /** * The timestamp when the resource was updated. */ readonly updateTime: pulumi.Output; /** * Create a ServiceBinding 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: ServiceBindingArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ServiceBinding resource. */ export interface ServiceBindingArgs { /** * Optional. A free-text description of the resource. Max length 1024 characters. */ description?: pulumi.Input; /** * Optional. Set of label tags associated with the ServiceBinding resource. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Name of the ServiceBinding resource. It matches pattern `projects/*/locations/global/serviceBindings/service_binding_name`. */ name?: pulumi.Input; project?: pulumi.Input; /** * The full Service Directory Service name of the format projects/*/locations/*/namespaces/*/services/* */ service: pulumi.Input; /** * Required. Short name of the ServiceBinding resource to be created. */ serviceBindingId: pulumi.Input; }