@pulumi/cloudngfwaws
Version:
A Pulumi package for creating and managing Cloud NGFW for AWS resources.
149 lines (148 loc) • 4.07 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource for Account manipulation.
*
* ## Admin Permission Type
*
* * `Rulestack` (for `scope="Local"`)
* * `Global Rulestack` (for `scope="Global"`)
*/
export declare class Account extends pulumi.CustomResource {
/**
* Get an existing Account 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?: AccountState, opts?: pulumi.CustomResourceOptions): Account;
/**
* Returns true if the given object is an instance of Account. 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 Account;
/**
* The account ID
*/
readonly accountId: pulumi.Output<string | undefined>;
/**
* The CFT URL.
*/
readonly cftUrl: pulumi.Output<string>;
/**
* The external ID of the account
*/
readonly externalId: pulumi.Output<string>;
/**
* The Account onboarding status
*/
readonly onboardingStatus: pulumi.Output<string>;
/**
* Origin of account onboarding
*/
readonly origin: pulumi.Output<string>;
/**
* The account ID of cloud NGFW service
*/
readonly serviceAccountId: pulumi.Output<string>;
/**
* The SNS topic ARN
*/
readonly snsTopicArn: pulumi.Output<string>;
/**
* The trusted account ID
*/
readonly trustedAccount: pulumi.Output<string>;
/**
* The update token.
*/
readonly updateToken: pulumi.Output<string>;
/**
* Create a Account 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?: AccountArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Account resources.
*/
export interface AccountState {
/**
* The account ID
*/
accountId?: pulumi.Input<string>;
/**
* The CFT URL.
*/
cftUrl?: pulumi.Input<string>;
/**
* The external ID of the account
*/
externalId?: pulumi.Input<string>;
/**
* The Account onboarding status
*/
onboardingStatus?: pulumi.Input<string>;
/**
* Origin of account onboarding
*/
origin?: pulumi.Input<string>;
/**
* The account ID of cloud NGFW service
*/
serviceAccountId?: pulumi.Input<string>;
/**
* The SNS topic ARN
*/
snsTopicArn?: pulumi.Input<string>;
/**
* The trusted account ID
*/
trustedAccount?: pulumi.Input<string>;
/**
* The update token.
*/
updateToken?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a Account resource.
*/
export interface AccountArgs {
/**
* The account ID
*/
accountId?: pulumi.Input<string>;
/**
* The CFT URL.
*/
cftUrl?: pulumi.Input<string>;
/**
* The external ID of the account
*/
externalId?: pulumi.Input<string>;
/**
* The Account onboarding status
*/
onboardingStatus?: pulumi.Input<string>;
/**
* Origin of account onboarding
*/
origin?: pulumi.Input<string>;
/**
* The account ID of cloud NGFW service
*/
serviceAccountId?: pulumi.Input<string>;
/**
* The SNS topic ARN
*/
snsTopicArn?: pulumi.Input<string>;
/**
* The trusted account ID
*/
trustedAccount?: pulumi.Input<string>;
}