@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
66 lines • 2.45 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get information about a Cloud Storage Control ProjectIntelligenceConfig.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const _default = gcp.storage.getControlProjectIntelligenceConfig({
* name: example.name,
* });
* ```
*/
export declare function getControlProjectIntelligenceConfig(args: GetControlProjectIntelligenceConfigArgs, opts?: pulumi.InvokeOptions): Promise<GetControlProjectIntelligenceConfigResult>;
/**
* A collection of arguments for invoking getControlProjectIntelligenceConfig.
*/
export interface GetControlProjectIntelligenceConfigArgs {
/**
* Identifier of the GCP project. For GCP project, this field can be project name or project number.
*/
name: string;
}
/**
* A collection of values returned by getControlProjectIntelligenceConfig.
*/
export interface GetControlProjectIntelligenceConfigResult {
readonly editionConfig: string;
readonly effectiveIntelligenceConfigs: outputs.storage.GetControlProjectIntelligenceConfigEffectiveIntelligenceConfig[];
readonly filters: outputs.storage.GetControlProjectIntelligenceConfigFilter[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly name: string;
readonly trialConfigs: outputs.storage.GetControlProjectIntelligenceConfigTrialConfig[];
readonly updateTime: string;
}
/**
* Get information about a Cloud Storage Control ProjectIntelligenceConfig.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const _default = gcp.storage.getControlProjectIntelligenceConfig({
* name: example.name,
* });
* ```
*/
export declare function getControlProjectIntelligenceConfigOutput(args: GetControlProjectIntelligenceConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetControlProjectIntelligenceConfigResult>;
/**
* A collection of arguments for invoking getControlProjectIntelligenceConfig.
*/
export interface GetControlProjectIntelligenceConfigOutputArgs {
/**
* Identifier of the GCP project. For GCP project, this field can be project name or project number.
*/
name: pulumi.Input<string>;
}
//# sourceMappingURL=getControlProjectIntelligenceConfig.d.ts.map