1. Packages
  2. Cisco ISE
  3. API Docs
  4. networkaccess
  5. AuthorizationProfile
Cisco ISE v0.1.4 published on Friday, May 31, 2024 by Pulumi

ise.networkaccess.AuthorizationProfile

Explore with Pulumi AI

ise logo
Cisco ISE v0.1.4 published on Friday, May 31, 2024 by Pulumi

    This resource can manage an authorization profiles policy element.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ise.networkaccess.AuthorizationProfile;
    import com.pulumi.ise.networkaccess.AuthorizationProfileArgs;
    import com.pulumi.ise.networkaccess.inputs.AuthorizationProfileAdvancedAttributeArgs;
    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 AuthorizationProfile("example", AuthorizationProfileArgs.builder()
                .name("AuthzProfile1")
                .description("My Authorization Profile")
                .vlanNameId("VLAN10")
                .vlanTagId(0)
                .webRedirectionType("CentralizedWebAuth")
                .webRedirectionAcl("TEST_ACL")
                .webRedirectionPortalName("Sponsored Guest Portal (default)")
                .webRedirectionStaticIpHostNameFqdn("1.2.3.4")
                .webRedirectionDisplayCertificatesRenewalMessages(true)
                .agentlessPosture(false)
                .accessType("ACCESS_ACCEPT")
                .profileName("Cisco")
                .airespaceAcl("ACL1")
                .acl("ACL1")
                .autoSmartPort("PROFILE1")
                .interfaceTemplate("TEMP1")
                .ipv6AclFilter("ACL1")
                .avcProfile("PROF1")
                .asaVpn("1")
                .uniqueIdentifier("ID1234")
                .trackMovement(false)
                .serviceTemplate(false)
                .easywiredSessionCandidate(false)
                .voiceDomainPermission(false)
                .neat(false)
                .webAuth(false)
                .macSecPolicy("MUST_SECURE")
                .reauthenticationConnectivity("DEFAULT")
                .reauthenticationTimer(1)
                .advancedAttributes(AuthorizationProfileAdvancedAttributeArgs.builder()
                    .attribute_left_dictionary_name("Cisco")
                    .attribute_left_name("cisco-av-pair")
                    .attribute_right_value_type("AttributeValue")
                    .attribute_right_value("set_nadprofile_vlan=true,vlan=TEST,tag=1")
                    .build())
                .airespaceIpv6Acl("ACL1")
                .build());
    
        }
    }
    
    resources:
      example:
        type: ise:networkaccess:AuthorizationProfile
        properties:
          name: AuthzProfile1
          description: My Authorization Profile
          vlanNameId: VLAN10
          vlanTagId: 0
          webRedirectionType: CentralizedWebAuth
          webRedirectionAcl: TEST_ACL
          webRedirectionPortalName: Sponsored Guest Portal (default)
          webRedirectionStaticIpHostNameFqdn: 1.2.3.4
          webRedirectionDisplayCertificatesRenewalMessages: true
          agentlessPosture: false
          accessType: ACCESS_ACCEPT
          profileName: Cisco
          airespaceAcl: ACL1
          acl: ACL1
          autoSmartPort: PROFILE1
          interfaceTemplate: TEMP1
          ipv6AclFilter: ACL1
          avcProfile: PROF1
          asaVpn: '1'
          uniqueIdentifier: ID1234
          trackMovement: false
          serviceTemplate: false
          easywiredSessionCandidate: false
          voiceDomainPermission: false
          neat: false
          webAuth: false
          macSecPolicy: MUST_SECURE
          reauthenticationConnectivity: DEFAULT
          reauthenticationTimer: 1
          advancedAttributes:
            - attribute_left_dictionary_name: Cisco
              attribute_left_name: cisco-av-pair
              attribute_right_value_type: AttributeValue
              attribute_right_value: set_nadprofile_vlan=true,vlan=TEST,tag=1
          airespaceIpv6Acl: ACL1
    

    Create AuthorizationProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AuthorizationProfile(name: string, args?: AuthorizationProfileArgs, opts?: CustomResourceOptions);
    @overload
    def AuthorizationProfile(resource_name: str,
                             args: Optional[AuthorizationProfileArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def AuthorizationProfile(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             access_type: Optional[str] = None,
                             acl: Optional[str] = None,
                             advanced_attributes: Optional[Sequence[AuthorizationProfileAdvancedAttributeArgs]] = None,
                             agentless_posture: Optional[bool] = None,
                             airespace_acl: Optional[str] = None,
                             airespace_ipv6_acl: Optional[str] = None,
                             asa_vpn: Optional[str] = None,
                             auto_smart_port: Optional[str] = None,
                             avc_profile: Optional[str] = None,
                             dacl_name: Optional[str] = None,
                             description: Optional[str] = None,
                             easywired_session_candidate: Optional[bool] = None,
                             interface_template: Optional[str] = None,
                             ipv6_acl_filter: Optional[str] = None,
                             ipv6_dacl_name: Optional[str] = None,
                             mac_sec_policy: Optional[str] = None,
                             name: Optional[str] = None,
                             neat: Optional[bool] = None,
                             profile_name: Optional[str] = None,
                             reauthentication_connectivity: Optional[str] = None,
                             reauthentication_timer: Optional[int] = None,
                             service_template: Optional[bool] = None,
                             track_movement: Optional[bool] = None,
                             unique_identifier: Optional[str] = None,
                             vlan_name_id: Optional[str] = None,
                             vlan_tag_id: Optional[int] = None,
                             voice_domain_permission: Optional[bool] = None,
                             web_auth: Optional[bool] = None,
                             web_redirection_acl: Optional[str] = None,
                             web_redirection_display_certificates_renewal_messages: Optional[bool] = None,
                             web_redirection_portal_name: Optional[str] = None,
                             web_redirection_static_ip_host_name_fqdn: Optional[str] = None,
                             web_redirection_type: Optional[str] = None)
    func NewAuthorizationProfile(ctx *Context, name string, args *AuthorizationProfileArgs, opts ...ResourceOption) (*AuthorizationProfile, error)
    public AuthorizationProfile(string name, AuthorizationProfileArgs? args = null, CustomResourceOptions? opts = null)
    public AuthorizationProfile(String name, AuthorizationProfileArgs args)
    public AuthorizationProfile(String name, AuthorizationProfileArgs args, CustomResourceOptions options)
    
    type: ise:networkaccess:AuthorizationProfile
    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 AuthorizationProfileArgs
    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 AuthorizationProfileArgs
    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 AuthorizationProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuthorizationProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuthorizationProfileArgs
    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 authorizationProfileResource = new Ise.NetworkAccess.AuthorizationProfile("authorizationProfileResource", new()
    {
        AccessType = "string",
        Acl = "string",
        AdvancedAttributes = new[]
        {
            new Ise.NetworkAccess.Inputs.AuthorizationProfileAdvancedAttributeArgs
            {
                AttributeLeftDictionaryName = "string",
                AttributeLeftName = "string",
                AttributeRightDictionaryName = "string",
                AttributeRightName = "string",
                AttributeRightValue = "string",
                AttributeRightValueType = "string",
            },
        },
        AgentlessPosture = false,
        AirespaceAcl = "string",
        AirespaceIpv6Acl = "string",
        AsaVpn = "string",
        AutoSmartPort = "string",
        AvcProfile = "string",
        DaclName = "string",
        Description = "string",
        EasywiredSessionCandidate = false,
        InterfaceTemplate = "string",
        Ipv6AclFilter = "string",
        Ipv6DaclName = "string",
        MacSecPolicy = "string",
        Name = "string",
        Neat = false,
        ProfileName = "string",
        ReauthenticationConnectivity = "string",
        ReauthenticationTimer = 0,
        ServiceTemplate = false,
        TrackMovement = false,
        UniqueIdentifier = "string",
        VlanNameId = "string",
        VlanTagId = 0,
        VoiceDomainPermission = false,
        WebAuth = false,
        WebRedirectionAcl = "string",
        WebRedirectionDisplayCertificatesRenewalMessages = false,
        WebRedirectionPortalName = "string",
        WebRedirectionStaticIpHostNameFqdn = "string",
        WebRedirectionType = "string",
    });
    
    example, err := networkaccess.NewAuthorizationProfile(ctx, "authorizationProfileResource", &networkaccess.AuthorizationProfileArgs{
    	AccessType: pulumi.String("string"),
    	Acl:        pulumi.String("string"),
    	AdvancedAttributes: networkaccess.AuthorizationProfileAdvancedAttributeArray{
    		&networkaccess.AuthorizationProfileAdvancedAttributeArgs{
    			AttributeLeftDictionaryName:  pulumi.String("string"),
    			AttributeLeftName:            pulumi.String("string"),
    			AttributeRightDictionaryName: pulumi.String("string"),
    			AttributeRightName:           pulumi.String("string"),
    			AttributeRightValue:          pulumi.String("string"),
    			AttributeRightValueType:      pulumi.String("string"),
    		},
    	},
    	AgentlessPosture:             pulumi.Bool(false),
    	AirespaceAcl:                 pulumi.String("string"),
    	AirespaceIpv6Acl:             pulumi.String("string"),
    	AsaVpn:                       pulumi.String("string"),
    	AutoSmartPort:                pulumi.String("string"),
    	AvcProfile:                   pulumi.String("string"),
    	DaclName:                     pulumi.String("string"),
    	Description:                  pulumi.String("string"),
    	EasywiredSessionCandidate:    pulumi.Bool(false),
    	InterfaceTemplate:            pulumi.String("string"),
    	Ipv6AclFilter:                pulumi.String("string"),
    	Ipv6DaclName:                 pulumi.String("string"),
    	MacSecPolicy:                 pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    	Neat:                         pulumi.Bool(false),
    	ProfileName:                  pulumi.String("string"),
    	ReauthenticationConnectivity: pulumi.String("string"),
    	ReauthenticationTimer:        pulumi.Int(0),
    	ServiceTemplate:              pulumi.Bool(false),
    	TrackMovement:                pulumi.Bool(false),
    	UniqueIdentifier:             pulumi.String("string"),
    	VlanNameId:                   pulumi.String("string"),
    	VlanTagId:                    pulumi.Int(0),
    	VoiceDomainPermission:        pulumi.Bool(false),
    	WebAuth:                      pulumi.Bool(false),
    	WebRedirectionAcl:            pulumi.String("string"),
    	WebRedirectionDisplayCertificatesRenewalMessages: pulumi.Bool(false),
    	WebRedirectionPortalName:                         pulumi.String("string"),
    	WebRedirectionStaticIpHostNameFqdn:               pulumi.String("string"),
    	WebRedirectionType:                               pulumi.String("string"),
    })
    
    var authorizationProfileResource = new AuthorizationProfile("authorizationProfileResource", AuthorizationProfileArgs.builder()
        .accessType("string")
        .acl("string")
        .advancedAttributes(AuthorizationProfileAdvancedAttributeArgs.builder()
            .attributeLeftDictionaryName("string")
            .attributeLeftName("string")
            .attributeRightDictionaryName("string")
            .attributeRightName("string")
            .attributeRightValue("string")
            .attributeRightValueType("string")
            .build())
        .agentlessPosture(false)
        .airespaceAcl("string")
        .airespaceIpv6Acl("string")
        .asaVpn("string")
        .autoSmartPort("string")
        .avcProfile("string")
        .daclName("string")
        .description("string")
        .easywiredSessionCandidate(false)
        .interfaceTemplate("string")
        .ipv6AclFilter("string")
        .ipv6DaclName("string")
        .macSecPolicy("string")
        .name("string")
        .neat(false)
        .profileName("string")
        .reauthenticationConnectivity("string")
        .reauthenticationTimer(0)
        .serviceTemplate(false)
        .trackMovement(false)
        .uniqueIdentifier("string")
        .vlanNameId("string")
        .vlanTagId(0)
        .voiceDomainPermission(false)
        .webAuth(false)
        .webRedirectionAcl("string")
        .webRedirectionDisplayCertificatesRenewalMessages(false)
        .webRedirectionPortalName("string")
        .webRedirectionStaticIpHostNameFqdn("string")
        .webRedirectionType("string")
        .build());
    
    authorization_profile_resource = ise.networkaccess.AuthorizationProfile("authorizationProfileResource",
        access_type="string",
        acl="string",
        advanced_attributes=[ise.networkaccess.AuthorizationProfileAdvancedAttributeArgs(
            attribute_left_dictionary_name="string",
            attribute_left_name="string",
            attribute_right_dictionary_name="string",
            attribute_right_name="string",
            attribute_right_value="string",
            attribute_right_value_type="string",
        )],
        agentless_posture=False,
        airespace_acl="string",
        airespace_ipv6_acl="string",
        asa_vpn="string",
        auto_smart_port="string",
        avc_profile="string",
        dacl_name="string",
        description="string",
        easywired_session_candidate=False,
        interface_template="string",
        ipv6_acl_filter="string",
        ipv6_dacl_name="string",
        mac_sec_policy="string",
        name="string",
        neat=False,
        profile_name="string",
        reauthentication_connectivity="string",
        reauthentication_timer=0,
        service_template=False,
        track_movement=False,
        unique_identifier="string",
        vlan_name_id="string",
        vlan_tag_id=0,
        voice_domain_permission=False,
        web_auth=False,
        web_redirection_acl="string",
        web_redirection_display_certificates_renewal_messages=False,
        web_redirection_portal_name="string",
        web_redirection_static_ip_host_name_fqdn="string",
        web_redirection_type="string")
    
    const authorizationProfileResource = new ise.networkaccess.AuthorizationProfile("authorizationProfileResource", {
        accessType: "string",
        acl: "string",
        advancedAttributes: [{
            attributeLeftDictionaryName: "string",
            attributeLeftName: "string",
            attributeRightDictionaryName: "string",
            attributeRightName: "string",
            attributeRightValue: "string",
            attributeRightValueType: "string",
        }],
        agentlessPosture: false,
        airespaceAcl: "string",
        airespaceIpv6Acl: "string",
        asaVpn: "string",
        autoSmartPort: "string",
        avcProfile: "string",
        daclName: "string",
        description: "string",
        easywiredSessionCandidate: false,
        interfaceTemplate: "string",
        ipv6AclFilter: "string",
        ipv6DaclName: "string",
        macSecPolicy: "string",
        name: "string",
        neat: false,
        profileName: "string",
        reauthenticationConnectivity: "string",
        reauthenticationTimer: 0,
        serviceTemplate: false,
        trackMovement: false,
        uniqueIdentifier: "string",
        vlanNameId: "string",
        vlanTagId: 0,
        voiceDomainPermission: false,
        webAuth: false,
        webRedirectionAcl: "string",
        webRedirectionDisplayCertificatesRenewalMessages: false,
        webRedirectionPortalName: "string",
        webRedirectionStaticIpHostNameFqdn: "string",
        webRedirectionType: "string",
    });
    
    type: ise:networkaccess:AuthorizationProfile
    properties:
        accessType: string
        acl: string
        advancedAttributes:
            - attributeLeftDictionaryName: string
              attributeLeftName: string
              attributeRightDictionaryName: string
              attributeRightName: string
              attributeRightValue: string
              attributeRightValueType: string
        agentlessPosture: false
        airespaceAcl: string
        airespaceIpv6Acl: string
        asaVpn: string
        autoSmartPort: string
        avcProfile: string
        daclName: string
        description: string
        easywiredSessionCandidate: false
        interfaceTemplate: string
        ipv6AclFilter: string
        ipv6DaclName: string
        macSecPolicy: string
        name: string
        neat: false
        profileName: string
        reauthenticationConnectivity: string
        reauthenticationTimer: 0
        serviceTemplate: false
        trackMovement: false
        uniqueIdentifier: string
        vlanNameId: string
        vlanTagId: 0
        voiceDomainPermission: false
        webAuth: false
        webRedirectionAcl: string
        webRedirectionDisplayCertificatesRenewalMessages: false
        webRedirectionPortalName: string
        webRedirectionStaticIpHostNameFqdn: string
        webRedirectionType: string
    

    AuthorizationProfile 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 AuthorizationProfile resource accepts the following input properties:

    AccessType string
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    Acl string
    ACL
    AdvancedAttributes List<AuthorizationProfileAdvancedAttribute>
    List of advanced attributes
    AgentlessPosture bool
    Agentless Posture.
    AirespaceAcl string
    Airespace ACL
    AirespaceIpv6Acl string
    Airespace IPv6 ACL
    AsaVpn string
    ASA VPN
    AutoSmartPort string
    Auto smart port
    AvcProfile string
    AVC profile
    DaclName string
    DACL name
    Description string
    Description
    EasywiredSessionCandidate bool
    Easy wired session candidate - Default value: false
    InterfaceTemplate string
    Interface template
    Ipv6AclFilter string
    IPv6 ACL
    Ipv6DaclName string
    IPv6 DACL name
    MacSecPolicy string
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    Name string
    The name of the authorization profile
    Neat bool
    NEAT - Default value: false
    ProfileName string
    Value needs to be an existing Network Device Profile - Default value: Cisco
    ReauthenticationConnectivity string
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    ReauthenticationTimer int
    Reauthentication timer - Range: 1-65535
    ServiceTemplate bool
    Service template - Default value: false
    TrackMovement bool
    Track movement - Default value: false
    UniqueIdentifier string
    Unique identifier
    VlanNameId string
    Vlan name or ID
    VlanTagId int
    Vlan tag ID - Range: 0-31
    VoiceDomainPermission bool
    Voice domain permission - Default value: false
    WebAuth bool
    Web authentication (local) - Default value: false
    WebRedirectionAcl string
    Web redirection ACL
    WebRedirectionDisplayCertificatesRenewalMessages bool
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    WebRedirectionPortalName string
    A portal that exist in the DB and fits the web_redirection_type
    WebRedirectionStaticIpHostNameFqdn string
    IP, hostname or FQDN
    WebRedirectionType string
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    AccessType string
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    Acl string
    ACL
    AdvancedAttributes []AuthorizationProfileAdvancedAttributeArgs
    List of advanced attributes
    AgentlessPosture bool
    Agentless Posture.
    AirespaceAcl string
    Airespace ACL
    AirespaceIpv6Acl string
    Airespace IPv6 ACL
    AsaVpn string
    ASA VPN
    AutoSmartPort string
    Auto smart port
    AvcProfile string
    AVC profile
    DaclName string
    DACL name
    Description string
    Description
    EasywiredSessionCandidate bool
    Easy wired session candidate - Default value: false
    InterfaceTemplate string
    Interface template
    Ipv6AclFilter string
    IPv6 ACL
    Ipv6DaclName string
    IPv6 DACL name
    MacSecPolicy string
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    Name string
    The name of the authorization profile
    Neat bool
    NEAT - Default value: false
    ProfileName string
    Value needs to be an existing Network Device Profile - Default value: Cisco
    ReauthenticationConnectivity string
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    ReauthenticationTimer int
    Reauthentication timer - Range: 1-65535
    ServiceTemplate bool
    Service template - Default value: false
    TrackMovement bool
    Track movement - Default value: false
    UniqueIdentifier string
    Unique identifier
    VlanNameId string
    Vlan name or ID
    VlanTagId int
    Vlan tag ID - Range: 0-31
    VoiceDomainPermission bool
    Voice domain permission - Default value: false
    WebAuth bool
    Web authentication (local) - Default value: false
    WebRedirectionAcl string
    Web redirection ACL
    WebRedirectionDisplayCertificatesRenewalMessages bool
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    WebRedirectionPortalName string
    A portal that exist in the DB and fits the web_redirection_type
    WebRedirectionStaticIpHostNameFqdn string
    IP, hostname or FQDN
    WebRedirectionType string
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    accessType String
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl String
    ACL
    advancedAttributes List<AuthorizationProfileAdvancedAttribute>
    List of advanced attributes
    agentlessPosture Boolean
    Agentless Posture.
    airespaceAcl String
    Airespace ACL
    airespaceIpv6Acl String
    Airespace IPv6 ACL
    asaVpn String
    ASA VPN
    autoSmartPort String
    Auto smart port
    avcProfile String
    AVC profile
    daclName String
    DACL name
    description String
    Description
    easywiredSessionCandidate Boolean
    Easy wired session candidate - Default value: false
    interfaceTemplate String
    Interface template
    ipv6AclFilter String
    IPv6 ACL
    ipv6DaclName String
    IPv6 DACL name
    macSecPolicy String
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name String
    The name of the authorization profile
    neat Boolean
    NEAT - Default value: false
    profileName String
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthenticationConnectivity String
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthenticationTimer Integer
    Reauthentication timer - Range: 1-65535
    serviceTemplate Boolean
    Service template - Default value: false
    trackMovement Boolean
    Track movement - Default value: false
    uniqueIdentifier String
    Unique identifier
    vlanNameId String
    Vlan name or ID
    vlanTagId Integer
    Vlan tag ID - Range: 0-31
    voiceDomainPermission Boolean
    Voice domain permission - Default value: false
    webAuth Boolean
    Web authentication (local) - Default value: false
    webRedirectionAcl String
    Web redirection ACL
    webRedirectionDisplayCertificatesRenewalMessages Boolean
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    webRedirectionPortalName String
    A portal that exist in the DB and fits the web_redirection_type
    webRedirectionStaticIpHostNameFqdn String
    IP, hostname or FQDN
    webRedirectionType String
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    accessType string
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl string
    ACL
    advancedAttributes AuthorizationProfileAdvancedAttribute[]
    List of advanced attributes
    agentlessPosture boolean
    Agentless Posture.
    airespaceAcl string
    Airespace ACL
    airespaceIpv6Acl string
    Airespace IPv6 ACL
    asaVpn string
    ASA VPN
    autoSmartPort string
    Auto smart port
    avcProfile string
    AVC profile
    daclName string
    DACL name
    description string
    Description
    easywiredSessionCandidate boolean
    Easy wired session candidate - Default value: false
    interfaceTemplate string
    Interface template
    ipv6AclFilter string
    IPv6 ACL
    ipv6DaclName string
    IPv6 DACL name
    macSecPolicy string
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name string
    The name of the authorization profile
    neat boolean
    NEAT - Default value: false
    profileName string
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthenticationConnectivity string
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthenticationTimer number
    Reauthentication timer - Range: 1-65535
    serviceTemplate boolean
    Service template - Default value: false
    trackMovement boolean
    Track movement - Default value: false
    uniqueIdentifier string
    Unique identifier
    vlanNameId string
    Vlan name or ID
    vlanTagId number
    Vlan tag ID - Range: 0-31
    voiceDomainPermission boolean
    Voice domain permission - Default value: false
    webAuth boolean
    Web authentication (local) - Default value: false
    webRedirectionAcl string
    Web redirection ACL
    webRedirectionDisplayCertificatesRenewalMessages boolean
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    webRedirectionPortalName string
    A portal that exist in the DB and fits the web_redirection_type
    webRedirectionStaticIpHostNameFqdn string
    IP, hostname or FQDN
    webRedirectionType string
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    access_type str
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl str
    ACL
    advanced_attributes Sequence[AuthorizationProfileAdvancedAttributeArgs]
    List of advanced attributes
    agentless_posture bool
    Agentless Posture.
    airespace_acl str
    Airespace ACL
    airespace_ipv6_acl str
    Airespace IPv6 ACL
    asa_vpn str
    ASA VPN
    auto_smart_port str
    Auto smart port
    avc_profile str
    AVC profile
    dacl_name str
    DACL name
    description str
    Description
    easywired_session_candidate bool
    Easy wired session candidate - Default value: false
    interface_template str
    Interface template
    ipv6_acl_filter str
    IPv6 ACL
    ipv6_dacl_name str
    IPv6 DACL name
    mac_sec_policy str
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name str
    The name of the authorization profile
    neat bool
    NEAT - Default value: false
    profile_name str
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthentication_connectivity str
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthentication_timer int
    Reauthentication timer - Range: 1-65535
    service_template bool
    Service template - Default value: false
    track_movement bool
    Track movement - Default value: false
    unique_identifier str
    Unique identifier
    vlan_name_id str
    Vlan name or ID
    vlan_tag_id int
    Vlan tag ID - Range: 0-31
    voice_domain_permission bool
    Voice domain permission - Default value: false
    web_auth bool
    Web authentication (local) - Default value: false
    web_redirection_acl str
    Web redirection ACL
    web_redirection_display_certificates_renewal_messages bool
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    web_redirection_portal_name str
    A portal that exist in the DB and fits the web_redirection_type
    web_redirection_static_ip_host_name_fqdn str
    IP, hostname or FQDN
    web_redirection_type str
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    accessType String
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl String
    ACL
    advancedAttributes List<Property Map>
    List of advanced attributes
    agentlessPosture Boolean
    Agentless Posture.
    airespaceAcl String
    Airespace ACL
    airespaceIpv6Acl String
    Airespace IPv6 ACL
    asaVpn String
    ASA VPN
    autoSmartPort String
    Auto smart port
    avcProfile String
    AVC profile
    daclName String
    DACL name
    description String
    Description
    easywiredSessionCandidate Boolean
    Easy wired session candidate - Default value: false
    interfaceTemplate String
    Interface template
    ipv6AclFilter String
    IPv6 ACL
    ipv6DaclName String
    IPv6 DACL name
    macSecPolicy String
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name String
    The name of the authorization profile
    neat Boolean
    NEAT - Default value: false
    profileName String
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthenticationConnectivity String
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthenticationTimer Number
    Reauthentication timer - Range: 1-65535
    serviceTemplate Boolean
    Service template - Default value: false
    trackMovement Boolean
    Track movement - Default value: false
    uniqueIdentifier String
    Unique identifier
    vlanNameId String
    Vlan name or ID
    vlanTagId Number
    Vlan tag ID - Range: 0-31
    voiceDomainPermission Boolean
    Voice domain permission - Default value: false
    webAuth Boolean
    Web authentication (local) - Default value: false
    webRedirectionAcl String
    Web redirection ACL
    webRedirectionDisplayCertificatesRenewalMessages Boolean
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    webRedirectionPortalName String
    A portal that exist in the DB and fits the web_redirection_type
    webRedirectionStaticIpHostNameFqdn String
    IP, hostname or FQDN
    webRedirectionType String
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AuthorizationProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AuthorizationProfile Resource

    Get an existing AuthorizationProfile 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?: AuthorizationProfileState, opts?: CustomResourceOptions): AuthorizationProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_type: Optional[str] = None,
            acl: Optional[str] = None,
            advanced_attributes: Optional[Sequence[AuthorizationProfileAdvancedAttributeArgs]] = None,
            agentless_posture: Optional[bool] = None,
            airespace_acl: Optional[str] = None,
            airespace_ipv6_acl: Optional[str] = None,
            asa_vpn: Optional[str] = None,
            auto_smart_port: Optional[str] = None,
            avc_profile: Optional[str] = None,
            dacl_name: Optional[str] = None,
            description: Optional[str] = None,
            easywired_session_candidate: Optional[bool] = None,
            interface_template: Optional[str] = None,
            ipv6_acl_filter: Optional[str] = None,
            ipv6_dacl_name: Optional[str] = None,
            mac_sec_policy: Optional[str] = None,
            name: Optional[str] = None,
            neat: Optional[bool] = None,
            profile_name: Optional[str] = None,
            reauthentication_connectivity: Optional[str] = None,
            reauthentication_timer: Optional[int] = None,
            service_template: Optional[bool] = None,
            track_movement: Optional[bool] = None,
            unique_identifier: Optional[str] = None,
            vlan_name_id: Optional[str] = None,
            vlan_tag_id: Optional[int] = None,
            voice_domain_permission: Optional[bool] = None,
            web_auth: Optional[bool] = None,
            web_redirection_acl: Optional[str] = None,
            web_redirection_display_certificates_renewal_messages: Optional[bool] = None,
            web_redirection_portal_name: Optional[str] = None,
            web_redirection_static_ip_host_name_fqdn: Optional[str] = None,
            web_redirection_type: Optional[str] = None) -> AuthorizationProfile
    func GetAuthorizationProfile(ctx *Context, name string, id IDInput, state *AuthorizationProfileState, opts ...ResourceOption) (*AuthorizationProfile, error)
    public static AuthorizationProfile Get(string name, Input<string> id, AuthorizationProfileState? state, CustomResourceOptions? opts = null)
    public static AuthorizationProfile get(String name, Output<String> id, AuthorizationProfileState 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.
    The following state arguments are supported:
    AccessType string
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    Acl string
    ACL
    AdvancedAttributes List<AuthorizationProfileAdvancedAttribute>
    List of advanced attributes
    AgentlessPosture bool
    Agentless Posture.
    AirespaceAcl string
    Airespace ACL
    AirespaceIpv6Acl string
    Airespace IPv6 ACL
    AsaVpn string
    ASA VPN
    AutoSmartPort string
    Auto smart port
    AvcProfile string
    AVC profile
    DaclName string
    DACL name
    Description string
    Description
    EasywiredSessionCandidate bool
    Easy wired session candidate - Default value: false
    InterfaceTemplate string
    Interface template
    Ipv6AclFilter string
    IPv6 ACL
    Ipv6DaclName string
    IPv6 DACL name
    MacSecPolicy string
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    Name string
    The name of the authorization profile
    Neat bool
    NEAT - Default value: false
    ProfileName string
    Value needs to be an existing Network Device Profile - Default value: Cisco
    ReauthenticationConnectivity string
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    ReauthenticationTimer int
    Reauthentication timer - Range: 1-65535
    ServiceTemplate bool
    Service template - Default value: false
    TrackMovement bool
    Track movement - Default value: false
    UniqueIdentifier string
    Unique identifier
    VlanNameId string
    Vlan name or ID
    VlanTagId int
    Vlan tag ID - Range: 0-31
    VoiceDomainPermission bool
    Voice domain permission - Default value: false
    WebAuth bool
    Web authentication (local) - Default value: false
    WebRedirectionAcl string
    Web redirection ACL
    WebRedirectionDisplayCertificatesRenewalMessages bool
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    WebRedirectionPortalName string
    A portal that exist in the DB and fits the web_redirection_type
    WebRedirectionStaticIpHostNameFqdn string
    IP, hostname or FQDN
    WebRedirectionType string
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    AccessType string
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    Acl string
    ACL
    AdvancedAttributes []AuthorizationProfileAdvancedAttributeArgs
    List of advanced attributes
    AgentlessPosture bool
    Agentless Posture.
    AirespaceAcl string
    Airespace ACL
    AirespaceIpv6Acl string
    Airespace IPv6 ACL
    AsaVpn string
    ASA VPN
    AutoSmartPort string
    Auto smart port
    AvcProfile string
    AVC profile
    DaclName string
    DACL name
    Description string
    Description
    EasywiredSessionCandidate bool
    Easy wired session candidate - Default value: false
    InterfaceTemplate string
    Interface template
    Ipv6AclFilter string
    IPv6 ACL
    Ipv6DaclName string
    IPv6 DACL name
    MacSecPolicy string
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    Name string
    The name of the authorization profile
    Neat bool
    NEAT - Default value: false
    ProfileName string
    Value needs to be an existing Network Device Profile - Default value: Cisco
    ReauthenticationConnectivity string
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    ReauthenticationTimer int
    Reauthentication timer - Range: 1-65535
    ServiceTemplate bool
    Service template - Default value: false
    TrackMovement bool
    Track movement - Default value: false
    UniqueIdentifier string
    Unique identifier
    VlanNameId string
    Vlan name or ID
    VlanTagId int
    Vlan tag ID - Range: 0-31
    VoiceDomainPermission bool
    Voice domain permission - Default value: false
    WebAuth bool
    Web authentication (local) - Default value: false
    WebRedirectionAcl string
    Web redirection ACL
    WebRedirectionDisplayCertificatesRenewalMessages bool
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    WebRedirectionPortalName string
    A portal that exist in the DB and fits the web_redirection_type
    WebRedirectionStaticIpHostNameFqdn string
    IP, hostname or FQDN
    WebRedirectionType string
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    accessType String
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl String
    ACL
    advancedAttributes List<AuthorizationProfileAdvancedAttribute>
    List of advanced attributes
    agentlessPosture Boolean
    Agentless Posture.
    airespaceAcl String
    Airespace ACL
    airespaceIpv6Acl String
    Airespace IPv6 ACL
    asaVpn String
    ASA VPN
    autoSmartPort String
    Auto smart port
    avcProfile String
    AVC profile
    daclName String
    DACL name
    description String
    Description
    easywiredSessionCandidate Boolean
    Easy wired session candidate - Default value: false
    interfaceTemplate String
    Interface template
    ipv6AclFilter String
    IPv6 ACL
    ipv6DaclName String
    IPv6 DACL name
    macSecPolicy String
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name String
    The name of the authorization profile
    neat Boolean
    NEAT - Default value: false
    profileName String
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthenticationConnectivity String
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthenticationTimer Integer
    Reauthentication timer - Range: 1-65535
    serviceTemplate Boolean
    Service template - Default value: false
    trackMovement Boolean
    Track movement - Default value: false
    uniqueIdentifier String
    Unique identifier
    vlanNameId String
    Vlan name or ID
    vlanTagId Integer
    Vlan tag ID - Range: 0-31
    voiceDomainPermission Boolean
    Voice domain permission - Default value: false
    webAuth Boolean
    Web authentication (local) - Default value: false
    webRedirectionAcl String
    Web redirection ACL
    webRedirectionDisplayCertificatesRenewalMessages Boolean
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    webRedirectionPortalName String
    A portal that exist in the DB and fits the web_redirection_type
    webRedirectionStaticIpHostNameFqdn String
    IP, hostname or FQDN
    webRedirectionType String
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    accessType string
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl string
    ACL
    advancedAttributes AuthorizationProfileAdvancedAttribute[]
    List of advanced attributes
    agentlessPosture boolean
    Agentless Posture.
    airespaceAcl string
    Airespace ACL
    airespaceIpv6Acl string
    Airespace IPv6 ACL
    asaVpn string
    ASA VPN
    autoSmartPort string
    Auto smart port
    avcProfile string
    AVC profile
    daclName string
    DACL name
    description string
    Description
    easywiredSessionCandidate boolean
    Easy wired session candidate - Default value: false
    interfaceTemplate string
    Interface template
    ipv6AclFilter string
    IPv6 ACL
    ipv6DaclName string
    IPv6 DACL name
    macSecPolicy string
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name string
    The name of the authorization profile
    neat boolean
    NEAT - Default value: false
    profileName string
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthenticationConnectivity string
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthenticationTimer number
    Reauthentication timer - Range: 1-65535
    serviceTemplate boolean
    Service template - Default value: false
    trackMovement boolean
    Track movement - Default value: false
    uniqueIdentifier string
    Unique identifier
    vlanNameId string
    Vlan name or ID
    vlanTagId number
    Vlan tag ID - Range: 0-31
    voiceDomainPermission boolean
    Voice domain permission - Default value: false
    webAuth boolean
    Web authentication (local) - Default value: false
    webRedirectionAcl string
    Web redirection ACL
    webRedirectionDisplayCertificatesRenewalMessages boolean
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    webRedirectionPortalName string
    A portal that exist in the DB and fits the web_redirection_type
    webRedirectionStaticIpHostNameFqdn string
    IP, hostname or FQDN
    webRedirectionType string
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    access_type str
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl str
    ACL
    advanced_attributes Sequence[AuthorizationProfileAdvancedAttributeArgs]
    List of advanced attributes
    agentless_posture bool
    Agentless Posture.
    airespace_acl str
    Airespace ACL
    airespace_ipv6_acl str
    Airespace IPv6 ACL
    asa_vpn str
    ASA VPN
    auto_smart_port str
    Auto smart port
    avc_profile str
    AVC profile
    dacl_name str
    DACL name
    description str
    Description
    easywired_session_candidate bool
    Easy wired session candidate - Default value: false
    interface_template str
    Interface template
    ipv6_acl_filter str
    IPv6 ACL
    ipv6_dacl_name str
    IPv6 DACL name
    mac_sec_policy str
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name str
    The name of the authorization profile
    neat bool
    NEAT - Default value: false
    profile_name str
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthentication_connectivity str
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthentication_timer int
    Reauthentication timer - Range: 1-65535
    service_template bool
    Service template - Default value: false
    track_movement bool
    Track movement - Default value: false
    unique_identifier str
    Unique identifier
    vlan_name_id str
    Vlan name or ID
    vlan_tag_id int
    Vlan tag ID - Range: 0-31
    voice_domain_permission bool
    Voice domain permission - Default value: false
    web_auth bool
    Web authentication (local) - Default value: false
    web_redirection_acl str
    Web redirection ACL
    web_redirection_display_certificates_renewal_messages bool
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    web_redirection_portal_name str
    A portal that exist in the DB and fits the web_redirection_type
    web_redirection_static_ip_host_name_fqdn str
    IP, hostname or FQDN
    web_redirection_type str
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning
    accessType String
    Access type - Choices: ACCESS_ACCEPT, ACCESS_REJECT - Default value: ACCESS_ACCEPT
    acl String
    ACL
    advancedAttributes List<Property Map>
    List of advanced attributes
    agentlessPosture Boolean
    Agentless Posture.
    airespaceAcl String
    Airespace ACL
    airespaceIpv6Acl String
    Airespace IPv6 ACL
    asaVpn String
    ASA VPN
    autoSmartPort String
    Auto smart port
    avcProfile String
    AVC profile
    daclName String
    DACL name
    description String
    Description
    easywiredSessionCandidate Boolean
    Easy wired session candidate - Default value: false
    interfaceTemplate String
    Interface template
    ipv6AclFilter String
    IPv6 ACL
    ipv6DaclName String
    IPv6 DACL name
    macSecPolicy String
    MacSec policy - Choices: MUST_SECURE, MUST_NOT_SECURE, SHOULD_SECURE
    name String
    The name of the authorization profile
    neat Boolean
    NEAT - Default value: false
    profileName String
    Value needs to be an existing Network Device Profile - Default value: Cisco
    reauthenticationConnectivity String
    Maintain Connectivity During Reauthentication - Choices: DEFAULT, RADIUS_REQUEST
    reauthenticationTimer Number
    Reauthentication timer - Range: 1-65535
    serviceTemplate Boolean
    Service template - Default value: false
    trackMovement Boolean
    Track movement - Default value: false
    uniqueIdentifier String
    Unique identifier
    vlanNameId String
    Vlan name or ID
    vlanTagId Number
    Vlan tag ID - Range: 0-31
    voiceDomainPermission Boolean
    Voice domain permission - Default value: false
    webAuth Boolean
    Web authentication (local) - Default value: false
    webRedirectionAcl String
    Web redirection ACL
    webRedirectionDisplayCertificatesRenewalMessages Boolean
    This attribute is mandatory when web_redirection_type value is CentralizedWebAuth. For all other web_redirection_type values the field must be ignored.
    webRedirectionPortalName String
    A portal that exist in the DB and fits the web_redirection_type
    webRedirectionStaticIpHostNameFqdn String
    IP, hostname or FQDN
    webRedirectionType String
    This type must fit the web_redirection_portal_name - Choices: CentralizedWebAuth, HotSpot, NativeSupplicanProvisioning, ClientProvisioning

    Supporting Types

    AuthorizationProfileAdvancedAttribute, AuthorizationProfileAdvancedAttributeArgs

    AttributeLeftDictionaryName string
    Dictionary name
    AttributeLeftName string
    Attribute name
    AttributeRightDictionaryName string
    Dictionary name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    AttributeRightName string
    Attribute name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    AttributeRightValue string
    Attribute value, only required when attribute_right_value_type is AttributeValue
    AttributeRightValueType string
    Advanced attribute value type

    • Choices: AdvancedDictionaryAttribute, AttributeValue
    AttributeLeftDictionaryName string
    Dictionary name
    AttributeLeftName string
    Attribute name
    AttributeRightDictionaryName string
    Dictionary name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    AttributeRightName string
    Attribute name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    AttributeRightValue string
    Attribute value, only required when attribute_right_value_type is AttributeValue
    AttributeRightValueType string
    Advanced attribute value type

    • Choices: AdvancedDictionaryAttribute, AttributeValue
    attributeLeftDictionaryName String
    Dictionary name
    attributeLeftName String
    Attribute name
    attributeRightDictionaryName String
    Dictionary name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attributeRightName String
    Attribute name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attributeRightValue String
    Attribute value, only required when attribute_right_value_type is AttributeValue
    attributeRightValueType String
    Advanced attribute value type

    • Choices: AdvancedDictionaryAttribute, AttributeValue
    attributeLeftDictionaryName string
    Dictionary name
    attributeLeftName string
    Attribute name
    attributeRightDictionaryName string
    Dictionary name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attributeRightName string
    Attribute name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attributeRightValue string
    Attribute value, only required when attribute_right_value_type is AttributeValue
    attributeRightValueType string
    Advanced attribute value type

    • Choices: AdvancedDictionaryAttribute, AttributeValue
    attribute_left_dictionary_name str
    Dictionary name
    attribute_left_name str
    Attribute name
    attribute_right_dictionary_name str
    Dictionary name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attribute_right_name str
    Attribute name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attribute_right_value str
    Attribute value, only required when attribute_right_value_type is AttributeValue
    attribute_right_value_type str
    Advanced attribute value type

    • Choices: AdvancedDictionaryAttribute, AttributeValue
    attributeLeftDictionaryName String
    Dictionary name
    attributeLeftName String
    Attribute name
    attributeRightDictionaryName String
    Dictionary name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attributeRightName String
    Attribute name, only required when attribute_right_value_type is AdvancedDictionaryAttribute
    attributeRightValue String
    Attribute value, only required when attribute_right_value_type is AttributeValue
    attributeRightValueType String
    Advanced attribute value type

    • Choices: AdvancedDictionaryAttribute, AttributeValue

    Import

    $ pulumi import ise:networkaccess/authorizationProfile:AuthorizationProfile example "76d24097-41c4-4558-a4d0-a8c07ac08470"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ise pulumi/pulumi-ise
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ise Terraform Provider.
    ise logo
    Cisco ISE v0.1.4 published on Friday, May 31, 2024 by Pulumi