@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
197 lines (196 loc) • 7.28 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* Retrieves a config item.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scm from "@pulumi/scm";
*
* const example = new scm.RemoteNetwork("example", {});
* ```
*/
export declare class RemoteNetwork extends pulumi.CustomResource {
/**
* Get an existing RemoteNetwork 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?: RemoteNetworkState, opts?: pulumi.CustomResourceOptions): RemoteNetwork;
/**
* Returns true if the given object is an instance of RemoteNetwork. 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 RemoteNetwork;
/**
* The EcmpLoadBalancing param. String must be one of these: `"enable"`, `"disable"`. Default: `"disable"`.
*/
readonly ecmpLoadBalancing: pulumi.Output<string>;
/**
* ecmp*tunnels is required when ecmp*load*balancing is enable.
*/
readonly ecmpTunnels: pulumi.Output<outputs.RemoteNetworkEcmpTunnel[] | undefined>;
/**
* (Internal use) Encrypted values returned from the API.
*/
readonly encryptedValues: pulumi.Output<{
[key: string]: string;
}>;
/**
* The Folder param. String can either be a specific string(`"Remote Networks"`) or match this regex: `^[\s0-9a-zA-Z._-]{1,}$`. Default: `"Remote Networks"`.
*/
readonly folder: pulumi.Output<string>;
/**
* ipsec*tunnel is required when ecmp*load_balancing is disable.
*/
readonly ipsecTunnel: pulumi.Output<string | undefined>;
/**
* New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: `"FWAAS-AGGREGATE"`.
*/
readonly licenseType: pulumi.Output<string>;
/**
* Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
*/
readonly name: pulumi.Output<string>;
/**
* setup the protocol when ecmp*load*balancing is disable.
*/
readonly protocol: pulumi.Output<outputs.RemoteNetworkProtocol | undefined>;
/**
* The Region param. String length must exceed 1 characters.
*/
readonly region: pulumi.Output<string>;
/**
* specify secondary ipsecTunnel if needed.
*/
readonly secondaryIpsecTunnel: pulumi.Output<string | undefined>;
/**
* spn-name is needed when licenseType is FWAAS-AGGREGATE.
*/
readonly spnName: pulumi.Output<string | undefined>;
/**
* The Subnets param.
*/
readonly subnets: pulumi.Output<string[] | undefined>;
readonly tfid: pulumi.Output<string>;
/**
* Create a RemoteNetwork 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: RemoteNetworkArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering RemoteNetwork resources.
*/
export interface RemoteNetworkState {
/**
* The EcmpLoadBalancing param. String must be one of these: `"enable"`, `"disable"`. Default: `"disable"`.
*/
ecmpLoadBalancing?: pulumi.Input<string>;
/**
* ecmp*tunnels is required when ecmp*load*balancing is enable.
*/
ecmpTunnels?: pulumi.Input<pulumi.Input<inputs.RemoteNetworkEcmpTunnel>[]>;
/**
* (Internal use) Encrypted values returned from the API.
*/
encryptedValues?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* The Folder param. String can either be a specific string(`"Remote Networks"`) or match this regex: `^[\s0-9a-zA-Z._-]{1,}$`. Default: `"Remote Networks"`.
*/
folder?: pulumi.Input<string>;
/**
* ipsec*tunnel is required when ecmp*load_balancing is disable.
*/
ipsecTunnel?: pulumi.Input<string>;
/**
* New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: `"FWAAS-AGGREGATE"`.
*/
licenseType?: pulumi.Input<string>;
/**
* Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
*/
name?: pulumi.Input<string>;
/**
* setup the protocol when ecmp*load*balancing is disable.
*/
protocol?: pulumi.Input<inputs.RemoteNetworkProtocol>;
/**
* The Region param. String length must exceed 1 characters.
*/
region?: pulumi.Input<string>;
/**
* specify secondary ipsecTunnel if needed.
*/
secondaryIpsecTunnel?: pulumi.Input<string>;
/**
* spn-name is needed when licenseType is FWAAS-AGGREGATE.
*/
spnName?: pulumi.Input<string>;
/**
* The Subnets param.
*/
subnets?: pulumi.Input<pulumi.Input<string>[]>;
tfid?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a RemoteNetwork resource.
*/
export interface RemoteNetworkArgs {
/**
* The EcmpLoadBalancing param. String must be one of these: `"enable"`, `"disable"`. Default: `"disable"`.
*/
ecmpLoadBalancing?: pulumi.Input<string>;
/**
* ecmp*tunnels is required when ecmp*load*balancing is enable.
*/
ecmpTunnels?: pulumi.Input<pulumi.Input<inputs.RemoteNetworkEcmpTunnel>[]>;
/**
* The Folder param. String can either be a specific string(`"Remote Networks"`) or match this regex: `^[\s0-9a-zA-Z._-]{1,}$`. Default: `"Remote Networks"`.
*/
folder?: pulumi.Input<string>;
/**
* ipsec*tunnel is required when ecmp*load_balancing is disable.
*/
ipsecTunnel?: pulumi.Input<string>;
/**
* New customer will only be on aggregate bandwidth licensing. String length must exceed 1 characters. Default: `"FWAAS-AGGREGATE"`.
*/
licenseType?: pulumi.Input<string>;
/**
* Alphanumeric string begin with letter: [0-9a-zA-Z._-]. String length must not exceed 63 characters.
*/
name?: pulumi.Input<string>;
/**
* setup the protocol when ecmp*load*balancing is disable.
*/
protocol?: pulumi.Input<inputs.RemoteNetworkProtocol>;
/**
* The Region param. String length must exceed 1 characters.
*/
region: pulumi.Input<string>;
/**
* specify secondary ipsecTunnel if needed.
*/
secondaryIpsecTunnel?: pulumi.Input<string>;
/**
* spn-name is needed when licenseType is FWAAS-AGGREGATE.
*/
spnName?: pulumi.Input<string>;
/**
* The Subnets param.
*/
subnets?: pulumi.Input<pulumi.Input<string>[]>;
}