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:
- Access
Type string - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- Acl string
- ACL
- Advanced
Attributes List<AuthorizationProfile Advanced Attribute> - List of advanced attributes
- Agentless
Posture bool - Agentless Posture.
- Airespace
Acl string - Airespace ACL
- Airespace
Ipv6Acl string - Airespace IPv6 ACL
- Asa
Vpn string - ASA VPN
- Auto
Smart stringPort - Auto smart port
- Avc
Profile string - AVC profile
- Dacl
Name string - DACL name
- Description string
- Description
- Easywired
Session boolCandidate - Easy wired session candidate - Default value:
false
- Interface
Template string - Interface template
- Ipv6Acl
Filter string - IPv6 ACL
- Ipv6Dacl
Name string - IPv6 DACL name
- Mac
Sec 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
- Profile
Name string - Value needs to be an existing Network Device Profile - Default value:
Cisco
- Reauthentication
Connectivity string - 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 string - Unique identifier
- Vlan
Name stringId - 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 stringAcl - Web redirection ACL
- Web
Redirection boolDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - Web
Redirection stringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- Web
Redirection stringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- Web
Redirection stringType - This type must fit the
web_redirection_portal_name
- Choices:CentralizedWebAuth
,HotSpot
,NativeSupplicanProvisioning
,ClientProvisioning
- Access
Type string - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- Acl string
- ACL
- Advanced
Attributes []AuthorizationProfile Advanced Attribute Args - List of advanced attributes
- Agentless
Posture bool - Agentless Posture.
- Airespace
Acl string - Airespace ACL
- Airespace
Ipv6Acl string - Airespace IPv6 ACL
- Asa
Vpn string - ASA VPN
- Auto
Smart stringPort - Auto smart port
- Avc
Profile string - AVC profile
- Dacl
Name string - DACL name
- Description string
- Description
- Easywired
Session boolCandidate - Easy wired session candidate - Default value:
false
- Interface
Template string - Interface template
- Ipv6Acl
Filter string - IPv6 ACL
- Ipv6Dacl
Name string - IPv6 DACL name
- Mac
Sec 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
- Profile
Name string - Value needs to be an existing Network Device Profile - Default value:
Cisco
- Reauthentication
Connectivity string - 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 string - Unique identifier
- Vlan
Name stringId - 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 stringAcl - Web redirection ACL
- Web
Redirection boolDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - Web
Redirection stringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- Web
Redirection stringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- Web
Redirection stringType - This type must fit the
web_redirection_portal_name
- Choices:CentralizedWebAuth
,HotSpot
,NativeSupplicanProvisioning
,ClientProvisioning
- access
Type String - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- acl String
- ACL
- advanced
Attributes List<AuthorizationProfile Advanced Attribute> - List of advanced attributes
- agentless
Posture Boolean - Agentless Posture.
- airespace
Acl String - Airespace ACL
- airespace
Ipv6Acl String - Airespace IPv6 ACL
- asa
Vpn String - ASA VPN
- auto
Smart StringPort - Auto smart port
- avc
Profile String - AVC profile
- dacl
Name String - DACL name
- description String
- Description
- easywired
Session BooleanCandidate - Easy wired session candidate - Default value:
false
- interface
Template String - Interface template
- ipv6Acl
Filter String - IPv6 ACL
- ipv6Dacl
Name String - IPv6 DACL name
- mac
Sec 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
- profile
Name String - Value needs to be an existing Network Device Profile - Default value:
Cisco
- reauthentication
Connectivity String - Maintain Connectivity During Reauthentication - Choices:
DEFAULT
,RADIUS_REQUEST
- reauthentication
Timer Integer - Reauthentication timer - Range:
1
-65535
- service
Template Boolean - Service template - Default value:
false
- track
Movement Boolean - Track movement - Default value:
false
- unique
Identifier String - Unique identifier
- vlan
Name StringId - Vlan name or ID
- vlan
Tag IntegerId - Vlan tag ID - Range:
0
-31
- voice
Domain BooleanPermission - Voice domain permission - Default value:
false
- web
Auth Boolean - Web authentication (local) - Default value:
false
- web
Redirection StringAcl - Web redirection ACL
- web
Redirection BooleanDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - web
Redirection StringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- web
Redirection StringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- web
Redirection StringType - This type must fit the
web_redirection_portal_name
- Choices:CentralizedWebAuth
,HotSpot
,NativeSupplicanProvisioning
,ClientProvisioning
- access
Type string - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- acl string
- ACL
- advanced
Attributes AuthorizationProfile Advanced Attribute[] - List of advanced attributes
- agentless
Posture boolean - Agentless Posture.
- airespace
Acl string - Airespace ACL
- airespace
Ipv6Acl string - Airespace IPv6 ACL
- asa
Vpn string - ASA VPN
- auto
Smart stringPort - Auto smart port
- avc
Profile string - AVC profile
- dacl
Name string - DACL name
- description string
- Description
- easywired
Session booleanCandidate - Easy wired session candidate - Default value:
false
- interface
Template string - Interface template
- ipv6Acl
Filter string - IPv6 ACL
- ipv6Dacl
Name string - IPv6 DACL name
- mac
Sec 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
- profile
Name string - Value needs to be an existing Network Device Profile - Default value:
Cisco
- reauthentication
Connectivity string - Maintain Connectivity During Reauthentication - Choices:
DEFAULT
,RADIUS_REQUEST
- reauthentication
Timer number - Reauthentication timer - Range:
1
-65535
- service
Template boolean - Service template - Default value:
false
- track
Movement boolean - Track movement - Default value:
false
- unique
Identifier string - Unique identifier
- vlan
Name stringId - Vlan name or ID
- vlan
Tag numberId - Vlan tag ID - Range:
0
-31
- voice
Domain booleanPermission - Voice domain permission - Default value:
false
- web
Auth boolean - Web authentication (local) - Default value:
false
- web
Redirection stringAcl - Web redirection ACL
- web
Redirection booleanDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - web
Redirection stringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- web
Redirection stringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- web
Redirection 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_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values 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
- access
Type String - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- acl String
- ACL
- advanced
Attributes List<Property Map> - List of advanced attributes
- agentless
Posture Boolean - Agentless Posture.
- airespace
Acl String - Airespace ACL
- airespace
Ipv6Acl String - Airespace IPv6 ACL
- asa
Vpn String - ASA VPN
- auto
Smart StringPort - Auto smart port
- avc
Profile String - AVC profile
- dacl
Name String - DACL name
- description String
- Description
- easywired
Session BooleanCandidate - Easy wired session candidate - Default value:
false
- interface
Template String - Interface template
- ipv6Acl
Filter String - IPv6 ACL
- ipv6Dacl
Name String - IPv6 DACL name
- mac
Sec 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
- profile
Name String - Value needs to be an existing Network Device Profile - Default value:
Cisco
- reauthentication
Connectivity String - Maintain Connectivity During Reauthentication - Choices:
DEFAULT
,RADIUS_REQUEST
- reauthentication
Timer Number - Reauthentication timer - Range:
1
-65535
- service
Template Boolean - Service template - Default value:
false
- track
Movement Boolean - Track movement - Default value:
false
- unique
Identifier String - Unique identifier
- vlan
Name StringId - Vlan name or ID
- vlan
Tag NumberId - Vlan tag ID - Range:
0
-31
- voice
Domain BooleanPermission - Voice domain permission - Default value:
false
- web
Auth Boolean - Web authentication (local) - Default value:
false
- web
Redirection StringAcl - Web redirection ACL
- web
Redirection BooleanDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - web
Redirection StringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- web
Redirection StringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- web
Redirection 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) -> 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.
- Access
Type string - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- Acl string
- ACL
- Advanced
Attributes List<AuthorizationProfile Advanced Attribute> - List of advanced attributes
- Agentless
Posture bool - Agentless Posture.
- Airespace
Acl string - Airespace ACL
- Airespace
Ipv6Acl string - Airespace IPv6 ACL
- Asa
Vpn string - ASA VPN
- Auto
Smart stringPort - Auto smart port
- Avc
Profile string - AVC profile
- Dacl
Name string - DACL name
- Description string
- Description
- Easywired
Session boolCandidate - Easy wired session candidate - Default value:
false
- Interface
Template string - Interface template
- Ipv6Acl
Filter string - IPv6 ACL
- Ipv6Dacl
Name string - IPv6 DACL name
- Mac
Sec 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
- Profile
Name string - Value needs to be an existing Network Device Profile - Default value:
Cisco
- Reauthentication
Connectivity string - 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 string - Unique identifier
- Vlan
Name stringId - 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 stringAcl - Web redirection ACL
- Web
Redirection boolDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - Web
Redirection stringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- Web
Redirection stringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- Web
Redirection stringType - This type must fit the
web_redirection_portal_name
- Choices:CentralizedWebAuth
,HotSpot
,NativeSupplicanProvisioning
,ClientProvisioning
- Access
Type string - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- Acl string
- ACL
- Advanced
Attributes []AuthorizationProfile Advanced Attribute Args - List of advanced attributes
- Agentless
Posture bool - Agentless Posture.
- Airespace
Acl string - Airespace ACL
- Airespace
Ipv6Acl string - Airespace IPv6 ACL
- Asa
Vpn string - ASA VPN
- Auto
Smart stringPort - Auto smart port
- Avc
Profile string - AVC profile
- Dacl
Name string - DACL name
- Description string
- Description
- Easywired
Session boolCandidate - Easy wired session candidate - Default value:
false
- Interface
Template string - Interface template
- Ipv6Acl
Filter string - IPv6 ACL
- Ipv6Dacl
Name string - IPv6 DACL name
- Mac
Sec 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
- Profile
Name string - Value needs to be an existing Network Device Profile - Default value:
Cisco
- Reauthentication
Connectivity string - 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 string - Unique identifier
- Vlan
Name stringId - 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 stringAcl - Web redirection ACL
- Web
Redirection boolDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - Web
Redirection stringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- Web
Redirection stringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- Web
Redirection stringType - This type must fit the
web_redirection_portal_name
- Choices:CentralizedWebAuth
,HotSpot
,NativeSupplicanProvisioning
,ClientProvisioning
- access
Type String - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- acl String
- ACL
- advanced
Attributes List<AuthorizationProfile Advanced Attribute> - List of advanced attributes
- agentless
Posture Boolean - Agentless Posture.
- airespace
Acl String - Airespace ACL
- airespace
Ipv6Acl String - Airespace IPv6 ACL
- asa
Vpn String - ASA VPN
- auto
Smart StringPort - Auto smart port
- avc
Profile String - AVC profile
- dacl
Name String - DACL name
- description String
- Description
- easywired
Session BooleanCandidate - Easy wired session candidate - Default value:
false
- interface
Template String - Interface template
- ipv6Acl
Filter String - IPv6 ACL
- ipv6Dacl
Name String - IPv6 DACL name
- mac
Sec 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
- profile
Name String - Value needs to be an existing Network Device Profile - Default value:
Cisco
- reauthentication
Connectivity String - Maintain Connectivity During Reauthentication - Choices:
DEFAULT
,RADIUS_REQUEST
- reauthentication
Timer Integer - Reauthentication timer - Range:
1
-65535
- service
Template Boolean - Service template - Default value:
false
- track
Movement Boolean - Track movement - Default value:
false
- unique
Identifier String - Unique identifier
- vlan
Name StringId - Vlan name or ID
- vlan
Tag IntegerId - Vlan tag ID - Range:
0
-31
- voice
Domain BooleanPermission - Voice domain permission - Default value:
false
- web
Auth Boolean - Web authentication (local) - Default value:
false
- web
Redirection StringAcl - Web redirection ACL
- web
Redirection BooleanDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - web
Redirection StringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- web
Redirection StringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- web
Redirection StringType - This type must fit the
web_redirection_portal_name
- Choices:CentralizedWebAuth
,HotSpot
,NativeSupplicanProvisioning
,ClientProvisioning
- access
Type string - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- acl string
- ACL
- advanced
Attributes AuthorizationProfile Advanced Attribute[] - List of advanced attributes
- agentless
Posture boolean - Agentless Posture.
- airespace
Acl string - Airespace ACL
- airespace
Ipv6Acl string - Airespace IPv6 ACL
- asa
Vpn string - ASA VPN
- auto
Smart stringPort - Auto smart port
- avc
Profile string - AVC profile
- dacl
Name string - DACL name
- description string
- Description
- easywired
Session booleanCandidate - Easy wired session candidate - Default value:
false
- interface
Template string - Interface template
- ipv6Acl
Filter string - IPv6 ACL
- ipv6Dacl
Name string - IPv6 DACL name
- mac
Sec 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
- profile
Name string - Value needs to be an existing Network Device Profile - Default value:
Cisco
- reauthentication
Connectivity string - Maintain Connectivity During Reauthentication - Choices:
DEFAULT
,RADIUS_REQUEST
- reauthentication
Timer number - Reauthentication timer - Range:
1
-65535
- service
Template boolean - Service template - Default value:
false
- track
Movement boolean - Track movement - Default value:
false
- unique
Identifier string - Unique identifier
- vlan
Name stringId - Vlan name or ID
- vlan
Tag numberId - Vlan tag ID - Range:
0
-31
- voice
Domain booleanPermission - Voice domain permission - Default value:
false
- web
Auth boolean - Web authentication (local) - Default value:
false
- web
Redirection stringAcl - Web redirection ACL
- web
Redirection booleanDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - web
Redirection stringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- web
Redirection stringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- web
Redirection 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_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values 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
- access
Type String - Access type - Choices:
ACCESS_ACCEPT
,ACCESS_REJECT
- Default value:ACCESS_ACCEPT
- acl String
- ACL
- advanced
Attributes List<Property Map> - List of advanced attributes
- agentless
Posture Boolean - Agentless Posture.
- airespace
Acl String - Airespace ACL
- airespace
Ipv6Acl String - Airespace IPv6 ACL
- asa
Vpn String - ASA VPN
- auto
Smart StringPort - Auto smart port
- avc
Profile String - AVC profile
- dacl
Name String - DACL name
- description String
- Description
- easywired
Session BooleanCandidate - Easy wired session candidate - Default value:
false
- interface
Template String - Interface template
- ipv6Acl
Filter String - IPv6 ACL
- ipv6Dacl
Name String - IPv6 DACL name
- mac
Sec 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
- profile
Name String - Value needs to be an existing Network Device Profile - Default value:
Cisco
- reauthentication
Connectivity String - Maintain Connectivity During Reauthentication - Choices:
DEFAULT
,RADIUS_REQUEST
- reauthentication
Timer Number - Reauthentication timer - Range:
1
-65535
- service
Template Boolean - Service template - Default value:
false
- track
Movement Boolean - Track movement - Default value:
false
- unique
Identifier String - Unique identifier
- vlan
Name StringId - Vlan name or ID
- vlan
Tag NumberId - Vlan tag ID - Range:
0
-31
- voice
Domain BooleanPermission - Voice domain permission - Default value:
false
- web
Auth Boolean - Web authentication (local) - Default value:
false
- web
Redirection StringAcl - Web redirection ACL
- web
Redirection BooleanDisplay Certificates Renewal Messages - This attribute is mandatory when
web_redirection_type
value isCentralizedWebAuth
. For all otherweb_redirection_type
values the field must be ignored. - web
Redirection StringPortal Name - A portal that exist in the DB and fits the
web_redirection_type
- web
Redirection StringStatic Ip Host Name Fqdn - IP, hostname or FQDN
- web
Redirection StringType - This type must fit the
web_redirection_portal_name
- Choices:CentralizedWebAuth
,HotSpot
,NativeSupplicanProvisioning
,ClientProvisioning
Supporting Types
AuthorizationProfileAdvancedAttribute, AuthorizationProfileAdvancedAttributeArgs
- Attribute
Left stringDictionary Name - Dictionary name
- Attribute
Left stringName - Attribute name
- Attribute
Right stringDictionary Name - Dictionary name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- Attribute
Right stringName - Attribute name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- Attribute
Right stringValue - Attribute value, only required when
attribute_right_value_type
isAttributeValue
- Attribute
Right stringValue Type - Advanced attribute value type
- Choices:
AdvancedDictionaryAttribute
,AttributeValue
- Choices:
- Attribute
Left stringDictionary Name - Dictionary name
- Attribute
Left stringName - Attribute name
- Attribute
Right stringDictionary Name - Dictionary name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- Attribute
Right stringName - Attribute name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- Attribute
Right stringValue - Attribute value, only required when
attribute_right_value_type
isAttributeValue
- Attribute
Right stringValue Type - Advanced attribute value type
- Choices:
AdvancedDictionaryAttribute
,AttributeValue
- Choices:
- attribute
Left StringDictionary Name - Dictionary name
- attribute
Left StringName - Attribute name
- attribute
Right StringDictionary Name - Dictionary name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- attribute
Right StringName - Attribute name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- attribute
Right StringValue - Attribute value, only required when
attribute_right_value_type
isAttributeValue
- attribute
Right StringValue Type - Advanced attribute value type
- Choices:
AdvancedDictionaryAttribute
,AttributeValue
- Choices:
- attribute
Left stringDictionary Name - Dictionary name
- attribute
Left stringName - Attribute name
- attribute
Right stringDictionary Name - Dictionary name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- attribute
Right stringName - Attribute name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- attribute
Right stringValue - Attribute value, only required when
attribute_right_value_type
isAttributeValue
- attribute
Right 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_type
isAdvancedDictionaryAttribute
- attribute_
right_ strname - Attribute name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- attribute_
right_ strvalue - Attribute value, only required when
attribute_right_value_type
isAttributeValue
- attribute_
right_ strvalue_ type - Advanced attribute value type
- Choices:
AdvancedDictionaryAttribute
,AttributeValue
- Choices:
- attribute
Left StringDictionary Name - Dictionary name
- attribute
Left StringName - Attribute name
- attribute
Right StringDictionary Name - Dictionary name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- attribute
Right StringName - Attribute name, only required when
attribute_right_value_type
isAdvancedDictionaryAttribute
- attribute
Right StringValue - Attribute value, only required when
attribute_right_value_type
isAttributeValue
- attribute
Right 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
ise
Terraform Provider.