@pulumi/harness
Version:
A Pulumi package for creating and managing Harness resources.
135 lines (134 loc) • 3.47 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as harness from "@pulumi/harness";
*
* const example = harness.platform.getAzureKeyVaultConnector({
* identifier: "identifier",
* });
* ```
*/
export declare function getAzureKeyVaultConnector(args: GetAzureKeyVaultConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetAzureKeyVaultConnectorResult>;
/**
* A collection of arguments for invoking getAzureKeyVaultConnector.
*/
export interface GetAzureKeyVaultConnectorArgs {
/**
* Unique identifier of the resource.
*/
identifier: string;
/**
* Name of the resource.
*/
name?: string;
/**
* Unique identifier of the organization.
*/
orgId?: string;
/**
* Unique identifier of the project.
*/
projectId?: string;
}
/**
* A collection of values returned by getAzureKeyVaultConnector.
*/
export interface GetAzureKeyVaultConnectorResult {
/**
* Azure environment type. Possible values: AZURE or AZURE*US*GOVERNMENT. Default value: AZURE
*/
readonly azureEnvironmentType: string;
/**
* Application ID of the Azure App.
*/
readonly clientId: string;
/**
* Connect using only the delegates which have these tags.
*/
readonly delegateSelectors: string[];
/**
* Description of the resource.
*/
readonly description: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Unique identifier of the resource.
*/
readonly identifier: string;
/**
* Specifies whether or not is the default value.
*/
readonly isDefault: boolean;
/**
* Name of the resource.
*/
readonly name?: string;
/**
* Unique identifier of the organization.
*/
readonly orgId?: string;
/**
* Unique identifier of the project.
*/
readonly projectId?: string;
/**
* The Harness text secret with the Azure authentication key as its value.
*/
readonly secretKey: string;
/**
* Azure subscription ID.
*/
readonly subscription: string;
/**
* Tags to associate with the resource.
*/
readonly tags: string[];
/**
* The Azure Active Directory (AAD) directory ID where you created your application.
*/
readonly tenantId: string;
/**
* Name of the vault.
*/
readonly vaultName: string;
}
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as harness from "@pulumi/harness";
*
* const example = harness.platform.getAzureKeyVaultConnector({
* identifier: "identifier",
* });
* ```
*/
export declare function getAzureKeyVaultConnectorOutput(args: GetAzureKeyVaultConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAzureKeyVaultConnectorResult>;
/**
* A collection of arguments for invoking getAzureKeyVaultConnector.
*/
export interface GetAzureKeyVaultConnectorOutputArgs {
/**
* Unique identifier of the resource.
*/
identifier: pulumi.Input<string>;
/**
* Name of the resource.
*/
name?: pulumi.Input<string>;
/**
* Unique identifier of the organization.
*/
orgId?: pulumi.Input<string>;
/**
* Unique identifier of the project.
*/
projectId?: pulumi.Input<string>;
}