sdwan.SystemRemoteAccessProfileParcel
Explore with Pulumi AI
This resource can manage a System Remote Access profile parcel.
- Minimum SD-WAN Manager version:
20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.SystemRemoteAccessProfileParcel("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
connectionTypeSsl: false,
anyConnectEapAuthenticationType: "user",
anyConnectEapProfileDownloadStatus: "INITIALIZED",
anyConnectEapProfileFileName: "<form-data>",
ipv4PoolSize: 50,
ipv6PoolSize: 1024,
enableCrlCheck: false,
pskAuthenticationType: "aaa",
pskAuthenticationPreSharedKey: "Cisco123",
radiusGroupName: "radius-1",
aaaDeriveNameIdentity: "MyPassword",
aaaEnableAccounting: false,
ikev2LocalIkeIdentityType: "EMAIL",
ikev2LocalIkeIdentityValue: "abc@xyz.com",
ikev2SecurityAssociationLifetime: 86400,
ikev2AntiDosThreshold: 99,
ipsecEnableAntiReplay: false,
ipsecAntiReplayWindowSize: 64,
ipsecSecurityAssociationLifetime: 3600,
ipsecEnablePerfectFowardSecrecy: false,
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.SystemRemoteAccessProfileParcel("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
connection_type_ssl=False,
any_connect_eap_authentication_type="user",
any_connect_eap_profile_download_status="INITIALIZED",
any_connect_eap_profile_file_name="<form-data>",
ipv4_pool_size=50,
ipv6_pool_size=1024,
enable_crl_check=False,
psk_authentication_type="aaa",
psk_authentication_pre_shared_key="Cisco123",
radius_group_name="radius-1",
aaa_derive_name_identity="MyPassword",
aaa_enable_accounting=False,
ikev2_local_ike_identity_type="EMAIL",
ikev2_local_ike_identity_value="abc@xyz.com",
ikev2_security_association_lifetime=86400,
ikev2_anti_dos_threshold=99,
ipsec_enable_anti_replay=False,
ipsec_anti_replay_window_size=64,
ipsec_security_association_lifetime=3600,
ipsec_enable_perfect_foward_secrecy=False)
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewSystemRemoteAccessProfileParcel(ctx, "example", &sdwan.SystemRemoteAccessProfileParcelArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
ConnectionTypeSsl: pulumi.Bool(false),
AnyConnectEapAuthenticationType: pulumi.String("user"),
AnyConnectEapProfileDownloadStatus: pulumi.String("INITIALIZED"),
AnyConnectEapProfileFileName: pulumi.String("<form-data>"),
Ipv4PoolSize: pulumi.Int(50),
Ipv6PoolSize: pulumi.Int(1024),
EnableCrlCheck: pulumi.Bool(false),
PskAuthenticationType: pulumi.String("aaa"),
PskAuthenticationPreSharedKey: pulumi.String("Cisco123"),
RadiusGroupName: pulumi.String("radius-1"),
AaaDeriveNameIdentity: pulumi.String("MyPassword"),
AaaEnableAccounting: pulumi.Bool(false),
Ikev2LocalIkeIdentityType: pulumi.String("EMAIL"),
Ikev2LocalIkeIdentityValue: pulumi.String("abc@xyz.com"),
Ikev2SecurityAssociationLifetime: pulumi.Int(86400),
Ikev2AntiDosThreshold: pulumi.Int(99),
IpsecEnableAntiReplay: pulumi.Bool(false),
IpsecAntiReplayWindowSize: pulumi.Int(64),
IpsecSecurityAssociationLifetime: pulumi.Int(3600),
IpsecEnablePerfectFowardSecrecy: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.SystemRemoteAccessProfileParcel("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ConnectionTypeSsl = false,
AnyConnectEapAuthenticationType = "user",
AnyConnectEapProfileDownloadStatus = "INITIALIZED",
AnyConnectEapProfileFileName = "<form-data>",
Ipv4PoolSize = 50,
Ipv6PoolSize = 1024,
EnableCrlCheck = false,
PskAuthenticationType = "aaa",
PskAuthenticationPreSharedKey = "Cisco123",
RadiusGroupName = "radius-1",
AaaDeriveNameIdentity = "MyPassword",
AaaEnableAccounting = false,
Ikev2LocalIkeIdentityType = "EMAIL",
Ikev2LocalIkeIdentityValue = "abc@xyz.com",
Ikev2SecurityAssociationLifetime = 86400,
Ikev2AntiDosThreshold = 99,
IpsecEnableAntiReplay = false,
IpsecAntiReplayWindowSize = 64,
IpsecSecurityAssociationLifetime = 3600,
IpsecEnablePerfectFowardSecrecy = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SystemRemoteAccessProfileParcel;
import com.pulumi.sdwan.SystemRemoteAccessProfileParcelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new SystemRemoteAccessProfileParcel("example", SystemRemoteAccessProfileParcelArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.connectionTypeSsl(false)
.anyConnectEapAuthenticationType("user")
.anyConnectEapProfileDownloadStatus("INITIALIZED")
.anyConnectEapProfileFileName("<form-data>")
.ipv4PoolSize(50)
.ipv6PoolSize(1024)
.enableCrlCheck(false)
.pskAuthenticationType("aaa")
.pskAuthenticationPreSharedKey("Cisco123")
.radiusGroupName("radius-1")
.aaaDeriveNameIdentity("MyPassword")
.aaaEnableAccounting(false)
.ikev2LocalIkeIdentityType("EMAIL")
.ikev2LocalIkeIdentityValue("abc@xyz.com")
.ikev2SecurityAssociationLifetime(86400)
.ikev2AntiDosThreshold(99)
.ipsecEnableAntiReplay(false)
.ipsecAntiReplayWindowSize(64)
.ipsecSecurityAssociationLifetime(3600)
.ipsecEnablePerfectFowardSecrecy(false)
.build());
}
}
resources:
example:
type: sdwan:SystemRemoteAccessProfileParcel
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
connectionTypeSsl: false
anyConnectEapAuthenticationType: user
anyConnectEapProfileDownloadStatus: INITIALIZED
anyConnectEapProfileFileName: <form-data>
ipv4PoolSize: 50
ipv6PoolSize: 1024
enableCrlCheck: false
pskAuthenticationType: aaa
pskAuthenticationPreSharedKey: Cisco123
radiusGroupName: radius-1
aaaDeriveNameIdentity: MyPassword
aaaEnableAccounting: false
ikev2LocalIkeIdentityType: EMAIL
ikev2LocalIkeIdentityValue: abc@xyz.com
ikev2SecurityAssociationLifetime: 86400
ikev2AntiDosThreshold: 99
ipsecEnableAntiReplay: false
ipsecAntiReplayWindowSize: 64
ipsecSecurityAssociationLifetime: 3600
ipsecEnablePerfectFowardSecrecy: false
Create SystemRemoteAccessProfileParcel Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemRemoteAccessProfileParcel(name: string, args: SystemRemoteAccessProfileParcelArgs, opts?: CustomResourceOptions);
@overload
def SystemRemoteAccessProfileParcel(resource_name: str,
args: SystemRemoteAccessProfileParcelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SystemRemoteAccessProfileParcel(resource_name: str,
opts: Optional[ResourceOptions] = None,
any_connect_eap_authentication_type: Optional[str] = None,
radius_group_name: Optional[str] = None,
ikev2_local_ike_identity_type: Optional[str] = None,
aaa_derive_name_domain_variable: Optional[str] = None,
aaa_enable_accounting: Optional[bool] = None,
ikev2_local_ike_identity_value: Optional[str] = None,
aaa_specify_name_policy_name: Optional[str] = None,
aaa_specify_name_policy_name_variable: Optional[str] = None,
aaa_specify_name_policy_password: Optional[str] = None,
aaa_specify_name_policy_password_variable: Optional[str] = None,
aaa_derive_name_identity: Optional[str] = None,
any_connect_eap_profile_download_status: Optional[str] = None,
any_connect_eap_profile_download_status_variable: Optional[str] = None,
any_connect_eap_profile_file_name: Optional[str] = None,
any_connect_eap_profile_file_name_variable: Optional[str] = None,
connection_type_ssl: Optional[bool] = None,
description: Optional[str] = None,
enable_crl_check: Optional[bool] = None,
enable_crl_check_variable: Optional[str] = None,
ikev2_security_association_lifetime: Optional[int] = None,
ikev2_anti_dos_threshold: Optional[int] = None,
ikev2_anti_dos_threshold_variable: Optional[str] = None,
aaa_derive_name_domain: Optional[str] = None,
ikev2_local_ike_identity_type_variable: Optional[str] = None,
aaa_enable_accounting_variable: Optional[str] = None,
aaa_derive_name_identity_variable: Optional[str] = None,
feature_profile_id: Optional[str] = None,
ikev2_security_association_lifetime_variable: Optional[str] = None,
ipsec_anti_replay_window_size: Optional[int] = None,
ipsec_anti_replay_window_size_variable: Optional[str] = None,
ipsec_enable_anti_replay: Optional[bool] = None,
ipsec_enable_anti_replay_variable: Optional[str] = None,
ipsec_enable_perfect_foward_secrecy: Optional[bool] = None,
ipsec_enable_perfect_foward_secrecy_variable: Optional[str] = None,
ipsec_security_association_lifetime: Optional[int] = None,
ipsec_security_association_lifetime_variable: Optional[str] = None,
ipv4_pool_size: Optional[int] = None,
ipv4_pool_size_variable: Optional[str] = None,
ipv6_pool_size: Optional[int] = None,
ipv6_pool_size_variable: Optional[str] = None,
name: Optional[str] = None,
psk_authentication_pre_shared_key: Optional[str] = None,
psk_authentication_pre_shared_key_variable: Optional[str] = None,
psk_authentication_type: Optional[str] = None,
psk_authentication_type_variable: Optional[str] = None,
ikev2_local_ike_identity_value_variable: Optional[str] = None,
radius_group_name_variable: Optional[str] = None)
func NewSystemRemoteAccessProfileParcel(ctx *Context, name string, args SystemRemoteAccessProfileParcelArgs, opts ...ResourceOption) (*SystemRemoteAccessProfileParcel, error)
public SystemRemoteAccessProfileParcel(string name, SystemRemoteAccessProfileParcelArgs args, CustomResourceOptions? opts = null)
public SystemRemoteAccessProfileParcel(String name, SystemRemoteAccessProfileParcelArgs args)
public SystemRemoteAccessProfileParcel(String name, SystemRemoteAccessProfileParcelArgs args, CustomResourceOptions options)
type: sdwan:SystemRemoteAccessProfileParcel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SystemRemoteAccessProfileParcelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SystemRemoteAccessProfileParcelArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SystemRemoteAccessProfileParcelArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemRemoteAccessProfileParcelArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemRemoteAccessProfileParcelArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var systemRemoteAccessProfileParcelResource = new Sdwan.SystemRemoteAccessProfileParcel("systemRemoteAccessProfileParcelResource", new()
{
AnyConnectEapAuthenticationType = "string",
RadiusGroupName = "string",
Ikev2LocalIkeIdentityType = "string",
AaaDeriveNameDomainVariable = "string",
AaaEnableAccounting = false,
Ikev2LocalIkeIdentityValue = "string",
AaaSpecifyNamePolicyName = "string",
AaaSpecifyNamePolicyNameVariable = "string",
AaaSpecifyNamePolicyPassword = "string",
AaaSpecifyNamePolicyPasswordVariable = "string",
AaaDeriveNameIdentity = "string",
AnyConnectEapProfileDownloadStatus = "string",
AnyConnectEapProfileDownloadStatusVariable = "string",
AnyConnectEapProfileFileName = "string",
AnyConnectEapProfileFileNameVariable = "string",
ConnectionTypeSsl = false,
Description = "string",
EnableCrlCheck = false,
EnableCrlCheckVariable = "string",
Ikev2SecurityAssociationLifetime = 0,
Ikev2AntiDosThreshold = 0,
Ikev2AntiDosThresholdVariable = "string",
AaaDeriveNameDomain = "string",
Ikev2LocalIkeIdentityTypeVariable = "string",
AaaEnableAccountingVariable = "string",
AaaDeriveNameIdentityVariable = "string",
FeatureProfileId = "string",
Ikev2SecurityAssociationLifetimeVariable = "string",
IpsecAntiReplayWindowSize = 0,
IpsecAntiReplayWindowSizeVariable = "string",
IpsecEnableAntiReplay = false,
IpsecEnableAntiReplayVariable = "string",
IpsecEnablePerfectFowardSecrecy = false,
IpsecEnablePerfectFowardSecrecyVariable = "string",
IpsecSecurityAssociationLifetime = 0,
IpsecSecurityAssociationLifetimeVariable = "string",
Ipv4PoolSize = 0,
Ipv4PoolSizeVariable = "string",
Ipv6PoolSize = 0,
Ipv6PoolSizeVariable = "string",
Name = "string",
PskAuthenticationPreSharedKey = "string",
PskAuthenticationPreSharedKeyVariable = "string",
PskAuthenticationType = "string",
PskAuthenticationTypeVariable = "string",
Ikev2LocalIkeIdentityValueVariable = "string",
RadiusGroupNameVariable = "string",
});
example, err := sdwan.NewSystemRemoteAccessProfileParcel(ctx, "systemRemoteAccessProfileParcelResource", &sdwan.SystemRemoteAccessProfileParcelArgs{
AnyConnectEapAuthenticationType: pulumi.String("string"),
RadiusGroupName: pulumi.String("string"),
Ikev2LocalIkeIdentityType: pulumi.String("string"),
AaaDeriveNameDomainVariable: pulumi.String("string"),
AaaEnableAccounting: pulumi.Bool(false),
Ikev2LocalIkeIdentityValue: pulumi.String("string"),
AaaSpecifyNamePolicyName: pulumi.String("string"),
AaaSpecifyNamePolicyNameVariable: pulumi.String("string"),
AaaSpecifyNamePolicyPassword: pulumi.String("string"),
AaaSpecifyNamePolicyPasswordVariable: pulumi.String("string"),
AaaDeriveNameIdentity: pulumi.String("string"),
AnyConnectEapProfileDownloadStatus: pulumi.String("string"),
AnyConnectEapProfileDownloadStatusVariable: pulumi.String("string"),
AnyConnectEapProfileFileName: pulumi.String("string"),
AnyConnectEapProfileFileNameVariable: pulumi.String("string"),
ConnectionTypeSsl: pulumi.Bool(false),
Description: pulumi.String("string"),
EnableCrlCheck: pulumi.Bool(false),
EnableCrlCheckVariable: pulumi.String("string"),
Ikev2SecurityAssociationLifetime: pulumi.Int(0),
Ikev2AntiDosThreshold: pulumi.Int(0),
Ikev2AntiDosThresholdVariable: pulumi.String("string"),
AaaDeriveNameDomain: pulumi.String("string"),
Ikev2LocalIkeIdentityTypeVariable: pulumi.String("string"),
AaaEnableAccountingVariable: pulumi.String("string"),
AaaDeriveNameIdentityVariable: pulumi.String("string"),
FeatureProfileId: pulumi.String("string"),
Ikev2SecurityAssociationLifetimeVariable: pulumi.String("string"),
IpsecAntiReplayWindowSize: pulumi.Int(0),
IpsecAntiReplayWindowSizeVariable: pulumi.String("string"),
IpsecEnableAntiReplay: pulumi.Bool(false),
IpsecEnableAntiReplayVariable: pulumi.String("string"),
IpsecEnablePerfectFowardSecrecy: pulumi.Bool(false),
IpsecEnablePerfectFowardSecrecyVariable: pulumi.String("string"),
IpsecSecurityAssociationLifetime: pulumi.Int(0),
IpsecSecurityAssociationLifetimeVariable: pulumi.String("string"),
Ipv4PoolSize: pulumi.Int(0),
Ipv4PoolSizeVariable: pulumi.String("string"),
Ipv6PoolSize: pulumi.Int(0),
Ipv6PoolSizeVariable: pulumi.String("string"),
Name: pulumi.String("string"),
PskAuthenticationPreSharedKey: pulumi.String("string"),
PskAuthenticationPreSharedKeyVariable: pulumi.String("string"),
PskAuthenticationType: pulumi.String("string"),
PskAuthenticationTypeVariable: pulumi.String("string"),
Ikev2LocalIkeIdentityValueVariable: pulumi.String("string"),
RadiusGroupNameVariable: pulumi.String("string"),
})
var systemRemoteAccessProfileParcelResource = new SystemRemoteAccessProfileParcel("systemRemoteAccessProfileParcelResource", SystemRemoteAccessProfileParcelArgs.builder()
.anyConnectEapAuthenticationType("string")
.radiusGroupName("string")
.ikev2LocalIkeIdentityType("string")
.aaaDeriveNameDomainVariable("string")
.aaaEnableAccounting(false)
.ikev2LocalIkeIdentityValue("string")
.aaaSpecifyNamePolicyName("string")
.aaaSpecifyNamePolicyNameVariable("string")
.aaaSpecifyNamePolicyPassword("string")
.aaaSpecifyNamePolicyPasswordVariable("string")
.aaaDeriveNameIdentity("string")
.anyConnectEapProfileDownloadStatus("string")
.anyConnectEapProfileDownloadStatusVariable("string")
.anyConnectEapProfileFileName("string")
.anyConnectEapProfileFileNameVariable("string")
.connectionTypeSsl(false)
.description("string")
.enableCrlCheck(false)
.enableCrlCheckVariable("string")
.ikev2SecurityAssociationLifetime(0)
.ikev2AntiDosThreshold(0)
.ikev2AntiDosThresholdVariable("string")
.aaaDeriveNameDomain("string")
.ikev2LocalIkeIdentityTypeVariable("string")
.aaaEnableAccountingVariable("string")
.aaaDeriveNameIdentityVariable("string")
.featureProfileId("string")
.ikev2SecurityAssociationLifetimeVariable("string")
.ipsecAntiReplayWindowSize(0)
.ipsecAntiReplayWindowSizeVariable("string")
.ipsecEnableAntiReplay(false)
.ipsecEnableAntiReplayVariable("string")
.ipsecEnablePerfectFowardSecrecy(false)
.ipsecEnablePerfectFowardSecrecyVariable("string")
.ipsecSecurityAssociationLifetime(0)
.ipsecSecurityAssociationLifetimeVariable("string")
.ipv4PoolSize(0)
.ipv4PoolSizeVariable("string")
.ipv6PoolSize(0)
.ipv6PoolSizeVariable("string")
.name("string")
.pskAuthenticationPreSharedKey("string")
.pskAuthenticationPreSharedKeyVariable("string")
.pskAuthenticationType("string")
.pskAuthenticationTypeVariable("string")
.ikev2LocalIkeIdentityValueVariable("string")
.radiusGroupNameVariable("string")
.build());
system_remote_access_profile_parcel_resource = sdwan.SystemRemoteAccessProfileParcel("systemRemoteAccessProfileParcelResource",
any_connect_eap_authentication_type="string",
radius_group_name="string",
ikev2_local_ike_identity_type="string",
aaa_derive_name_domain_variable="string",
aaa_enable_accounting=False,
ikev2_local_ike_identity_value="string",
aaa_specify_name_policy_name="string",
aaa_specify_name_policy_name_variable="string",
aaa_specify_name_policy_password="string",
aaa_specify_name_policy_password_variable="string",
aaa_derive_name_identity="string",
any_connect_eap_profile_download_status="string",
any_connect_eap_profile_download_status_variable="string",
any_connect_eap_profile_file_name="string",
any_connect_eap_profile_file_name_variable="string",
connection_type_ssl=False,
description="string",
enable_crl_check=False,
enable_crl_check_variable="string",
ikev2_security_association_lifetime=0,
ikev2_anti_dos_threshold=0,
ikev2_anti_dos_threshold_variable="string",
aaa_derive_name_domain="string",
ikev2_local_ike_identity_type_variable="string",
aaa_enable_accounting_variable="string",
aaa_derive_name_identity_variable="string",
feature_profile_id="string",
ikev2_security_association_lifetime_variable="string",
ipsec_anti_replay_window_size=0,
ipsec_anti_replay_window_size_variable="string",
ipsec_enable_anti_replay=False,
ipsec_enable_anti_replay_variable="string",
ipsec_enable_perfect_foward_secrecy=False,
ipsec_enable_perfect_foward_secrecy_variable="string",
ipsec_security_association_lifetime=0,
ipsec_security_association_lifetime_variable="string",
ipv4_pool_size=0,
ipv4_pool_size_variable="string",
ipv6_pool_size=0,
ipv6_pool_size_variable="string",
name="string",
psk_authentication_pre_shared_key="string",
psk_authentication_pre_shared_key_variable="string",
psk_authentication_type="string",
psk_authentication_type_variable="string",
ikev2_local_ike_identity_value_variable="string",
radius_group_name_variable="string")
const systemRemoteAccessProfileParcelResource = new sdwan.SystemRemoteAccessProfileParcel("systemRemoteAccessProfileParcelResource", {
anyConnectEapAuthenticationType: "string",
radiusGroupName: "string",
ikev2LocalIkeIdentityType: "string",
aaaDeriveNameDomainVariable: "string",
aaaEnableAccounting: false,
ikev2LocalIkeIdentityValue: "string",
aaaSpecifyNamePolicyName: "string",
aaaSpecifyNamePolicyNameVariable: "string",
aaaSpecifyNamePolicyPassword: "string",
aaaSpecifyNamePolicyPasswordVariable: "string",
aaaDeriveNameIdentity: "string",
anyConnectEapProfileDownloadStatus: "string",
anyConnectEapProfileDownloadStatusVariable: "string",
anyConnectEapProfileFileName: "string",
anyConnectEapProfileFileNameVariable: "string",
connectionTypeSsl: false,
description: "string",
enableCrlCheck: false,
enableCrlCheckVariable: "string",
ikev2SecurityAssociationLifetime: 0,
ikev2AntiDosThreshold: 0,
ikev2AntiDosThresholdVariable: "string",
aaaDeriveNameDomain: "string",
ikev2LocalIkeIdentityTypeVariable: "string",
aaaEnableAccountingVariable: "string",
aaaDeriveNameIdentityVariable: "string",
featureProfileId: "string",
ikev2SecurityAssociationLifetimeVariable: "string",
ipsecAntiReplayWindowSize: 0,
ipsecAntiReplayWindowSizeVariable: "string",
ipsecEnableAntiReplay: false,
ipsecEnableAntiReplayVariable: "string",
ipsecEnablePerfectFowardSecrecy: false,
ipsecEnablePerfectFowardSecrecyVariable: "string",
ipsecSecurityAssociationLifetime: 0,
ipsecSecurityAssociationLifetimeVariable: "string",
ipv4PoolSize: 0,
ipv4PoolSizeVariable: "string",
ipv6PoolSize: 0,
ipv6PoolSizeVariable: "string",
name: "string",
pskAuthenticationPreSharedKey: "string",
pskAuthenticationPreSharedKeyVariable: "string",
pskAuthenticationType: "string",
pskAuthenticationTypeVariable: "string",
ikev2LocalIkeIdentityValueVariable: "string",
radiusGroupNameVariable: "string",
});
type: sdwan:SystemRemoteAccessProfileParcel
properties:
aaaDeriveNameDomain: string
aaaDeriveNameDomainVariable: string
aaaDeriveNameIdentity: string
aaaDeriveNameIdentityVariable: string
aaaEnableAccounting: false
aaaEnableAccountingVariable: string
aaaSpecifyNamePolicyName: string
aaaSpecifyNamePolicyNameVariable: string
aaaSpecifyNamePolicyPassword: string
aaaSpecifyNamePolicyPasswordVariable: string
anyConnectEapAuthenticationType: string
anyConnectEapProfileDownloadStatus: string
anyConnectEapProfileDownloadStatusVariable: string
anyConnectEapProfileFileName: string
anyConnectEapProfileFileNameVariable: string
connectionTypeSsl: false
description: string
enableCrlCheck: false
enableCrlCheckVariable: string
featureProfileId: string
ikev2AntiDosThreshold: 0
ikev2AntiDosThresholdVariable: string
ikev2LocalIkeIdentityType: string
ikev2LocalIkeIdentityTypeVariable: string
ikev2LocalIkeIdentityValue: string
ikev2LocalIkeIdentityValueVariable: string
ikev2SecurityAssociationLifetime: 0
ikev2SecurityAssociationLifetimeVariable: string
ipsecAntiReplayWindowSize: 0
ipsecAntiReplayWindowSizeVariable: string
ipsecEnableAntiReplay: false
ipsecEnableAntiReplayVariable: string
ipsecEnablePerfectFowardSecrecy: false
ipsecEnablePerfectFowardSecrecyVariable: string
ipsecSecurityAssociationLifetime: 0
ipsecSecurityAssociationLifetimeVariable: string
ipv4PoolSize: 0
ipv4PoolSizeVariable: string
ipv6PoolSize: 0
ipv6PoolSizeVariable: string
name: string
pskAuthenticationPreSharedKey: string
pskAuthenticationPreSharedKeyVariable: string
pskAuthenticationType: string
pskAuthenticationTypeVariable: string
radiusGroupName: string
radiusGroupNameVariable: string
SystemRemoteAccessProfileParcel Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SystemRemoteAccessProfileParcel resource accepts the following input properties:
- Any
Connect stringEap Authentication Type - Choices:
user
,device
- Choices:
- Radius
Group stringName - Aaa
Derive stringName Domain - Aaa
Derive stringName Domain Variable - Variable name
- Aaa
Derive stringName Identity - Aaa
Derive stringName Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Any
Connect stringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- Any
Connect stringEap Profile Download Status Variable - Variable name
- Any
Connect stringEap Profile File Name - Any
Connect stringEap Profile File Name Variable - Variable name
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the profile parcel
- Enable
Crl boolCheck - Default value:
false
- Default value:
- Enable
Crl stringCheck Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime - Default value:
64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay - Default value:
true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the profile parcel
- string
- PSK Pre Shared Key
- string
- Variable name
- Psk
Authentication stringType - PSK Selection - Choices:
aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName Variable - Variable name
- Any
Connect stringEap Authentication Type - Choices:
user
,device
- Choices:
- Radius
Group stringName - Aaa
Derive stringName Domain - Aaa
Derive stringName Domain Variable - Variable name
- Aaa
Derive stringName Identity - Aaa
Derive stringName Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Any
Connect stringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- Any
Connect stringEap Profile Download Status Variable - Variable name
- Any
Connect stringEap Profile File Name - Any
Connect stringEap Profile File Name Variable - Variable name
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the profile parcel
- Enable
Crl boolCheck - Default value:
false
- Default value:
- Enable
Crl stringCheck Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime - Default value:
64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay - Default value:
true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the profile parcel
- string
- PSK Pre Shared Key
- string
- Variable name
- Psk
Authentication stringType - PSK Selection - Choices:
aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName Variable - Variable name
- any
Connect StringEap Authentication Type - Choices:
user
,device
- Choices:
- radius
Group StringName - aaa
Derive StringName Domain - aaa
Derive StringName Domain Variable - Variable name
- aaa
Derive StringName Identity - aaa
Derive StringName Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- any
Connect StringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any
Connect StringEap Profile Download Status Variable - Variable name
- any
Connect StringEap Profile File Name - any
Connect StringEap Profile File Name Variable - Variable name
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the profile parcel
- enable
Crl BooleanCheck - Default value:
false
- Default value:
- enable
Crl StringCheck Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos IntegerThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association IntegerLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti IntegerReplay Window Size - security Association Lifetime - Default value:
64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay - Default value:
true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security IntegerAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Integer - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Integer - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the profile parcel
- String
- PSK Pre Shared Key
- String
- Variable name
- psk
Authentication StringType - PSK Selection - Choices:
aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group StringName Variable - Variable name
- any
Connect stringEap Authentication Type - Choices:
user
,device
- Choices:
- radius
Group stringName - aaa
Derive stringName Domain - aaa
Derive stringName Domain Variable - Variable name
- aaa
Derive stringName Identity - aaa
Derive stringName Identity Variable - Variable name
- aaa
Enable booleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable stringAccounting Variable - Variable name
- aaa
Specify stringName Policy Name - aaa
Specify stringName Policy Name Variable - Variable name
- aaa
Specify stringName Policy Password - aaa
Specify stringName Policy Password Variable - Variable name
- any
Connect stringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any
Connect stringEap Profile Download Status Variable - Variable name
- any
Connect stringEap Profile File Name - any
Connect stringEap Profile File Name Variable - Variable name
- connection
Type booleanSsl - Enabled SSL VPN - Default value:
false
- description string
- The description of the profile parcel
- enable
Crl booleanCheck - Default value:
false
- Default value:
- enable
Crl stringCheck Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- ikev2Anti
Dos numberThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2Anti
Dos stringThreshold Variable - Variable name
- ikev2Local
Ike stringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2Local
Ike stringIdentity Type Variable - Variable name
- ikev2Local
Ike stringIdentity Value - ikev2Local
Ike stringIdentity Value Variable - Variable name
- ikev2Security
Association numberLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2Security
Association stringLifetime Variable - Variable name
- ipsec
Anti numberReplay Window Size - security Association Lifetime - Default value:
64
- ipsec
Anti stringReplay Window Size Variable - Variable name
- ipsec
Enable booleanAnti Replay - Enable Anti-Replay - Default value:
true
- ipsec
Enable stringAnti Replay Variable - Variable name
- ipsec
Enable booleanPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security numberAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec
Security stringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size stringVariable - Variable name
- ipv6Pool
Size number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size stringVariable - Variable name
- name string
- The name of the profile parcel
- string
- PSK Pre Shared Key
- string
- Variable name
- psk
Authentication stringType - PSK Selection - Choices:
aaa
,group
- psk
Authentication stringType Variable - Variable name
- radius
Group stringName Variable - Variable name
- any_
connect_ streap_ authentication_ type - Choices:
user
,device
- Choices:
- radius_
group_ strname - aaa_
derive_ strname_ domain - aaa_
derive_ strname_ domain_ variable - Variable name
- aaa_
derive_ strname_ identity - aaa_
derive_ strname_ identity_ variable - Variable name
- aaa_
enable_ boolaccounting - Enable Accounting - Default value:
true
- aaa_
enable_ straccounting_ variable - Variable name
- aaa_
specify_ strname_ policy_ name - aaa_
specify_ strname_ policy_ name_ variable - Variable name
- aaa_
specify_ strname_ policy_ password - aaa_
specify_ strname_ policy_ password_ variable - Variable name
- any_
connect_ streap_ profile_ download_ status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any_
connect_ streap_ profile_ download_ status_ variable - Variable name
- any_
connect_ streap_ profile_ file_ name - any_
connect_ streap_ profile_ file_ name_ variable - Variable name
- connection_
type_ boolssl - Enabled SSL VPN - Default value:
false
- description str
- The description of the profile parcel
- enable_
crl_ boolcheck - Default value:
false
- Default value:
- enable_
crl_ strcheck_ variable - Variable name
- feature_
profile_ strid - Feature Profile ID
- ikev2_
anti_ intdos_ threshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2_
anti_ strdos_ threshold_ variable - Variable name
- ikev2_
local_ strike_ identity_ type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2_
local_ strike_ identity_ type_ variable - Variable name
- ikev2_
local_ strike_ identity_ value - ikev2_
local_ strike_ identity_ value_ variable - Variable name
- ikev2_
security_ intassociation_ lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2_
security_ strassociation_ lifetime_ variable - Variable name
- ipsec_
anti_ intreplay_ window_ size - security Association Lifetime - Default value:
64
- ipsec_
anti_ strreplay_ window_ size_ variable - Variable name
- ipsec_
enable_ boolanti_ replay - Enable Anti-Replay - Default value:
true
- ipsec_
enable_ stranti_ replay_ variable - Variable name
- ipsec_
enable_ boolperfect_ foward_ secrecy - security Association Lifetime - Default value:
false
- ipsec_
enable_ strperfect_ foward_ secrecy_ variable - Variable name
- ipsec_
security_ intassociation_ lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec_
security_ strassociation_ lifetime_ variable - Variable name
- ipv4_
pool_ intsize - IPv4 Pool Size - Default value:
1000
- ipv4_
pool_ strsize_ variable - Variable name
- ipv6_
pool_ intsize - IPv6 Pool Size - Default value:
1024
- ipv6_
pool_ strsize_ variable - Variable name
- name str
- The name of the profile parcel
- str
- PSK Pre Shared Key
- str
- Variable name
- psk_
authentication_ strtype - PSK Selection - Choices:
aaa
,group
- psk_
authentication_ strtype_ variable - Variable name
- radius_
group_ strname_ variable - Variable name
- any
Connect StringEap Authentication Type - Choices:
user
,device
- Choices:
- radius
Group StringName - aaa
Derive StringName Domain - aaa
Derive StringName Domain Variable - Variable name
- aaa
Derive StringName Identity - aaa
Derive StringName Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- any
Connect StringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any
Connect StringEap Profile Download Status Variable - Variable name
- any
Connect StringEap Profile File Name - any
Connect StringEap Profile File Name Variable - Variable name
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the profile parcel
- enable
Crl BooleanCheck - Default value:
false
- Default value:
- enable
Crl StringCheck Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos NumberThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association NumberLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti NumberReplay Window Size - security Association Lifetime - Default value:
64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay - Default value:
true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security NumberAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the profile parcel
- String
- PSK Pre Shared Key
- String
- Variable name
- psk
Authentication StringType - PSK Selection - Choices:
aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group StringName Variable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemRemoteAccessProfileParcel resource produces the following output properties:
Look up Existing SystemRemoteAccessProfileParcel Resource
Get an existing SystemRemoteAccessProfileParcel resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SystemRemoteAccessProfileParcelState, opts?: CustomResourceOptions): SystemRemoteAccessProfileParcel
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aaa_derive_name_domain: Optional[str] = None,
aaa_derive_name_domain_variable: Optional[str] = None,
aaa_derive_name_identity: Optional[str] = None,
aaa_derive_name_identity_variable: Optional[str] = None,
aaa_enable_accounting: Optional[bool] = None,
aaa_enable_accounting_variable: Optional[str] = None,
aaa_specify_name_policy_name: Optional[str] = None,
aaa_specify_name_policy_name_variable: Optional[str] = None,
aaa_specify_name_policy_password: Optional[str] = None,
aaa_specify_name_policy_password_variable: Optional[str] = None,
any_connect_eap_authentication_type: Optional[str] = None,
any_connect_eap_profile_download_status: Optional[str] = None,
any_connect_eap_profile_download_status_variable: Optional[str] = None,
any_connect_eap_profile_file_name: Optional[str] = None,
any_connect_eap_profile_file_name_variable: Optional[str] = None,
connection_type_ssl: Optional[bool] = None,
description: Optional[str] = None,
enable_crl_check: Optional[bool] = None,
enable_crl_check_variable: Optional[str] = None,
feature_profile_id: Optional[str] = None,
ikev2_anti_dos_threshold: Optional[int] = None,
ikev2_anti_dos_threshold_variable: Optional[str] = None,
ikev2_local_ike_identity_type: Optional[str] = None,
ikev2_local_ike_identity_type_variable: Optional[str] = None,
ikev2_local_ike_identity_value: Optional[str] = None,
ikev2_local_ike_identity_value_variable: Optional[str] = None,
ikev2_security_association_lifetime: Optional[int] = None,
ikev2_security_association_lifetime_variable: Optional[str] = None,
ipsec_anti_replay_window_size: Optional[int] = None,
ipsec_anti_replay_window_size_variable: Optional[str] = None,
ipsec_enable_anti_replay: Optional[bool] = None,
ipsec_enable_anti_replay_variable: Optional[str] = None,
ipsec_enable_perfect_foward_secrecy: Optional[bool] = None,
ipsec_enable_perfect_foward_secrecy_variable: Optional[str] = None,
ipsec_security_association_lifetime: Optional[int] = None,
ipsec_security_association_lifetime_variable: Optional[str] = None,
ipv4_pool_size: Optional[int] = None,
ipv4_pool_size_variable: Optional[str] = None,
ipv6_pool_size: Optional[int] = None,
ipv6_pool_size_variable: Optional[str] = None,
name: Optional[str] = None,
psk_authentication_pre_shared_key: Optional[str] = None,
psk_authentication_pre_shared_key_variable: Optional[str] = None,
psk_authentication_type: Optional[str] = None,
psk_authentication_type_variable: Optional[str] = None,
radius_group_name: Optional[str] = None,
radius_group_name_variable: Optional[str] = None,
version: Optional[int] = None) -> SystemRemoteAccessProfileParcel
func GetSystemRemoteAccessProfileParcel(ctx *Context, name string, id IDInput, state *SystemRemoteAccessProfileParcelState, opts ...ResourceOption) (*SystemRemoteAccessProfileParcel, error)
public static SystemRemoteAccessProfileParcel Get(string name, Input<string> id, SystemRemoteAccessProfileParcelState? state, CustomResourceOptions? opts = null)
public static SystemRemoteAccessProfileParcel get(String name, Output<String> id, SystemRemoteAccessProfileParcelState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Aaa
Derive stringName Domain - Aaa
Derive stringName Domain Variable - Variable name
- Aaa
Derive stringName Identity - Aaa
Derive stringName Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Any
Connect stringEap Authentication Type - Choices:
user
,device
- Choices:
- Any
Connect stringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- Any
Connect stringEap Profile Download Status Variable - Variable name
- Any
Connect stringEap Profile File Name - Any
Connect stringEap Profile File Name Variable - Variable name
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the profile parcel
- Enable
Crl boolCheck - Default value:
false
- Default value:
- Enable
Crl stringCheck Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime - Default value:
64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay - Default value:
true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the profile parcel
- string
- PSK Pre Shared Key
- string
- Variable name
- Psk
Authentication stringType - PSK Selection - Choices:
aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName - Radius
Group stringName Variable - Variable name
- Version int
- The version of the profile parcel
- Aaa
Derive stringName Domain - Aaa
Derive stringName Domain Variable - Variable name
- Aaa
Derive stringName Identity - Aaa
Derive stringName Identity Variable - Variable name
- Aaa
Enable boolAccounting - Enable Accounting - Default value:
true
- Aaa
Enable stringAccounting Variable - Variable name
- Aaa
Specify stringName Policy Name - Aaa
Specify stringName Policy Name Variable - Variable name
- Aaa
Specify stringName Policy Password - Aaa
Specify stringName Policy Password Variable - Variable name
- Any
Connect stringEap Authentication Type - Choices:
user
,device
- Choices:
- Any
Connect stringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- Any
Connect stringEap Profile Download Status Variable - Variable name
- Any
Connect stringEap Profile File Name - Any
Connect stringEap Profile File Name Variable - Variable name
- Connection
Type boolSsl - Enabled SSL VPN - Default value:
false
- Description string
- The description of the profile parcel
- Enable
Crl boolCheck - Default value:
false
- Default value:
- Enable
Crl stringCheck Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ikev2Anti
Dos intThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- Ikev2Anti
Dos stringThreshold Variable - Variable name
- Ikev2Local
Ike stringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- Ikev2Local
Ike stringIdentity Type Variable - Variable name
- Ikev2Local
Ike stringIdentity Value - Ikev2Local
Ike stringIdentity Value Variable - Variable name
- Ikev2Security
Association intLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- Ikev2Security
Association stringLifetime Variable - Variable name
- Ipsec
Anti intReplay Window Size - security Association Lifetime - Default value:
64
- Ipsec
Anti stringReplay Window Size Variable - Variable name
- Ipsec
Enable boolAnti Replay - Enable Anti-Replay - Default value:
true
- Ipsec
Enable stringAnti Replay Variable - Variable name
- Ipsec
Enable boolPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- Ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- Ipsec
Security intAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- Ipsec
Security stringAssociation Lifetime Variable - Variable name
- Ipv4Pool
Size int - IPv4 Pool Size - Default value:
1000
- Ipv4Pool
Size stringVariable - Variable name
- Ipv6Pool
Size int - IPv6 Pool Size - Default value:
1024
- Ipv6Pool
Size stringVariable - Variable name
- Name string
- The name of the profile parcel
- string
- PSK Pre Shared Key
- string
- Variable name
- Psk
Authentication stringType - PSK Selection - Choices:
aaa
,group
- Psk
Authentication stringType Variable - Variable name
- Radius
Group stringName - Radius
Group stringName Variable - Variable name
- Version int
- The version of the profile parcel
- aaa
Derive StringName Domain - aaa
Derive StringName Domain Variable - Variable name
- aaa
Derive StringName Identity - aaa
Derive StringName Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- any
Connect StringEap Authentication Type - Choices:
user
,device
- Choices:
- any
Connect StringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any
Connect StringEap Profile Download Status Variable - Variable name
- any
Connect StringEap Profile File Name - any
Connect StringEap Profile File Name Variable - Variable name
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the profile parcel
- enable
Crl BooleanCheck - Default value:
false
- Default value:
- enable
Crl StringCheck Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos IntegerThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association IntegerLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti IntegerReplay Window Size - security Association Lifetime - Default value:
64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay - Default value:
true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security IntegerAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Integer - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Integer - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the profile parcel
- String
- PSK Pre Shared Key
- String
- Variable name
- psk
Authentication StringType - PSK Selection - Choices:
aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group StringName - radius
Group StringName Variable - Variable name
- version Integer
- The version of the profile parcel
- aaa
Derive stringName Domain - aaa
Derive stringName Domain Variable - Variable name
- aaa
Derive stringName Identity - aaa
Derive stringName Identity Variable - Variable name
- aaa
Enable booleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable stringAccounting Variable - Variable name
- aaa
Specify stringName Policy Name - aaa
Specify stringName Policy Name Variable - Variable name
- aaa
Specify stringName Policy Password - aaa
Specify stringName Policy Password Variable - Variable name
- any
Connect stringEap Authentication Type - Choices:
user
,device
- Choices:
- any
Connect stringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any
Connect stringEap Profile Download Status Variable - Variable name
- any
Connect stringEap Profile File Name - any
Connect stringEap Profile File Name Variable - Variable name
- connection
Type booleanSsl - Enabled SSL VPN - Default value:
false
- description string
- The description of the profile parcel
- enable
Crl booleanCheck - Default value:
false
- Default value:
- enable
Crl stringCheck Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- ikev2Anti
Dos numberThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2Anti
Dos stringThreshold Variable - Variable name
- ikev2Local
Ike stringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2Local
Ike stringIdentity Type Variable - Variable name
- ikev2Local
Ike stringIdentity Value - ikev2Local
Ike stringIdentity Value Variable - Variable name
- ikev2Security
Association numberLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2Security
Association stringLifetime Variable - Variable name
- ipsec
Anti numberReplay Window Size - security Association Lifetime - Default value:
64
- ipsec
Anti stringReplay Window Size Variable - Variable name
- ipsec
Enable booleanAnti Replay - Enable Anti-Replay - Default value:
true
- ipsec
Enable stringAnti Replay Variable - Variable name
- ipsec
Enable booleanPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- ipsec
Enable stringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security numberAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec
Security stringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size stringVariable - Variable name
- ipv6Pool
Size number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size stringVariable - Variable name
- name string
- The name of the profile parcel
- string
- PSK Pre Shared Key
- string
- Variable name
- psk
Authentication stringType - PSK Selection - Choices:
aaa
,group
- psk
Authentication stringType Variable - Variable name
- radius
Group stringName - radius
Group stringName Variable - Variable name
- version number
- The version of the profile parcel
- aaa_
derive_ strname_ domain - aaa_
derive_ strname_ domain_ variable - Variable name
- aaa_
derive_ strname_ identity - aaa_
derive_ strname_ identity_ variable - Variable name
- aaa_
enable_ boolaccounting - Enable Accounting - Default value:
true
- aaa_
enable_ straccounting_ variable - Variable name
- aaa_
specify_ strname_ policy_ name - aaa_
specify_ strname_ policy_ name_ variable - Variable name
- aaa_
specify_ strname_ policy_ password - aaa_
specify_ strname_ policy_ password_ variable - Variable name
- any_
connect_ streap_ authentication_ type - Choices:
user
,device
- Choices:
- any_
connect_ streap_ profile_ download_ status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any_
connect_ streap_ profile_ download_ status_ variable - Variable name
- any_
connect_ streap_ profile_ file_ name - any_
connect_ streap_ profile_ file_ name_ variable - Variable name
- connection_
type_ boolssl - Enabled SSL VPN - Default value:
false
- description str
- The description of the profile parcel
- enable_
crl_ boolcheck - Default value:
false
- Default value:
- enable_
crl_ strcheck_ variable - Variable name
- feature_
profile_ strid - Feature Profile ID
- ikev2_
anti_ intdos_ threshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2_
anti_ strdos_ threshold_ variable - Variable name
- ikev2_
local_ strike_ identity_ type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2_
local_ strike_ identity_ type_ variable - Variable name
- ikev2_
local_ strike_ identity_ value - ikev2_
local_ strike_ identity_ value_ variable - Variable name
- ikev2_
security_ intassociation_ lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2_
security_ strassociation_ lifetime_ variable - Variable name
- ipsec_
anti_ intreplay_ window_ size - security Association Lifetime - Default value:
64
- ipsec_
anti_ strreplay_ window_ size_ variable - Variable name
- ipsec_
enable_ boolanti_ replay - Enable Anti-Replay - Default value:
true
- ipsec_
enable_ stranti_ replay_ variable - Variable name
- ipsec_
enable_ boolperfect_ foward_ secrecy - security Association Lifetime - Default value:
false
- ipsec_
enable_ strperfect_ foward_ secrecy_ variable - Variable name
- ipsec_
security_ intassociation_ lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec_
security_ strassociation_ lifetime_ variable - Variable name
- ipv4_
pool_ intsize - IPv4 Pool Size - Default value:
1000
- ipv4_
pool_ strsize_ variable - Variable name
- ipv6_
pool_ intsize - IPv6 Pool Size - Default value:
1024
- ipv6_
pool_ strsize_ variable - Variable name
- name str
- The name of the profile parcel
- str
- PSK Pre Shared Key
- str
- Variable name
- psk_
authentication_ strtype - PSK Selection - Choices:
aaa
,group
- psk_
authentication_ strtype_ variable - Variable name
- radius_
group_ strname - radius_
group_ strname_ variable - Variable name
- version int
- The version of the profile parcel
- aaa
Derive StringName Domain - aaa
Derive StringName Domain Variable - Variable name
- aaa
Derive StringName Identity - aaa
Derive StringName Identity Variable - Variable name
- aaa
Enable BooleanAccounting - Enable Accounting - Default value:
true
- aaa
Enable StringAccounting Variable - Variable name
- aaa
Specify StringName Policy Name - aaa
Specify StringName Policy Name Variable - Variable name
- aaa
Specify StringName Policy Password - aaa
Specify StringName Policy Password Variable - Variable name
- any
Connect StringEap Authentication Type - Choices:
user
,device
- Choices:
- any
Connect StringEap Profile Download Status - Choices:
NONE
,INITIALIZED
,INITIALIZED_ERROR
,COMPLETE
,COMPLETE_ERROR
- Default value:NONE
- Choices:
- any
Connect StringEap Profile Download Status Variable - Variable name
- any
Connect StringEap Profile File Name - any
Connect StringEap Profile File Name Variable - Variable name
- connection
Type BooleanSsl - Enabled SSL VPN - Default value:
false
- description String
- The description of the profile parcel
- enable
Crl BooleanCheck - Default value:
false
- Default value:
- enable
Crl StringCheck Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- ikev2Anti
Dos NumberThreshold - Anti-DOS Threshold - Range:
10
-1000
- Default value:100
- ikev2Anti
Dos StringThreshold Variable - Variable name
- ikev2Local
Ike StringIdentity Type - Choices:
EMAIL
,FQDN
,KEYID
,IPv4 ADDRESS
,IPv6 ADDRESS
- Choices:
- ikev2Local
Ike StringIdentity Type Variable - Variable name
- ikev2Local
Ike StringIdentity Value - ikev2Local
Ike StringIdentity Value Variable - Variable name
- ikev2Security
Association NumberLifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:86400
- ikev2Security
Association StringLifetime Variable - Variable name
- ipsec
Anti NumberReplay Window Size - security Association Lifetime - Default value:
64
- ipsec
Anti StringReplay Window Size Variable - Variable name
- ipsec
Enable BooleanAnti Replay - Enable Anti-Replay - Default value:
true
- ipsec
Enable StringAnti Replay Variable - Variable name
- ipsec
Enable BooleanPerfect Foward Secrecy - security Association Lifetime - Default value:
false
- ipsec
Enable StringPerfect Foward Secrecy Variable - Variable name
- ipsec
Security NumberAssociation Lifetime - Security Association Lifetime in Seconds - Range:
3600
-86400
- Default value:3600
- ipsec
Security StringAssociation Lifetime Variable - Variable name
- ipv4Pool
Size Number - IPv4 Pool Size - Default value:
1000
- ipv4Pool
Size StringVariable - Variable name
- ipv6Pool
Size Number - IPv6 Pool Size - Default value:
1024
- ipv6Pool
Size StringVariable - Variable name
- name String
- The name of the profile parcel
- String
- PSK Pre Shared Key
- String
- Variable name
- psk
Authentication StringType - PSK Selection - Choices:
aaa
,group
- psk
Authentication StringType Variable - Variable name
- radius
Group StringName - radius
Group StringName Variable - Variable name
- version Number
- The version of the profile parcel
Import
$ pulumi import sdwan:index/systemRemoteAccessProfileParcel:SystemRemoteAccessProfileParcel example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.