ise.networkaccess.AuthorizationProfile
Explore with Pulumi AI
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=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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<AuthorizationProfile Advanced Attribute> 
- List of advanced attributes
- AgentlessPosture bool
- Agentless Posture.
- AirespaceAcl string
- Airespace ACL
- AirespaceIpv6Acl string
- Airespace IPv6 ACL
- AsaVpn string
- ASA VPN
- AutoSmart stringPort 
- Auto smart port
- AvcProfile string
- AVC profile
- DaclName string
- DACL name
- Description string
- Description
- EasywiredSession boolCandidate 
- Easy wired session candidate - Default value: false
- InterfaceTemplate string
- Interface template
- Ipv6AclFilter string
- IPv6 ACL
- Ipv6DaclName string
- IPv6 DACL name
- MacSec stringPolicy 
- 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
- VlanName stringId 
- Vlan name or ID
- VlanTag intId 
- Vlan tag ID - Range: 0-31
- VoiceDomain boolPermission 
- Voice domain permission - Default value: false
- WebAuth bool
- Web authentication (local) - Default value: false
- WebRedirection stringAcl 
- Web redirection ACL
- WebRedirection boolDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- WebRedirection stringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- WebRedirection stringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- WebRedirection stringType 
- 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 []AuthorizationProfile Advanced Attribute Args 
- List of advanced attributes
- AgentlessPosture bool
- Agentless Posture.
- AirespaceAcl string
- Airespace ACL
- AirespaceIpv6Acl string
- Airespace IPv6 ACL
- AsaVpn string
- ASA VPN
- AutoSmart stringPort 
- Auto smart port
- AvcProfile string
- AVC profile
- DaclName string
- DACL name
- Description string
- Description
- EasywiredSession boolCandidate 
- Easy wired session candidate - Default value: false
- InterfaceTemplate string
- Interface template
- Ipv6AclFilter string
- IPv6 ACL
- Ipv6DaclName string
- IPv6 DACL name
- MacSec stringPolicy 
- 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
- VlanName stringId 
- Vlan name or ID
- VlanTag intId 
- Vlan tag ID - Range: 0-31
- VoiceDomain boolPermission 
- Voice domain permission - Default value: false
- WebAuth bool
- Web authentication (local) - Default value: false
- WebRedirection stringAcl 
- Web redirection ACL
- WebRedirection boolDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- WebRedirection stringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- WebRedirection stringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- WebRedirection stringType 
- 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<AuthorizationProfile Advanced Attribute> 
- List of advanced attributes
- agentlessPosture Boolean
- Agentless Posture.
- airespaceAcl String
- Airespace ACL
- airespaceIpv6Acl String
- Airespace IPv6 ACL
- asaVpn String
- ASA VPN
- autoSmart StringPort 
- Auto smart port
- avcProfile String
- AVC profile
- daclName String
- DACL name
- description String
- Description
- easywiredSession BooleanCandidate 
- Easy wired session candidate - Default value: false
- interfaceTemplate String
- Interface template
- ipv6AclFilter String
- IPv6 ACL
- ipv6DaclName String
- IPv6 DACL name
- macSec StringPolicy 
- 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
- vlanName StringId 
- Vlan name or ID
- vlanTag IntegerId 
- Vlan tag ID - Range: 0-31
- voiceDomain BooleanPermission 
- Voice domain permission - Default value: false
- webAuth Boolean
- Web authentication (local) - Default value: false
- webRedirection StringAcl 
- Web redirection ACL
- webRedirection BooleanDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- webRedirection StringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- webRedirection StringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- webRedirection StringType 
- 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 AuthorizationProfile Advanced Attribute[] 
- List of advanced attributes
- agentlessPosture boolean
- Agentless Posture.
- airespaceAcl string
- Airespace ACL
- airespaceIpv6Acl string
- Airespace IPv6 ACL
- asaVpn string
- ASA VPN
- autoSmart stringPort 
- Auto smart port
- avcProfile string
- AVC profile
- daclName string
- DACL name
- description string
- Description
- easywiredSession booleanCandidate 
- Easy wired session candidate - Default value: false
- interfaceTemplate string
- Interface template
- ipv6AclFilter string
- IPv6 ACL
- ipv6DaclName string
- IPv6 DACL name
- macSec stringPolicy 
- 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
- vlanName stringId 
- Vlan name or ID
- vlanTag numberId 
- Vlan tag ID - Range: 0-31
- voiceDomain booleanPermission 
- Voice domain permission - Default value: false
- webAuth boolean
- Web authentication (local) - Default value: false
- webRedirection stringAcl 
- Web redirection ACL
- webRedirection booleanDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- webRedirection stringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- webRedirection stringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- webRedirection stringType 
- 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[AuthorizationProfile Advanced Attribute Args] 
- List of advanced attributes
- agentless_posture bool
- Agentless Posture.
- airespace_acl str
- Airespace ACL
- airespace_ipv6_ stracl 
- Airespace IPv6 ACL
- asa_vpn str
- ASA VPN
- auto_smart_ strport 
- Auto smart port
- avc_profile str
- AVC profile
- dacl_name str
- DACL name
- description str
- Description
- easywired_session_ boolcandidate 
- Easy wired session candidate - Default value: false
- interface_template str
- Interface template
- ipv6_acl_ strfilter 
- IPv6 ACL
- ipv6_dacl_ strname 
- IPv6 DACL name
- mac_sec_ strpolicy 
- 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_ strid 
- Vlan name or ID
- vlan_tag_ intid 
- Vlan tag ID - Range: 0-31
- voice_domain_ boolpermission 
- Voice domain permission - Default value: false
- web_auth bool
- Web authentication (local) - Default value: false
- web_redirection_ stracl 
- Web redirection ACL
- web_redirection_ booldisplay_ certificates_ renewal_ messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- web_redirection_ strportal_ name 
- A portal that exist in the DB and fits the web_redirection_type
- web_redirection_ strstatic_ ip_ host_ name_ fqdn 
- IP, hostname or FQDN
- web_redirection_ strtype 
- 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
- autoSmart StringPort 
- Auto smart port
- avcProfile String
- AVC profile
- daclName String
- DACL name
- description String
- Description
- easywiredSession BooleanCandidate 
- Easy wired session candidate - Default value: false
- interfaceTemplate String
- Interface template
- ipv6AclFilter String
- IPv6 ACL
- ipv6DaclName String
- IPv6 DACL name
- macSec StringPolicy 
- 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
- vlanName StringId 
- Vlan name or ID
- vlanTag NumberId 
- Vlan tag ID - Range: 0-31
- voiceDomain BooleanPermission 
- Voice domain permission - Default value: false
- webAuth Boolean
- Web authentication (local) - Default value: false
- webRedirection StringAcl 
- Web redirection ACL
- webRedirection BooleanDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- webRedirection StringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- webRedirection StringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- webRedirection StringType 
- 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) -> AuthorizationProfilefunc 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)resources:  _:    type: ise:networkaccess:AuthorizationProfile    get:      id: ${id}- 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.
- AccessType string
- Access type - Choices: ACCESS_ACCEPT,ACCESS_REJECT- Default value:ACCESS_ACCEPT
- Acl string
- ACL
- AdvancedAttributes List<AuthorizationProfile Advanced Attribute> 
- List of advanced attributes
- AgentlessPosture bool
- Agentless Posture.
- AirespaceAcl string
- Airespace ACL
- AirespaceIpv6Acl string
- Airespace IPv6 ACL
- AsaVpn string
- ASA VPN
- AutoSmart stringPort 
- Auto smart port
- AvcProfile string
- AVC profile
- DaclName string
- DACL name
- Description string
- Description
- EasywiredSession boolCandidate 
- Easy wired session candidate - Default value: false
- InterfaceTemplate string
- Interface template
- Ipv6AclFilter string
- IPv6 ACL
- Ipv6DaclName string
- IPv6 DACL name
- MacSec stringPolicy 
- 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
- VlanName stringId 
- Vlan name or ID
- VlanTag intId 
- Vlan tag ID - Range: 0-31
- VoiceDomain boolPermission 
- Voice domain permission - Default value: false
- WebAuth bool
- Web authentication (local) - Default value: false
- WebRedirection stringAcl 
- Web redirection ACL
- WebRedirection boolDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- WebRedirection stringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- WebRedirection stringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- WebRedirection stringType 
- 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 []AuthorizationProfile Advanced Attribute Args 
- List of advanced attributes
- AgentlessPosture bool
- Agentless Posture.
- AirespaceAcl string
- Airespace ACL
- AirespaceIpv6Acl string
- Airespace IPv6 ACL
- AsaVpn string
- ASA VPN
- AutoSmart stringPort 
- Auto smart port
- AvcProfile string
- AVC profile
- DaclName string
- DACL name
- Description string
- Description
- EasywiredSession boolCandidate 
- Easy wired session candidate - Default value: false
- InterfaceTemplate string
- Interface template
- Ipv6AclFilter string
- IPv6 ACL
- Ipv6DaclName string
- IPv6 DACL name
- MacSec stringPolicy 
- 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
- VlanName stringId 
- Vlan name or ID
- VlanTag intId 
- Vlan tag ID - Range: 0-31
- VoiceDomain boolPermission 
- Voice domain permission - Default value: false
- WebAuth bool
- Web authentication (local) - Default value: false
- WebRedirection stringAcl 
- Web redirection ACL
- WebRedirection boolDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- WebRedirection stringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- WebRedirection stringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- WebRedirection stringType 
- 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<AuthorizationProfile Advanced Attribute> 
- List of advanced attributes
- agentlessPosture Boolean
- Agentless Posture.
- airespaceAcl String
- Airespace ACL
- airespaceIpv6Acl String
- Airespace IPv6 ACL
- asaVpn String
- ASA VPN
- autoSmart StringPort 
- Auto smart port
- avcProfile String
- AVC profile
- daclName String
- DACL name
- description String
- Description
- easywiredSession BooleanCandidate 
- Easy wired session candidate - Default value: false
- interfaceTemplate String
- Interface template
- ipv6AclFilter String
- IPv6 ACL
- ipv6DaclName String
- IPv6 DACL name
- macSec StringPolicy 
- 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
- vlanName StringId 
- Vlan name or ID
- vlanTag IntegerId 
- Vlan tag ID - Range: 0-31
- voiceDomain BooleanPermission 
- Voice domain permission - Default value: false
- webAuth Boolean
- Web authentication (local) - Default value: false
- webRedirection StringAcl 
- Web redirection ACL
- webRedirection BooleanDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- webRedirection StringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- webRedirection StringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- webRedirection StringType 
- 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 AuthorizationProfile Advanced Attribute[] 
- List of advanced attributes
- agentlessPosture boolean
- Agentless Posture.
- airespaceAcl string
- Airespace ACL
- airespaceIpv6Acl string
- Airespace IPv6 ACL
- asaVpn string
- ASA VPN
- autoSmart stringPort 
- Auto smart port
- avcProfile string
- AVC profile
- daclName string
- DACL name
- description string
- Description
- easywiredSession booleanCandidate 
- Easy wired session candidate - Default value: false
- interfaceTemplate string
- Interface template
- ipv6AclFilter string
- IPv6 ACL
- ipv6DaclName string
- IPv6 DACL name
- macSec stringPolicy 
- 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
- vlanName stringId 
- Vlan name or ID
- vlanTag numberId 
- Vlan tag ID - Range: 0-31
- voiceDomain booleanPermission 
- Voice domain permission - Default value: false
- webAuth boolean
- Web authentication (local) - Default value: false
- webRedirection stringAcl 
- Web redirection ACL
- webRedirection booleanDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- webRedirection stringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- webRedirection stringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- webRedirection stringType 
- 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[AuthorizationProfile Advanced Attribute Args] 
- List of advanced attributes
- agentless_posture bool
- Agentless Posture.
- airespace_acl str
- Airespace ACL
- airespace_ipv6_ stracl 
- Airespace IPv6 ACL
- asa_vpn str
- ASA VPN
- auto_smart_ strport 
- Auto smart port
- avc_profile str
- AVC profile
- dacl_name str
- DACL name
- description str
- Description
- easywired_session_ boolcandidate 
- Easy wired session candidate - Default value: false
- interface_template str
- Interface template
- ipv6_acl_ strfilter 
- IPv6 ACL
- ipv6_dacl_ strname 
- IPv6 DACL name
- mac_sec_ strpolicy 
- 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_ strid 
- Vlan name or ID
- vlan_tag_ intid 
- Vlan tag ID - Range: 0-31
- voice_domain_ boolpermission 
- Voice domain permission - Default value: false
- web_auth bool
- Web authentication (local) - Default value: false
- web_redirection_ stracl 
- Web redirection ACL
- web_redirection_ booldisplay_ certificates_ renewal_ messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- web_redirection_ strportal_ name 
- A portal that exist in the DB and fits the web_redirection_type
- web_redirection_ strstatic_ ip_ host_ name_ fqdn 
- IP, hostname or FQDN
- web_redirection_ strtype 
- 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
- autoSmart StringPort 
- Auto smart port
- avcProfile String
- AVC profile
- daclName String
- DACL name
- description String
- Description
- easywiredSession BooleanCandidate 
- Easy wired session candidate - Default value: false
- interfaceTemplate String
- Interface template
- ipv6AclFilter String
- IPv6 ACL
- ipv6DaclName String
- IPv6 DACL name
- macSec StringPolicy 
- 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
- vlanName StringId 
- Vlan name or ID
- vlanTag NumberId 
- Vlan tag ID - Range: 0-31
- voiceDomain BooleanPermission 
- Voice domain permission - Default value: false
- webAuth Boolean
- Web authentication (local) - Default value: false
- webRedirection StringAcl 
- Web redirection ACL
- webRedirection BooleanDisplay Certificates Renewal Messages 
- This attribute is mandatory when web_redirection_typevalue isCentralizedWebAuth. For all otherweb_redirection_typevalues the field must be ignored.
- webRedirection StringPortal Name 
- A portal that exist in the DB and fits the web_redirection_type
- webRedirection StringStatic Ip Host Name Fqdn 
- IP, hostname or FQDN
- webRedirection StringType 
- This type must fit the web_redirection_portal_name- Choices:CentralizedWebAuth,HotSpot,NativeSupplicanProvisioning,ClientProvisioning
Supporting Types
AuthorizationProfileAdvancedAttribute, AuthorizationProfileAdvancedAttributeArgs        
- AttributeLeft stringDictionary Name 
- Dictionary name
- AttributeLeft stringName 
- Attribute name
- AttributeRight stringDictionary Name 
- Dictionary name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- AttributeRight stringName 
- Attribute name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- AttributeRight stringValue 
- Attribute value, only required when attribute_right_value_typeisAttributeValue
- AttributeRight stringValue Type 
- Advanced attribute value type- Choices: AdvancedDictionaryAttribute,AttributeValue
 
