import * as pulumi from "@pulumi/pulumi"; export declare class Team extends pulumi.CustomResource { /** * Get an existing Team 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?: TeamState, opts?: pulumi.CustomResourceOptions): Team; /** * Returns true if the given object is an instance of Team. 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 Team; /** * Whether Credit Card is copied */ readonly copyCc: pulumi.Output; /** * Unique Cluster ID for created cluster */ readonly teamId: pulumi.Output; /** * Members of the team. (Owner must be specified, which is the owner of the api key.) */ readonly teamMembers: pulumi.Output<{ [key: string]: string; }>; /** * Name of the team */ readonly teamName: pulumi.Output; /** * Create a Team 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: TeamArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Team resources. */ export interface TeamState { /** * Whether Credit Card is copied */ copyCc?: pulumi.Input; /** * Unique Cluster ID for created cluster */ teamId?: pulumi.Input; /** * Members of the team. (Owner must be specified, which is the owner of the api key.) */ teamMembers?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Name of the team */ teamName?: pulumi.Input; } /** * The set of arguments for constructing a Team resource. */ export interface TeamArgs { /** * Whether Credit Card is copied */ copyCc: pulumi.Input; /** * Members of the team. (Owner must be specified, which is the owner of the api key.) */ teamMembers: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Name of the team */ teamName: pulumi.Input; }