@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
197 lines (196 loc) • 6.61 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* SSH proxy settings.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as fortios from "@pulumiverse/fortios";
*
* const trname = new fortios.firewall.ssh.Setting("trname", {
* caname: "Fortinet_SSH_CA",
* hostTrustedChecking: "enable",
* hostkeyDsa1024: "Fortinet_SSH_DSA1024",
* hostkeyEcdsa256: "Fortinet_SSH_ECDSA256",
* hostkeyEcdsa384: "Fortinet_SSH_ECDSA384",
* hostkeyEcdsa521: "Fortinet_SSH_ECDSA521",
* hostkeyEd25519: "Fortinet_SSH_ED25519",
* hostkeyRsa2048: "Fortinet_SSH_RSA2048",
* untrustedCaname: "Fortinet_SSH_CA_Untrusted",
* });
* ```
*
* ## Import
*
* FirewallSsh Setting can be imported using any of these accepted formats:
*
* ```sh
* $ pulumi import fortios:firewall/ssh/setting:Setting labelname FirewallSshSetting
* ```
*
* If you do not want to import arguments of block:
*
* $ export "FORTIOS_IMPORT_TABLE"="false"
*
* ```sh
* $ pulumi import fortios:firewall/ssh/setting:Setting labelname FirewallSshSetting
* ```
*
* $ unset "FORTIOS_IMPORT_TABLE"
*/
export declare class Setting extends pulumi.CustomResource {
/**
* Get an existing Setting 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?: SettingState, opts?: pulumi.CustomResourceOptions): Setting;
/**
* Returns true if the given object is an instance of Setting. 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 Setting;
/**
* CA certificate used by SSH Inspection.
*/
readonly caname: pulumi.Output<string>;
/**
* Enable/disable host trusted checking. Valid values: `enable`, `disable`.
*/
readonly hostTrustedChecking: pulumi.Output<string>;
/**
* DSA certificate used by SSH proxy.
*/
readonly hostkeyDsa1024: pulumi.Output<string>;
/**
* ECDSA nid256 certificate used by SSH proxy.
*/
readonly hostkeyEcdsa256: pulumi.Output<string>;
/**
* ECDSA nid384 certificate used by SSH proxy.
*/
readonly hostkeyEcdsa384: pulumi.Output<string>;
/**
* ECDSA nid384 certificate used by SSH proxy.
*/
readonly hostkeyEcdsa521: pulumi.Output<string>;
/**
* ED25519 hostkey used by SSH proxy.
*/
readonly hostkeyEd25519: pulumi.Output<string>;
/**
* RSA certificate used by SSH proxy.
*/
readonly hostkeyRsa2048: pulumi.Output<string>;
/**
* Untrusted CA certificate used by SSH Inspection.
*/
readonly untrustedCaname: pulumi.Output<string>;
/**
* Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
readonly vdomparam: pulumi.Output<string>;
/**
* Create a Setting 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?: SettingArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Setting resources.
*/
export interface SettingState {
/**
* CA certificate used by SSH Inspection.
*/
caname?: pulumi.Input<string>;
/**
* Enable/disable host trusted checking. Valid values: `enable`, `disable`.
*/
hostTrustedChecking?: pulumi.Input<string>;
/**
* DSA certificate used by SSH proxy.
*/
hostkeyDsa1024?: pulumi.Input<string>;
/**
* ECDSA nid256 certificate used by SSH proxy.
*/
hostkeyEcdsa256?: pulumi.Input<string>;
/**
* ECDSA nid384 certificate used by SSH proxy.
*/
hostkeyEcdsa384?: pulumi.Input<string>;
/**
* ECDSA nid384 certificate used by SSH proxy.
*/
hostkeyEcdsa521?: pulumi.Input<string>;
/**
* ED25519 hostkey used by SSH proxy.
*/
hostkeyEd25519?: pulumi.Input<string>;
/**
* RSA certificate used by SSH proxy.
*/
hostkeyRsa2048?: pulumi.Input<string>;
/**
* Untrusted CA certificate used by SSH Inspection.
*/
untrustedCaname?: pulumi.Input<string>;
/**
* Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a Setting resource.
*/
export interface SettingArgs {
/**
* CA certificate used by SSH Inspection.
*/
caname?: pulumi.Input<string>;
/**
* Enable/disable host trusted checking. Valid values: `enable`, `disable`.
*/
hostTrustedChecking?: pulumi.Input<string>;
/**
* DSA certificate used by SSH proxy.
*/
hostkeyDsa1024?: pulumi.Input<string>;
/**
* ECDSA nid256 certificate used by SSH proxy.
*/
hostkeyEcdsa256?: pulumi.Input<string>;
/**
* ECDSA nid384 certificate used by SSH proxy.
*/
hostkeyEcdsa384?: pulumi.Input<string>;
/**
* ECDSA nid384 certificate used by SSH proxy.
*/
hostkeyEcdsa521?: pulumi.Input<string>;
/**
* ED25519 hostkey used by SSH proxy.
*/
hostkeyEd25519?: pulumi.Input<string>;
/**
* RSA certificate used by SSH proxy.
*/
hostkeyRsa2048?: pulumi.Input<string>;
/**
* Untrusted CA certificate used by SSH Inspection.
*/
untrustedCaname?: pulumi.Input<string>;
/**
* Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: pulumi.Input<string>;
}