import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Creates a Scope. * Auto-naming is currently not supported for this resource. */ export declare class Scope extends pulumi.CustomResource { /** * Get an existing Scope 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): Scope; /** * Returns true if the given object is an instance of Scope. 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 Scope; /** * When the scope was created. */ readonly createTime: pulumi.Output; /** * When the scope was deleted. */ readonly deleteTime: pulumi.Output; /** * Optional. Labels for this Scope. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The resource name for the scope `projects/{project}/locations/{location}/scopes/{scope}` */ readonly name: pulumi.Output; /** * Optional. Scope-level cluster namespace labels. For the member clusters bound to the Scope, these labels are applied to each namespace under the Scope. Scope-level labels take precedence over Namespace-level labels (`namespace_labels` in the Fleet Namespace resource) if they share a key. Keys and values must be Kubernetes-conformant. */ readonly namespaceLabels: pulumi.Output<{ [key: string]: string; }>; readonly project: pulumi.Output; /** * Required. Client chosen ID for the Scope. `scope_id` must be a ???? */ readonly scopeId: pulumi.Output; /** * State of the scope resource. */ readonly state: pulumi.Output; /** * Google-generated UUID for this resource. This is unique across all scope resources. If a scope resource is deleted and another resource with the same name is created, it gets a different uid. */ readonly uid: pulumi.Output; /** * When the scope was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Scope 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: ScopeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Scope resource. */ export interface ScopeArgs { /** * Optional. Labels for this Scope. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * The resource name for the scope `projects/{project}/locations/{location}/scopes/{scope}` */ name?: pulumi.Input; /** * Optional. Scope-level cluster namespace labels. For the member clusters bound to the Scope, these labels are applied to each namespace under the Scope. Scope-level labels take precedence over Namespace-level labels (`namespace_labels` in the Fleet Namespace resource) if they share a key. Keys and values must be Kubernetes-conformant. */ namespaceLabels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; project?: pulumi.Input; /** * Required. Client chosen ID for the Scope. `scope_id` must be a ???? */ scopeId: pulumi.Input; }