@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
144 lines (143 loc) • 3.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Retrieves a config item.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const example = scm.getAuthenticationRule({
* id: "1234-56-789",
* });
* ```
*/
export declare function getAuthenticationRule(args: GetAuthenticationRuleArgs, opts?: pulumi.InvokeOptions): Promise<GetAuthenticationRuleResult>;
/**
* A collection of arguments for invoking getAuthenticationRule.
*/
export interface GetAuthenticationRuleArgs {
/**
* The Id param.
*/
id: string;
}
/**
* A collection of values returned by getAuthenticationRule.
*/
export interface GetAuthenticationRuleResult {
/**
* the authentication profile name to apply to authentication rule.
*/
readonly authenticationEnforcement: string;
/**
* The Categories param.
*/
readonly categories: string[];
/**
* The Description param.
*/
readonly description: string;
/**
* The DestinationHips param.
*/
readonly destinationHips: string[];
/**
* The Destinations param.
*/
readonly destinations: string[];
/**
* The Disabled param. Default: `false`.
*/
readonly disabled: boolean;
/**
* The Froms param.
*/
readonly froms: string[];
/**
* The GroupTag param.
*/
readonly groupTag: string;
/**
* The HipProfiles param.
*/
readonly hipProfiles: string[];
/**
* The Id param.
*/
readonly id: string;
/**
* The LogAuthenticationTimeout param. Default: `false`.
*/
readonly logAuthenticationTimeout: boolean;
/**
* The LogSetting param.
*/
readonly logSetting: string;
/**
* The Name param.
*/
readonly name: string;
/**
* The NegateDestination param. Default: `false`.
*/
readonly negateDestination: boolean;
/**
* The NegateSource param. Default: `false`.
*/
readonly negateSource: boolean;
/**
* The Services param.
*/
readonly services: string[];
/**
* The SourceHips param.
*/
readonly sourceHips: string[];
/**
* The SourceUsers param.
*/
readonly sourceUsers: string[];
/**
* The Sources param.
*/
readonly sources: string[];
/**
* The Tags param.
*/
readonly tags: string[];
readonly tfid: string;
/**
* The Timeout param. Value must be between 1 and 1440.
*/
readonly timeout: number;
/**
* The Tos param.
*/
readonly tos: string[];
}
/**
* Retrieves a config item.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const example = scm.getAuthenticationRule({
* id: "1234-56-789",
* });
* ```
*/
export declare function getAuthenticationRuleOutput(args: GetAuthenticationRuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAuthenticationRuleResult>;
/**
* A collection of arguments for invoking getAuthenticationRule.
*/
export interface GetAuthenticationRuleOutputArgs {
/**
* The Id param.
*/
id: pulumi.Input<string>;
}