@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
49 lines (48 loc) • 1.57 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
export declare function getFeature(args: GetFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetFeatureResult>;
/**
* A collection of arguments for invoking getFeature.
*/
export interface GetFeatureArgs {
location: string;
name: string;
project?: string;
}
/**
* A collection of values returned by getFeature.
*/
export interface GetFeatureResult {
readonly createTime: string;
readonly deleteTime: string;
readonly effectiveLabels: {
[key: string]: string;
};
readonly fleetDefaultMemberConfigs: outputs.gkehub.GetFeatureFleetDefaultMemberConfig[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly labels: {
[key: string]: string;
};
readonly location: string;
readonly name: string;
readonly project?: string;
readonly pulumiLabels: {
[key: string]: string;
};
readonly resourceStates: outputs.gkehub.GetFeatureResourceState[];
readonly specs: outputs.gkehub.GetFeatureSpec[];
readonly states: outputs.gkehub.GetFeatureState[];
readonly updateTime: string;
}
export declare function getFeatureOutput(args: GetFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFeatureResult>;
/**
* A collection of arguments for invoking getFeature.
*/
export interface GetFeatureOutputArgs {
location: pulumi.Input<string>;
name: pulumi.Input<string>;
project?: pulumi.Input<string>;
}