import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Creates a MembershipBinding. * Auto-naming is currently not supported for this resource. */ export declare class Binding extends pulumi.CustomResource { /** * Get an existing Binding 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): Binding; /** * Returns true if the given object is an instance of Binding. 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 Binding; /** * When the membership binding was created. */ readonly createTime: pulumi.Output; /** * When the membership binding was deleted. */ readonly deleteTime: pulumi.Output; /** * Optional. Labels for this MembershipBinding. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Required. The ID to use for the MembershipBinding. */ readonly membershipBindingId: pulumi.Output; readonly membershipId: pulumi.Output; /** * The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * A Scope resource name in the format `projects/*/locations/*/scopes/*`. */ readonly scope: pulumi.Output; /** * State of the membership binding resource. */ readonly state: pulumi.Output; /** * Google-generated UUID for this resource. This is unique across all membershipbinding resources. If a membershipbinding resource is deleted and another resource with the same name is created, it gets a different uid. */ readonly uid: pulumi.Output; /** * When the membership binding was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Binding 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: BindingArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Binding resource. */ export interface BindingArgs { /** * Optional. Labels for this MembershipBinding. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Required. The ID to use for the MembershipBinding. */ membershipBindingId: pulumi.Input; membershipId: pulumi.Input; /** * The resource name for the membershipbinding itself `projects/{project}/locations/{location}/memberships/{membership}/bindings/{membershipbinding}` */ name?: pulumi.Input; project?: pulumi.Input; /** * A Scope resource name in the format `projects/*/locations/*/scopes/*`. */ scope?: pulumi.Input; }