@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
133 lines (132 loc) • 3.53 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Application data source
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* // Look up a single application object by its ID.
* // The ID used here is from the API response log you provided.
* const scmApplicationDs = scm.getApplication({
* id: "bb16f631-4839-475e-8628-70585319ca75",
* });
* export const applicationDsResult = scmApplicationDs;
* ```
*/
export declare function getApplication(args: GetApplicationArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResult>;
/**
* A collection of arguments for invoking getApplication.
*/
export interface GetApplicationArgs {
/**
* The UUID of the application
*/
id: string;
/**
* The name of the application
*/
name?: string;
}
/**
* A collection of values returned by getApplication.
*/
export interface GetApplicationResult {
/**
* Able to transfer file
*/
readonly ableToTransferFile: boolean;
/**
* Alg disable capability
*/
readonly algDisableCapability: string;
/**
* Category
*/
readonly category: string;
/**
* Consume big bandwidth
*/
readonly consumeBigBandwidth: boolean;
/**
* Data ident
*/
readonly dataIdent: boolean;
/**
* Default
*/
readonly default: outputs.GetApplicationDefault;
/**
* Description
*/
readonly description: string;
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly evasiveBehavior: boolean;
readonly fileTypeIdent: boolean;
readonly folder: string;
readonly hasKnownVulnerability: boolean;
/**
* The UUID of the application
*/
readonly id: string;
/**
* The name of the application
*/
readonly name: string;
readonly noAppidCaching: boolean;
readonly parentApp: string;
readonly pervasiveUse: boolean;
readonly proneToMisuse: boolean;
readonly risk: string;
readonly signatures: outputs.GetApplicationSignature[];
readonly snippet: string;
readonly subcategory: string;
readonly tcpHalfClosedTimeout: number;
readonly tcpTimeWaitTimeout: number;
readonly tcpTimeout: number;
readonly technology: string;
readonly tfid: string;
readonly timeout: number;
readonly tunnelApplications: boolean;
readonly tunnelOtherApplication: boolean;
readonly udpTimeout: number;
readonly usedByMalware: boolean;
readonly virusIdent: boolean;
}
/**
* Application data source
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* // Look up a single application object by its ID.
* // The ID used here is from the API response log you provided.
* const scmApplicationDs = scm.getApplication({
* id: "bb16f631-4839-475e-8628-70585319ca75",
* });
* export const applicationDsResult = scmApplicationDs;
* ```
*/
export declare function getApplicationOutput(args: GetApplicationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationResult>;
/**
* A collection of arguments for invoking getApplication.
*/
export interface GetApplicationOutputArgs {
/**
* The UUID of the application
*/
id: pulumi.Input<string>;
/**
* The name of the application
*/
name?: pulumi.Input<string>;
}