- Choices: 
- AttributeLeft stringDictionary Name 
- Dictionary name
- AttributeLeft stringName 
- Attribute name
- AttributeRight stringDictionary Name 
- Dictionary name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- AttributeRight stringName 
- Attribute name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- AttributeRight stringValue 
- Attribute value, only required when attribute_right_value_typeisAttributeValue
- AttributeRight stringValue Type 
- Advanced attribute value type- Choices: AdvancedDictionaryAttribute,AttributeValue
 
- Choices: 
- attributeLeft StringDictionary Name 
- Dictionary name
- attributeLeft StringName 
- Attribute name
- attributeRight StringDictionary Name 
- Dictionary name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attributeRight StringName 
- Attribute name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attributeRight StringValue 
- Attribute value, only required when attribute_right_value_typeisAttributeValue
- attributeRight StringValue Type 
- Advanced attribute value type- Choices: AdvancedDictionaryAttribute,AttributeValue
 
- Choices: 
- attributeLeft stringDictionary Name 
- Dictionary name
- attributeLeft stringName 
- Attribute name
- attributeRight stringDictionary Name 
- Dictionary name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attributeRight stringName 
- Attribute name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attributeRight stringValue 
- Attribute value, only required when attribute_right_value_typeisAttributeValue
- attributeRight stringValue Type 
- Advanced attribute value type- Choices: AdvancedDictionaryAttribute,AttributeValue
 
- Choices: 
- attribute_left_ strdictionary_ name 
- Dictionary name
- attribute_left_ strname 
- Attribute name
- attribute_right_ strdictionary_ name 
- Dictionary name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attribute_right_ strname 
- Attribute name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attribute_right_ strvalue 
- Attribute value, only required when attribute_right_value_typeisAttributeValue
- attribute_right_ strvalue_ type 
- Advanced attribute value type- Choices: AdvancedDictionaryAttribute,AttributeValue
 
- Choices: 
- attributeLeft StringDictionary Name 
- Dictionary name
- attributeLeft StringName 
- Attribute name
- attributeRight StringDictionary Name 
- Dictionary name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attributeRight StringName 
- Attribute name, only required when attribute_right_value_typeisAdvancedDictionaryAttribute
- attributeRight StringValue 
- Attribute value, only required when attribute_right_value_typeisAttributeValue
- attributeRight StringValue Type 
- Advanced attribute value type- Choices: AdvancedDictionaryAttribute,AttributeValue
 
- Choices: 
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 iseTerraform Provider.
