import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Identity extends pulumi.CustomResource { /** * Get an existing Identity 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?: IdentityState, opts?: pulumi.CustomResourceOptions): Identity; /** * Returns true if the given object is an instance of Identity. 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 Identity; /** * A set of access policy rules that defines the actions and resources that an identity can access within an AWS environment. */ readonly awsAccessPolicy: pulumi.Output; /** * A set of access policy rules that defines the actions and resources that an identity can access within an Azure environment. */ readonly azureAccessPolicy: pulumi.Output; /** * The ID, in GUID format, of the identity. */ readonly cplnId: pulumi.Output; /** * Description of the identity. */ readonly description: pulumi.Output; /** * The GCP access policy can either contain an existing serviceAccount or multiple bindings. */ readonly gcpAccessPolicy: pulumi.Output; /** * The GVC to which this identity belongs. */ readonly gvc: pulumi.Output; /** * Name of the identity. */ readonly name: pulumi.Output; /** * > **NOTE** The configuration of a native network resource requires the assistance of Control Plane support. */ readonly nativeNetworkResources: pulumi.Output; /** * A network resource can be configured with: - A fully qualified domain name (FQDN) and ports. - An FQDN, resolver IP, and ports. - IP's and ports. */ readonly networkResources: pulumi.Output; /** * A set of access policy rules that defines the actions and resources that an identity can access within an NGA environment. */ readonly ngsAccessPolicy: pulumi.Output; /** * Full link to this resource. Can be referenced by other resources. */ readonly selfLink: pulumi.Output; /** * Key-value map of identity status. Available fields: `objectName`, `aws`, `gcp`, `azure`. */ readonly status: pulumi.Output<{ [key: string]: string; }>; /** * Key-value map of resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; /** * Create a Identity 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: IdentityArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Identity resources. */ export interface IdentityState { /** * A set of access policy rules that defines the actions and resources that an identity can access within an AWS environment. */ awsAccessPolicy?: pulumi.Input; /** * A set of access policy rules that defines the actions and resources that an identity can access within an Azure environment. */ azureAccessPolicy?: pulumi.Input; /** * The ID, in GUID format, of the identity. */ cplnId?: pulumi.Input; /** * Description of the identity. */ description?: pulumi.Input; /** * The GCP access policy can either contain an existing serviceAccount or multiple bindings. */ gcpAccessPolicy?: pulumi.Input; /** * The GVC to which this identity belongs. */ gvc?: pulumi.Input; /** * Name of the identity. */ name?: pulumi.Input; /** * > **NOTE** The configuration of a native network resource requires the assistance of Control Plane support. */ nativeNetworkResources?: pulumi.Input[]>; /** * A network resource can be configured with: - A fully qualified domain name (FQDN) and ports. - An FQDN, resolver IP, and ports. - IP's and ports. */ networkResources?: pulumi.Input[]>; /** * A set of access policy rules that defines the actions and resources that an identity can access within an NGA environment. */ ngsAccessPolicy?: pulumi.Input; /** * Full link to this resource. Can be referenced by other resources. */ selfLink?: pulumi.Input; /** * Key-value map of identity status. Available fields: `objectName`, `aws`, `gcp`, `azure`. */ status?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Identity resource. */ export interface IdentityArgs { /** * A set of access policy rules that defines the actions and resources that an identity can access within an AWS environment. */ awsAccessPolicy?: pulumi.Input; /** * A set of access policy rules that defines the actions and resources that an identity can access within an Azure environment. */ azureAccessPolicy?: pulumi.Input; /** * Description of the identity. */ description?: pulumi.Input; /** * The GCP access policy can either contain an existing serviceAccount or multiple bindings. */ gcpAccessPolicy?: pulumi.Input; /** * The GVC to which this identity belongs. */ gvc: pulumi.Input; /** * Name of the identity. */ name?: pulumi.Input; /** * > **NOTE** The configuration of a native network resource requires the assistance of Control Plane support. */ nativeNetworkResources?: pulumi.Input[]>; /** * A network resource can be configured with: - A fully qualified domain name (FQDN) and ports. - An FQDN, resolver IP, and ports. - IP's and ports. */ networkResources?: pulumi.Input[]>; /** * A set of access policy rules that defines the actions and resources that an identity can access within an NGA environment. */ ngsAccessPolicy?: pulumi.Input; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }