ise.identitymanagement.Endpoint
Explore with Pulumi AI
This resource can manage an Endpoint.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = new ise.identitymanagement.Endpoint("example", {
    name: "00:11:22:33:44:55",
    description: "My endpoint",
    mac: "00:11:22:33:44:55",
    groupId: "3a88eec0-8c00-11e6-996c-525400b48521",
    profileId: "3a91a150-8c00-11e6-996c-525400b48521",
    staticProfileAssignment: true,
    staticProfileAssignmentDefined: true,
    staticGroupAssignment: true,
    staticGroupAssignmentDefined: true,
});
import pulumi
import pulumi_ise as ise
example = ise.identitymanagement.Endpoint("example",
    name="00:11:22:33:44:55",
    description="My endpoint",
    mac="00:11:22:33:44:55",
    group_id="3a88eec0-8c00-11e6-996c-525400b48521",
    profile_id="3a91a150-8c00-11e6-996c-525400b48521",
    static_profile_assignment=True,
    static_profile_assignment_defined=True,
    static_group_assignment=True,
    static_group_assignment_defined=True)
package main
import (
	"github.com/pulumi/pulumi-ise/sdk/go/ise/identitymanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := identitymanagement.NewEndpoint(ctx, "example", &identitymanagement.EndpointArgs{
			Name:                           pulumi.String("00:11:22:33:44:55"),
			Description:                    pulumi.String("My endpoint"),
			Mac:                            pulumi.String("00:11:22:33:44:55"),
			GroupId:                        pulumi.String("3a88eec0-8c00-11e6-996c-525400b48521"),
			ProfileId:                      pulumi.String("3a91a150-8c00-11e6-996c-525400b48521"),
			StaticProfileAssignment:        pulumi.Bool(true),
			StaticProfileAssignmentDefined: pulumi.Bool(true),
			StaticGroupAssignment:          pulumi.Bool(true),
			StaticGroupAssignmentDefined:   pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ise = Pulumi.Ise;
return await Deployment.RunAsync(() => 
{
    var example = new Ise.IdentityManagement.Endpoint("example", new()
    {
        Name = "00:11:22:33:44:55",
        Description = "My endpoint",
        Mac = "00:11:22:33:44:55",
        GroupId = "3a88eec0-8c00-11e6-996c-525400b48521",
        ProfileId = "3a91a150-8c00-11e6-996c-525400b48521",
        StaticProfileAssignment = true,
        StaticProfileAssignmentDefined = true,
        StaticGroupAssignment = true,
        StaticGroupAssignmentDefined = true,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.identitymanagement.Endpoint;
import com.pulumi.ise.identitymanagement.EndpointArgs;
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 Endpoint("example", EndpointArgs.builder()
            .name("00:11:22:33:44:55")
            .description("My endpoint")
            .mac("00:11:22:33:44:55")
            .groupId("3a88eec0-8c00-11e6-996c-525400b48521")
            .profileId("3a91a150-8c00-11e6-996c-525400b48521")
            .staticProfileAssignment(true)
            .staticProfileAssignmentDefined(true)
            .staticGroupAssignment(true)
            .staticGroupAssignmentDefined(true)
            .build());
    }
}
resources:
  example:
    type: ise:identitymanagement:Endpoint
    properties:
      name: 00:11:22:33:44:55
      description: My endpoint
      mac: 00:11:22:33:44:55
      groupId: 3a88eec0-8c00-11e6-996c-525400b48521
      profileId: 3a91a150-8c00-11e6-996c-525400b48521
      staticProfileAssignment: true
      staticProfileAssignmentDefined: true
      staticGroupAssignment: true
      staticGroupAssignmentDefined: true
Create Endpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Endpoint(name: string, args: EndpointArgs, opts?: CustomResourceOptions);@overload
def Endpoint(resource_name: str,
             args: EndpointArgs,
             opts: Optional[ResourceOptions] = None)
@overload
def Endpoint(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             mac: Optional[str] = None,
             static_profile_assignment: Optional[bool] = None,
             static_group_assignment: Optional[bool] = None,
             mdm_model: Optional[str] = None,
             mdm_phone_number: Optional[str] = None,
             identity_store: Optional[str] = None,
             mdm_compliance_status: Optional[bool] = None,
             mdm_encrypted: Optional[bool] = None,
             mdm_enrolled: Optional[bool] = None,
             mdm_imei: Optional[str] = None,
             mdm_jail_broken: Optional[bool] = None,
             mdm_manufacturer: Optional[str] = None,
             custom_attributes: Optional[Mapping[str, str]] = None,
             mdm_os: Optional[str] = None,
             identity_store_id: Optional[str] = None,
             mdm_pinlock: Optional[bool] = None,
             mdm_reachable: Optional[bool] = None,
             mdm_serial: Optional[str] = None,
             mdm_server_name: Optional[str] = None,
             name: Optional[str] = None,
             portal_user: Optional[str] = None,
             profile_id: Optional[str] = None,
             group_id: Optional[str] = None,
             static_group_assignment_defined: Optional[bool] = None,
             description: Optional[str] = None,
             static_profile_assignment_defined: Optional[bool] = None)func NewEndpoint(ctx *Context, name string, args EndpointArgs, opts ...ResourceOption) (*Endpoint, error)public Endpoint(string name, EndpointArgs args, CustomResourceOptions? opts = null)
public Endpoint(String name, EndpointArgs args)
public Endpoint(String name, EndpointArgs args, CustomResourceOptions options)
type: ise:identitymanagement:Endpoint
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 EndpointArgs
- 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 EndpointArgs
- 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 EndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EndpointArgs
- 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 endpointResource = new Ise.IdentityManagement.Endpoint("endpointResource", new()
{
    Mac = "string",
    StaticProfileAssignment = false,
    StaticGroupAssignment = false,
    MdmModel = "string",
    MdmPhoneNumber = "string",
    IdentityStore = "string",
    MdmComplianceStatus = false,
    MdmEncrypted = false,
    MdmEnrolled = false,
    MdmImei = "string",
    MdmJailBroken = false,
    MdmManufacturer = "string",
    CustomAttributes = 
    {
        { "string", "string" },
    },
    MdmOs = "string",
    IdentityStoreId = "string",
    MdmPinlock = false,
    MdmReachable = false,
    MdmSerial = "string",
    MdmServerName = "string",
    Name = "string",
    PortalUser = "string",
    ProfileId = "string",
    GroupId = "string",
    StaticGroupAssignmentDefined = false,
    Description = "string",
    StaticProfileAssignmentDefined = false,
});
example, err := identitymanagement.NewEndpoint(ctx, "endpointResource", &identitymanagement.EndpointArgs{
	Mac:                     pulumi.String("string"),
	StaticProfileAssignment: pulumi.Bool(false),
	StaticGroupAssignment:   pulumi.Bool(false),
	MdmModel:                pulumi.String("string"),
	MdmPhoneNumber:          pulumi.String("string"),
	IdentityStore:           pulumi.String("string"),
	MdmComplianceStatus:     pulumi.Bool(false),
	MdmEncrypted:            pulumi.Bool(false),
	MdmEnrolled:             pulumi.Bool(false),
	MdmImei:                 pulumi.String("string"),
	MdmJailBroken:           pulumi.Bool(false),
	MdmManufacturer:         pulumi.String("string"),
	CustomAttributes: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	MdmOs:                          pulumi.String("string"),
	IdentityStoreId:                pulumi.String("string"),
	MdmPinlock:                     pulumi.Bool(false),
	MdmReachable:                   pulumi.Bool(false),
	MdmSerial:                      pulumi.String("string"),
	MdmServerName:                  pulumi.String("string"),
	Name:                           pulumi.String("string"),
	PortalUser:                     pulumi.String("string"),
	ProfileId:                      pulumi.String("string"),
	GroupId:                        pulumi.String("string"),
	StaticGroupAssignmentDefined:   pulumi.Bool(false),
	Description:                    pulumi.String("string"),
	StaticProfileAssignmentDefined: pulumi.Bool(false),
})
var endpointResource = new Endpoint("endpointResource", EndpointArgs.builder()
    .mac("string")
    .staticProfileAssignment(false)
    .staticGroupAssignment(false)
    .mdmModel("string")
    .mdmPhoneNumber("string")
    .identityStore("string")
    .mdmComplianceStatus(false)
    .mdmEncrypted(false)
    .mdmEnrolled(false)
    .mdmImei("string")
    .mdmJailBroken(false)
    .mdmManufacturer("string")
    .customAttributes(Map.of("string", "string"))
    .mdmOs("string")
    .identityStoreId("string")
    .mdmPinlock(false)
    .mdmReachable(false)
    .mdmSerial("string")
    .mdmServerName("string")
    .name("string")
    .portalUser("string")
    .profileId("string")
    .groupId("string")
    .staticGroupAssignmentDefined(false)
    .description("string")
    .staticProfileAssignmentDefined(false)
    .build());
endpoint_resource = ise.identitymanagement.Endpoint("endpointResource",
    mac="string",
    static_profile_assignment=False,
    static_group_assignment=False,
    mdm_model="string",
    mdm_phone_number="string",
    identity_store="string",
    mdm_compliance_status=False,
    mdm_encrypted=False,
    mdm_enrolled=False,
    mdm_imei="string",
    mdm_jail_broken=False,
    mdm_manufacturer="string",
    custom_attributes={
        "string": "string",
    },
    mdm_os="string",
    identity_store_id="string",
    mdm_pinlock=False,
    mdm_reachable=False,
    mdm_serial="string",
    mdm_server_name="string",
    name="string",
    portal_user="string",
    profile_id="string",
    group_id="string",
    static_group_assignment_defined=False,
    description="string",
    static_profile_assignment_defined=False)
const endpointResource = new ise.identitymanagement.Endpoint("endpointResource", {
    mac: "string",
    staticProfileAssignment: false,
    staticGroupAssignment: false,
    mdmModel: "string",
    mdmPhoneNumber: "string",
    identityStore: "string",
    mdmComplianceStatus: false,
    mdmEncrypted: false,
    mdmEnrolled: false,
    mdmImei: "string",
    mdmJailBroken: false,
    mdmManufacturer: "string",
    customAttributes: {
        string: "string",
    },
    mdmOs: "string",
    identityStoreId: "string",
    mdmPinlock: false,
    mdmReachable: false,
    mdmSerial: "string",
    mdmServerName: "string",
    name: "string",
    portalUser: "string",
    profileId: "string",
    groupId: "string",
    staticGroupAssignmentDefined: false,
    description: "string",
    staticProfileAssignmentDefined: false,
});
type: ise:identitymanagement:Endpoint
properties:
    customAttributes:
        string: string
    description: string
    groupId: string
    identityStore: string
    identityStoreId: string
    mac: string
    mdmComplianceStatus: false
    mdmEncrypted: false
    mdmEnrolled: false
    mdmImei: string
    mdmJailBroken: false
    mdmManufacturer: string
    mdmModel: string
    mdmOs: string
    mdmPhoneNumber: string
    mdmPinlock: false
    mdmReachable: false
    mdmSerial: string
    mdmServerName: string
    name: string
    portalUser: string
    profileId: string
    staticGroupAssignment: false
    staticGroupAssignmentDefined: false
    staticProfileAssignment: false
    staticProfileAssignmentDefined: false
Endpoint 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 Endpoint resource accepts the following input properties:
- Mac string
- MAC address of the endpoint
- StaticGroup boolAssignment 
- Static Group Assignment
- StaticProfile boolAssignment 
- Static Profile Assignment
- CustomAttributes Dictionary<string, string>
- Custom Attributes
- Description string
- Description
- GroupId string
- Identity Group ID
- IdentityStore string
- Identity Store
- IdentityStore stringId 
- Identity Store Id
- MdmCompliance boolStatus 
- Mdm Compliance Status
- MdmEncrypted bool
- Mdm Encrypted
- MdmEnrolled bool
- Mdm Enrolled
- MdmImei string
- Mdm IMEI
- MdmJail boolBroken 
- Mdm JailBroken
- MdmManufacturer string
- Mdm Manufacturer
- MdmModel string
- Mdm Model
- MdmOs string
- Mdm OS
- MdmPhone stringNumber 
- Mdm PhoneNumber
- MdmPinlock bool
- Mdm Pinlock
- MdmReachable bool
- Mdm Reachable
- MdmSerial string
- Mdm Serial
- MdmServer stringName 
- Mdm Server Name
- Name string
- The name of the endpoint
- PortalUser string
- Portal User
- ProfileId string
- Profile ID
- StaticGroup boolAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- StaticProfile boolAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- Mac string
- MAC address of the endpoint
- StaticGroup boolAssignment 
- Static Group Assignment
- StaticProfile boolAssignment 
- Static Profile Assignment
- CustomAttributes map[string]string
- Custom Attributes
- Description string
- Description
- GroupId string
- Identity Group ID
- IdentityStore string
- Identity Store
- IdentityStore stringId 
- Identity Store Id
- MdmCompliance boolStatus 
- Mdm Compliance Status
- MdmEncrypted bool
- Mdm Encrypted
- MdmEnrolled bool
- Mdm Enrolled
- MdmImei string
- Mdm IMEI
- MdmJail boolBroken 
- Mdm JailBroken
- MdmManufacturer string
- Mdm Manufacturer
- MdmModel string
- Mdm Model
- MdmOs string
- Mdm OS
- MdmPhone stringNumber 
- Mdm PhoneNumber
- MdmPinlock bool
- Mdm Pinlock
- MdmReachable bool
- Mdm Reachable
- MdmSerial string
- Mdm Serial
- MdmServer stringName 
- Mdm Server Name
- Name string
- The name of the endpoint
- PortalUser string
- Portal User
- ProfileId string
- Profile ID
- StaticGroup boolAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- StaticProfile boolAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- mac String
- MAC address of the endpoint
- staticGroup BooleanAssignment 
- Static Group Assignment
- staticProfile BooleanAssignment 
- Static Profile Assignment
- customAttributes Map<String,String>
- Custom Attributes
- description String
- Description
- groupId String
- Identity Group ID
- identityStore String
- Identity Store
- identityStore StringId 
- Identity Store Id
- mdmCompliance BooleanStatus 
- Mdm Compliance Status
- mdmEncrypted Boolean
- Mdm Encrypted
- mdmEnrolled Boolean
- Mdm Enrolled
- mdmImei String
- Mdm IMEI
- mdmJail BooleanBroken 
- Mdm JailBroken
- mdmManufacturer String
- Mdm Manufacturer
- mdmModel String
- Mdm Model
- mdmOs String
- Mdm OS
- mdmPhone StringNumber 
- Mdm PhoneNumber
- mdmPinlock Boolean
- Mdm Pinlock
- mdmReachable Boolean
- Mdm Reachable
- mdmSerial String
- Mdm Serial
- mdmServer StringName 
- Mdm Server Name
- name String
- The name of the endpoint
- portalUser String
- Portal User
- profileId String
- Profile ID
- staticGroup BooleanAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- staticProfile BooleanAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- mac string
- MAC address of the endpoint
- staticGroup booleanAssignment 
- Static Group Assignment
- staticProfile booleanAssignment 
- Static Profile Assignment
- customAttributes {[key: string]: string}
- Custom Attributes
- description string
- Description
- groupId string
- Identity Group ID
- identityStore string
- Identity Store
- identityStore stringId 
- Identity Store Id
- mdmCompliance booleanStatus 
- Mdm Compliance Status
- mdmEncrypted boolean
- Mdm Encrypted
- mdmEnrolled boolean
- Mdm Enrolled
- mdmImei string
- Mdm IMEI
- mdmJail booleanBroken 
- Mdm JailBroken
- mdmManufacturer string
- Mdm Manufacturer
- mdmModel string
- Mdm Model
- mdmOs string
- Mdm OS
- mdmPhone stringNumber 
- Mdm PhoneNumber
- mdmPinlock boolean
- Mdm Pinlock
- mdmReachable boolean
- Mdm Reachable
- mdmSerial string
- Mdm Serial
- mdmServer stringName 
- Mdm Server Name
- name string
- The name of the endpoint
- portalUser string
- Portal User
- profileId string
- Profile ID
- staticGroup booleanAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- staticProfile booleanAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- mac str
- MAC address of the endpoint
- static_group_ boolassignment 
- Static Group Assignment
- static_profile_ boolassignment 
- Static Profile Assignment
- custom_attributes Mapping[str, str]
- Custom Attributes
- description str
- Description
- group_id str
- Identity Group ID
- identity_store str
- Identity Store
- identity_store_ strid 
- Identity Store Id
- mdm_compliance_ boolstatus 
- Mdm Compliance Status
- mdm_encrypted bool
- Mdm Encrypted
- mdm_enrolled bool
- Mdm Enrolled
- mdm_imei str
- Mdm IMEI
- mdm_jail_ boolbroken 
- Mdm JailBroken
- mdm_manufacturer str
- Mdm Manufacturer
- mdm_model str
- Mdm Model
- mdm_os str
- Mdm OS
- mdm_phone_ strnumber 
- Mdm PhoneNumber
- mdm_pinlock bool
- Mdm Pinlock
- mdm_reachable bool
- Mdm Reachable
- mdm_serial str
- Mdm Serial
- mdm_server_ strname 
- Mdm Server Name
- name str
- The name of the endpoint
- portal_user str
- Portal User
- profile_id str
- Profile ID
- static_group_ boolassignment_ defined 
- staticGroupAssignmentDefined - Default value: true
- static_profile_ boolassignment_ defined 
- Static Profile Assignment Defined - Default value: true
- mac String
- MAC address of the endpoint
- staticGroup BooleanAssignment 
- Static Group Assignment
- staticProfile BooleanAssignment 
- Static Profile Assignment
- customAttributes Map<String>
- Custom Attributes
- description String
- Description
- groupId String
- Identity Group ID
- identityStore String
- Identity Store
- identityStore StringId 
- Identity Store Id
- mdmCompliance BooleanStatus 
- Mdm Compliance Status
- mdmEncrypted Boolean
- Mdm Encrypted
- mdmEnrolled Boolean
- Mdm Enrolled
- mdmImei String
- Mdm IMEI
- mdmJail BooleanBroken 
- Mdm JailBroken
- mdmManufacturer String
- Mdm Manufacturer
- mdmModel String
- Mdm Model
- mdmOs String
- Mdm OS
- mdmPhone StringNumber 
- Mdm PhoneNumber
- mdmPinlock Boolean
- Mdm Pinlock
- mdmReachable Boolean
- Mdm Reachable
- mdmSerial String
- Mdm Serial
- mdmServer StringName 
- Mdm Server Name
- name String
- The name of the endpoint
- portalUser String
- Portal User
- profileId String
- Profile ID
- staticGroup BooleanAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- staticProfile BooleanAssignment Defined 
- Static Profile Assignment Defined - Default value: true
Outputs
All input properties are implicitly available as output properties. Additionally, the Endpoint 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 Endpoint Resource
Get an existing Endpoint 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?: EndpointState, opts?: CustomResourceOptions): Endpoint@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        custom_attributes: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        group_id: Optional[str] = None,
        identity_store: Optional[str] = None,
        identity_store_id: Optional[str] = None,
        mac: Optional[str] = None,
        mdm_compliance_status: Optional[bool] = None,
        mdm_encrypted: Optional[bool] = None,
        mdm_enrolled: Optional[bool] = None,
        mdm_imei: Optional[str] = None,
        mdm_jail_broken: Optional[bool] = None,
        mdm_manufacturer: Optional[str] = None,
        mdm_model: Optional[str] = None,
        mdm_os: Optional[str] = None,
        mdm_phone_number: Optional[str] = None,
        mdm_pinlock: Optional[bool] = None,
        mdm_reachable: Optional[bool] = None,
        mdm_serial: Optional[str] = None,
        mdm_server_name: Optional[str] = None,
        name: Optional[str] = None,
        portal_user: Optional[str] = None,
        profile_id: Optional[str] = None,
        static_group_assignment: Optional[bool] = None,
        static_group_assignment_defined: Optional[bool] = None,
        static_profile_assignment: Optional[bool] = None,
        static_profile_assignment_defined: Optional[bool] = None) -> Endpointfunc GetEndpoint(ctx *Context, name string, id IDInput, state *EndpointState, opts ...ResourceOption) (*Endpoint, error)public static Endpoint Get(string name, Input<string> id, EndpointState? state, CustomResourceOptions? opts = null)public static Endpoint get(String name, Output<String> id, EndpointState state, CustomResourceOptions options)resources:  _:    type: ise:identitymanagement:Endpoint    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.
- CustomAttributes Dictionary<string, string>
- Custom Attributes
- Description string
- Description
- GroupId string
- Identity Group ID
- IdentityStore string
- Identity Store
- IdentityStore stringId 
- Identity Store Id
- Mac string
- MAC address of the endpoint
- MdmCompliance boolStatus 
- Mdm Compliance Status
- MdmEncrypted bool
- Mdm Encrypted
- MdmEnrolled bool
- Mdm Enrolled
- MdmImei string
- Mdm IMEI
- MdmJail boolBroken 
- Mdm JailBroken
- MdmManufacturer string
- Mdm Manufacturer
- MdmModel string
- Mdm Model
- MdmOs string
- Mdm OS
- MdmPhone stringNumber 
- Mdm PhoneNumber
- MdmPinlock bool
- Mdm Pinlock
- MdmReachable bool
- Mdm Reachable
- MdmSerial string
- Mdm Serial
- MdmServer stringName 
- Mdm Server Name
- Name string
- The name of the endpoint
- PortalUser string
- Portal User
- ProfileId string
- Profile ID
- StaticGroup boolAssignment 
- Static Group Assignment
- StaticGroup boolAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- StaticProfile boolAssignment 
- Static Profile Assignment
- StaticProfile boolAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- CustomAttributes map[string]string
- Custom Attributes
- Description string
- Description
- GroupId string
- Identity Group ID
- IdentityStore string
- Identity Store
- IdentityStore stringId 
- Identity Store Id
- Mac string
- MAC address of the endpoint
- MdmCompliance boolStatus 
- Mdm Compliance Status
- MdmEncrypted bool
- Mdm Encrypted
- MdmEnrolled bool
- Mdm Enrolled
- MdmImei string
- Mdm IMEI
- MdmJail boolBroken 
- Mdm JailBroken
- MdmManufacturer string
- Mdm Manufacturer
- MdmModel string
- Mdm Model
- MdmOs string
- Mdm OS
- MdmPhone stringNumber 
- Mdm PhoneNumber
- MdmPinlock bool
- Mdm Pinlock
- MdmReachable bool
- Mdm Reachable
- MdmSerial string
- Mdm Serial
- MdmServer stringName 
- Mdm Server Name
- Name string
- The name of the endpoint
- PortalUser string
- Portal User
- ProfileId string
- Profile ID
- StaticGroup boolAssignment 
- Static Group Assignment
- StaticGroup boolAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- StaticProfile boolAssignment 
- Static Profile Assignment
- StaticProfile boolAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- customAttributes Map<String,String>
- Custom Attributes
- description String
- Description
- groupId String
- Identity Group ID
- identityStore String
- Identity Store
- identityStore StringId 
- Identity Store Id
- mac String
- MAC address of the endpoint
- mdmCompliance BooleanStatus 
- Mdm Compliance Status
- mdmEncrypted Boolean
- Mdm Encrypted
- mdmEnrolled Boolean
- Mdm Enrolled
- mdmImei String
- Mdm IMEI
- mdmJail BooleanBroken 
- Mdm JailBroken
- mdmManufacturer String
- Mdm Manufacturer
- mdmModel String
- Mdm Model
- mdmOs String
- Mdm OS
- mdmPhone StringNumber 
- Mdm PhoneNumber
- mdmPinlock Boolean
- Mdm Pinlock
- mdmReachable Boolean
- Mdm Reachable
- mdmSerial String
- Mdm Serial
- mdmServer StringName 
- Mdm Server Name
- name String
- The name of the endpoint
- portalUser String
- Portal User
- profileId String
- Profile ID
- staticGroup BooleanAssignment 
- Static Group Assignment
- staticGroup BooleanAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- staticProfile BooleanAssignment 
- Static Profile Assignment
- staticProfile BooleanAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- customAttributes {[key: string]: string}
- Custom Attributes
- description string
- Description
- groupId string
- Identity Group ID
- identityStore string
- Identity Store
- identityStore stringId 
- Identity Store Id
- mac string
- MAC address of the endpoint
- mdmCompliance booleanStatus 
- Mdm Compliance Status
- mdmEncrypted boolean
- Mdm Encrypted
- mdmEnrolled boolean
- Mdm Enrolled
- mdmImei string
- Mdm IMEI
- mdmJail booleanBroken 
- Mdm JailBroken
- mdmManufacturer string
- Mdm Manufacturer
- mdmModel string
- Mdm Model
- mdmOs string
- Mdm OS
- mdmPhone stringNumber 
- Mdm PhoneNumber
- mdmPinlock boolean
- Mdm Pinlock
- mdmReachable boolean
- Mdm Reachable
- mdmSerial string
- Mdm Serial
- mdmServer stringName 
- Mdm Server Name
- name string
- The name of the endpoint
- portalUser string
- Portal User
- profileId string
- Profile ID
- staticGroup booleanAssignment 
- Static Group Assignment
- staticGroup booleanAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- staticProfile booleanAssignment 
- Static Profile Assignment
- staticProfile booleanAssignment Defined 
- Static Profile Assignment Defined - Default value: true
- custom_attributes Mapping[str, str]
- Custom Attributes
- description str
- Description
- group_id str
- Identity Group ID
- identity_store str
- Identity Store
- identity_store_ strid 
- Identity Store Id
- mac str
- MAC address of the endpoint
- mdm_compliance_ boolstatus 
- Mdm Compliance Status
- mdm_encrypted bool
- Mdm Encrypted
- mdm_enrolled bool
- Mdm Enrolled
- mdm_imei str
- Mdm IMEI
- mdm_jail_ boolbroken 
- Mdm JailBroken
- mdm_manufacturer str
- Mdm Manufacturer
- mdm_model str
- Mdm Model
- mdm_os str
- Mdm OS
- mdm_phone_ strnumber 
- Mdm PhoneNumber
- mdm_pinlock bool
- Mdm Pinlock
- mdm_reachable bool
- Mdm Reachable
- mdm_serial str
- Mdm Serial
- mdm_server_ strname 
- Mdm Server Name
- name str
- The name of the endpoint
- portal_user str
- Portal User
- profile_id str
- Profile ID
- static_group_ boolassignment 
- Static Group Assignment
- static_group_ boolassignment_ defined 
- staticGroupAssignmentDefined - Default value: true
- static_profile_ boolassignment 
- Static Profile Assignment
- static_profile_ boolassignment_ defined 
- Static Profile Assignment Defined - Default value: true
- customAttributes Map<String>
- Custom Attributes
- description String
- Description
- groupId String
- Identity Group ID
- identityStore String
- Identity Store
- identityStore StringId 
- Identity Store Id
- mac String
- MAC address of the endpoint
- mdmCompliance BooleanStatus 
- Mdm Compliance Status
- mdmEncrypted Boolean
- Mdm Encrypted
- mdmEnrolled Boolean
- Mdm Enrolled
- mdmImei String
- Mdm IMEI
- mdmJail BooleanBroken 
- Mdm JailBroken
- mdmManufacturer String
- Mdm Manufacturer
- mdmModel String
- Mdm Model
- mdmOs String
- Mdm OS
- mdmPhone StringNumber 
- Mdm PhoneNumber
- mdmPinlock Boolean
- Mdm Pinlock
- mdmReachable Boolean
- Mdm Reachable
- mdmSerial String
- Mdm Serial
- mdmServer StringName 
- Mdm Server Name
- name String
- The name of the endpoint
- portalUser String
- Portal User
- profileId String
- Profile ID
- staticGroup BooleanAssignment 
- Static Group Assignment
- staticGroup BooleanAssignment Defined 
- staticGroupAssignmentDefined - Default value: true
- staticProfile BooleanAssignment 
- Static Profile Assignment
- staticProfile BooleanAssignment Defined 
- Static Profile Assignment Defined - Default value: true
Import
$ pulumi import ise:identitymanagement/endpoint:Endpoint 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.
