@pulumiverse/cpln
Version:
A Pulumi package for creating and managing Control Plane (cpln) resources.
205 lines (204 loc) • 7.78 kB
TypeScript
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<pulumi.ID>, 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<outputs.IdentityAwsAccessPolicy | undefined>;
/**
* 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<outputs.IdentityAzureAccessPolicy | undefined>;
/**
* The ID, in GUID format, of the identity.
*/
readonly cplnId: pulumi.Output<string>;
/**
* Description of the identity.
*/
readonly description: pulumi.Output<string>;
/**
* The GCP access policy can either contain an existing serviceAccount or multiple bindings.
*/
readonly gcpAccessPolicy: pulumi.Output<outputs.IdentityGcpAccessPolicy | undefined>;
/**
* The GVC to which this identity belongs.
*/
readonly gvc: pulumi.Output<string>;
/**
* Name of the identity.
*/
readonly name: pulumi.Output<string>;
/**
* > **NOTE** The configuration of a native network resource requires the assistance of Control Plane support.
*/
readonly nativeNetworkResources: pulumi.Output<outputs.IdentityNativeNetworkResource[] | undefined>;
/**
* 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<outputs.IdentityNetworkResource[] | undefined>;
/**
* 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<outputs.IdentityNgsAccessPolicy | undefined>;
/**
* Full link to this resource. Can be referenced by other resources.
*/
readonly selfLink: pulumi.Output<string>;
/**
* Key-value map of identity status. Available fields: `objectName`.
*/
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<inputs.IdentityAwsAccessPolicy>;
/**
* A set of access policy rules that defines the actions and resources that an identity can access within an Azure
* environment.
*/
azureAccessPolicy?: pulumi.Input<inputs.IdentityAzureAccessPolicy>;
/**
* The ID, in GUID format, of the identity.
*/
cplnId?: pulumi.Input<string>;
/**
* Description of the identity.
*/
description?: pulumi.Input<string>;
/**
* The GCP access policy can either contain an existing serviceAccount or multiple bindings.
*/
gcpAccessPolicy?: pulumi.Input<inputs.IdentityGcpAccessPolicy>;
/**
* The GVC to which this identity belongs.
*/
gvc?: pulumi.Input<string>;
/**
* Name of the identity.
*/
name?: pulumi.Input<string>;
/**
* > **NOTE** The configuration of a native network resource requires the assistance of Control Plane support.
*/
nativeNetworkResources?: pulumi.Input<pulumi.Input<inputs.IdentityNativeNetworkResource>[]>;
/**
* 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<pulumi.Input<inputs.IdentityNetworkResource>[]>;
/**
* A set of access policy rules that defines the actions and resources that an identity can access within an NGA
* environment.
*/
ngsAccessPolicy?: pulumi.Input<inputs.IdentityNgsAccessPolicy>;
/**
* Full link to this resource. Can be referenced by other resources.
*/
selfLink?: pulumi.Input<string>;
/**
* Key-value map of identity status. Available fields: `objectName`.
*/
status?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Key-value map of resource tags.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}
/**
* 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<inputs.IdentityAwsAccessPolicy>;
/**
* A set of access policy rules that defines the actions and resources that an identity can access within an Azure
* environment.
*/
azureAccessPolicy?: pulumi.Input<inputs.IdentityAzureAccessPolicy>;
/**
* Description of the identity.
*/
description?: pulumi.Input<string>;
/**
* The GCP access policy can either contain an existing serviceAccount or multiple bindings.
*/
gcpAccessPolicy?: pulumi.Input<inputs.IdentityGcpAccessPolicy>;
/**
* The GVC to which this identity belongs.
*/
gvc: pulumi.Input<string>;
/**
* Name of the identity.
*/
name?: pulumi.Input<string>;
/**
* > **NOTE** The configuration of a native network resource requires the assistance of Control Plane support.
*/
nativeNetworkResources?: pulumi.Input<pulumi.Input<inputs.IdentityNativeNetworkResource>[]>;
/**
* 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<pulumi.Input<inputs.IdentityNetworkResource>[]>;
/**
* A set of access policy rules that defines the actions and resources that an identity can access within an NGA
* environment.
*/
ngsAccessPolicy?: pulumi.Input<inputs.IdentityNgsAccessPolicy>;
/**
* Key-value map of resource tags.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}