import * as pulumi from "@pulumi/pulumi"; /** * Data source for retrieving a Harness Chaos Hub. * * ## Example Usage */ export declare function getHubV2(args?: GetHubV2Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHubV2. */ export interface GetHubV2Args { /** * Unique identifier of the chaos hub. */ identity?: string; /** * Name of the chaos hub. */ name?: string; /** * The ID of the organization. */ orgId?: string; /** * The ID of the project. */ projectId?: string; } /** * A collection of values returned by getHubV2. */ export interface GetHubV2Result { /** * Account ID. */ readonly accountId: string; /** * Number of action templates in the hub. */ readonly actionTemplateCount: number; /** * Connector ID (deprecated). */ readonly connectorId: string; /** * Reference to the Git connector. */ readonly connectorRef: string; /** * Creation timestamp (Unix epoch). */ readonly createdAt: number; /** * User who created the chaos hub. */ readonly createdBy: string; /** * Description of the chaos hub. */ readonly description: string; /** * Number of experiment templates in the hub. */ readonly experimentTemplateCount: number; /** * Number of fault templates in the hub. */ readonly faultTemplateCount: number; /** * Internal hub ID. */ readonly hubId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the chaos hub. */ readonly identity?: string; /** * Whether this is the default chaos hub. */ readonly isDefault: boolean; /** * Whether the chaos hub has been removed. */ readonly isRemoved: boolean; /** * Timestamp of the last sync (Unix epoch). */ readonly lastSyncedAt: number; /** * Name of the chaos hub. */ readonly name?: string; /** * The ID of the organization. */ readonly orgId?: string; /** * Number of probe templates in the hub. */ readonly probeTemplateCount: number; /** * The ID of the project. */ readonly projectId?: string; /** * Git repository branch. */ readonly repoBranch: string; /** * Name of the Git repository. */ readonly repoName: string; /** * Git repository URL. */ readonly repoUrl: string; /** * Tags associated with the chaos hub. */ readonly tags: string[]; /** * Last update timestamp (Unix epoch). */ readonly updatedAt: number; /** * User who last updated the chaos hub. */ readonly updatedBy: string; } /** * Data source for retrieving a Harness Chaos Hub. * * ## Example Usage */ export declare function getHubV2Output(args?: GetHubV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHubV2. */ export interface GetHubV2OutputArgs { /** * Unique identifier of the chaos hub. */ identity?: pulumi.Input; /** * Name of the chaos hub. */ name?: pulumi.Input; /** * The ID of the organization. */ orgId?: pulumi.Input; /** * The ID of the project. */ projectId?: pulumi.Input; } //# sourceMappingURL=getHubV2.d.ts.map