1. Packages
  2. Cisco ISE Provider
  3. API Docs
  4. identitymanagement
  5. Endpoint
Cisco ISE v0.2.1 published on Saturday, Mar 15, 2025 by Pulumi

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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. EndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. EndpointArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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,
});
Copy
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),
})
Copy
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());
Copy
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)
Copy
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,
});
Copy
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
Copy

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 This property is required. string
MAC address of the endpoint
StaticGroupAssignment This property is required. bool
Static Group Assignment
StaticProfileAssignment This property is required. bool
Static Profile Assignment
CustomAttributes Dictionary<string, string>
Custom Attributes
Description string
Description
GroupId string
Identity Group ID
IdentityStore string
Identity Store
IdentityStoreId string
Identity Store Id
MdmComplianceStatus bool
Mdm Compliance Status
MdmEncrypted bool
Mdm Encrypted
MdmEnrolled bool
Mdm Enrolled
MdmImei string
Mdm IMEI
MdmJailBroken bool
Mdm JailBroken
MdmManufacturer string
Mdm Manufacturer
MdmModel string
Mdm Model
MdmOs string
Mdm OS
MdmPhoneNumber string
Mdm PhoneNumber
MdmPinlock bool
Mdm Pinlock
MdmReachable bool
Mdm Reachable
MdmSerial string
Mdm Serial
MdmServerName string
Mdm Server Name
Name string
The name of the endpoint
PortalUser string
Portal User
ProfileId string
Profile ID
StaticGroupAssignmentDefined bool
staticGroupAssignmentDefined - Default value: true
StaticProfileAssignmentDefined bool
Static Profile Assignment Defined - Default value: true
Mac This property is required. string
MAC address of the endpoint
StaticGroupAssignment This property is required. bool
Static Group Assignment
StaticProfileAssignment This property is required. bool
Static Profile Assignment
CustomAttributes map[string]string
Custom Attributes
Description string
Description
GroupId string
Identity Group ID
IdentityStore string
Identity Store
IdentityStoreId string
Identity Store Id
MdmComplianceStatus bool
Mdm Compliance Status
MdmEncrypted bool
Mdm Encrypted
MdmEnrolled bool
Mdm Enrolled
MdmImei string
Mdm IMEI
MdmJailBroken bool
Mdm JailBroken
MdmManufacturer string
Mdm Manufacturer
MdmModel string
Mdm Model
MdmOs string
Mdm OS
MdmPhoneNumber string
Mdm PhoneNumber
MdmPinlock bool
Mdm Pinlock
MdmReachable bool
Mdm Reachable
MdmSerial string
Mdm Serial
MdmServerName string
Mdm Server Name
Name string
The name of the endpoint
PortalUser string
Portal User
ProfileId string
Profile ID
StaticGroupAssignmentDefined bool
staticGroupAssignmentDefined - Default value: true
StaticProfileAssignmentDefined bool
Static Profile Assignment Defined - Default value: true
mac This property is required. String
MAC address of the endpoint
staticGroupAssignment This property is required. Boolean
Static Group Assignment
staticProfileAssignment This property is required. Boolean
Static Profile Assignment
customAttributes Map<String,String>
Custom Attributes
description String
Description
groupId String
Identity Group ID
identityStore String
Identity Store
identityStoreId String
Identity Store Id
mdmComplianceStatus Boolean
Mdm Compliance Status
mdmEncrypted Boolean
Mdm Encrypted
mdmEnrolled Boolean
Mdm Enrolled
mdmImei String
Mdm IMEI
mdmJailBroken Boolean
Mdm JailBroken
mdmManufacturer String
Mdm Manufacturer
mdmModel String
Mdm Model
mdmOs String
Mdm OS
mdmPhoneNumber String
Mdm PhoneNumber
mdmPinlock Boolean
Mdm Pinlock
mdmReachable Boolean
Mdm Reachable
mdmSerial String
Mdm Serial
mdmServerName String
Mdm Server Name
name String
The name of the endpoint
portalUser String
Portal User
profileId String
Profile ID
staticGroupAssignmentDefined Boolean
staticGroupAssignmentDefined - Default value: true
staticProfileAssignmentDefined Boolean
Static Profile Assignment Defined - Default value: true
mac This property is required. string
MAC address of the endpoint
staticGroupAssignment This property is required. boolean
Static Group Assignment
staticProfileAssignment This property is required. boolean
Static Profile Assignment
customAttributes {[key: string]: string}
Custom Attributes
description string
Description
groupId string
Identity Group ID
identityStore string
Identity Store
identityStoreId string
Identity Store Id
mdmComplianceStatus boolean
Mdm Compliance Status
mdmEncrypted boolean
Mdm Encrypted
mdmEnrolled boolean
Mdm Enrolled
mdmImei string
Mdm IMEI
mdmJailBroken boolean
Mdm JailBroken
mdmManufacturer string
Mdm Manufacturer
mdmModel string
Mdm Model
mdmOs string
Mdm OS
mdmPhoneNumber string
Mdm PhoneNumber
mdmPinlock boolean
Mdm Pinlock
mdmReachable boolean
Mdm Reachable
mdmSerial string
Mdm Serial
mdmServerName string
Mdm Server Name
name string
The name of the endpoint
portalUser string
Portal User
profileId string
Profile ID
staticGroupAssignmentDefined boolean
staticGroupAssignmentDefined - Default value: true
staticProfileAssignmentDefined boolean
Static Profile Assignment Defined - Default value: true
mac This property is required. str
MAC address of the endpoint
static_group_assignment This property is required. bool
Static Group Assignment
static_profile_assignment This property is required. bool
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_id str
Identity Store Id
mdm_compliance_status bool
Mdm Compliance Status
mdm_encrypted bool
Mdm Encrypted
mdm_enrolled bool
Mdm Enrolled
mdm_imei str
Mdm IMEI
mdm_jail_broken bool
Mdm JailBroken
mdm_manufacturer str
Mdm Manufacturer
mdm_model str
Mdm Model
mdm_os str
Mdm OS
mdm_phone_number str
Mdm PhoneNumber
mdm_pinlock bool
Mdm Pinlock
mdm_reachable bool
Mdm Reachable
mdm_serial str
Mdm Serial
mdm_server_name str
Mdm Server Name
name str
The name of the endpoint
portal_user str
Portal User
profile_id str
Profile ID
static_group_assignment_defined bool
staticGroupAssignmentDefined - Default value: true
static_profile_assignment_defined bool
Static Profile Assignment Defined - Default value: true
mac This property is required. String
MAC address of the endpoint
staticGroupAssignment This property is required. Boolean
Static Group Assignment
staticProfileAssignment This property is required. Boolean
Static Profile Assignment
customAttributes Map<String>
Custom Attributes
description String
Description
groupId String
Identity Group ID
identityStore String
Identity Store
identityStoreId String
Identity Store Id
mdmComplianceStatus Boolean
Mdm Compliance Status
mdmEncrypted Boolean
Mdm Encrypted
mdmEnrolled Boolean
Mdm Enrolled
mdmImei String
Mdm IMEI
mdmJailBroken Boolean
Mdm JailBroken
mdmManufacturer String
Mdm Manufacturer
mdmModel String
Mdm Model
mdmOs String
Mdm OS
mdmPhoneNumber String
Mdm PhoneNumber
mdmPinlock Boolean
Mdm Pinlock
mdmReachable Boolean
Mdm Reachable
mdmSerial String
Mdm Serial
mdmServerName String
Mdm Server Name
name String
The name of the endpoint
portalUser String
Portal User
profileId String
Profile ID
staticGroupAssignmentDefined Boolean
staticGroupAssignmentDefined - Default value: true
staticProfileAssignmentDefined Boolean
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) -> Endpoint
func 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CustomAttributes Dictionary<string, string>
Custom Attributes
Description string
Description
GroupId string
Identity Group ID
IdentityStore string
Identity Store
IdentityStoreId string
Identity Store Id
Mac string
MAC address of the endpoint
MdmComplianceStatus bool
Mdm Compliance Status
MdmEncrypted bool
Mdm Encrypted
MdmEnrolled bool
Mdm Enrolled
MdmImei string
Mdm IMEI
MdmJailBroken bool
Mdm JailBroken
MdmManufacturer string
Mdm Manufacturer
MdmModel string
Mdm Model
MdmOs string
Mdm OS
MdmPhoneNumber string
Mdm PhoneNumber
MdmPinlock bool
Mdm Pinlock
MdmReachable bool
Mdm Reachable
MdmSerial string
Mdm Serial
MdmServerName string
Mdm Server Name
Name string
The name of the endpoint
PortalUser string
Portal User
ProfileId string
Profile ID
StaticGroupAssignment bool
Static Group Assignment
StaticGroupAssignmentDefined bool
staticGroupAssignmentDefined - Default value: true
StaticProfileAssignment bool
Static Profile Assignment
StaticProfileAssignmentDefined bool
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
IdentityStoreId string
Identity Store Id
Mac string
MAC address of the endpoint
MdmComplianceStatus bool
Mdm Compliance Status
MdmEncrypted bool
Mdm Encrypted
MdmEnrolled bool
Mdm Enrolled
MdmImei string
Mdm IMEI
MdmJailBroken bool
Mdm JailBroken
MdmManufacturer string
Mdm Manufacturer
MdmModel string
Mdm Model
MdmOs string
Mdm OS
MdmPhoneNumber string
Mdm PhoneNumber
MdmPinlock bool
Mdm Pinlock
MdmReachable bool
Mdm Reachable
MdmSerial string
Mdm Serial
MdmServerName string
Mdm Server Name
Name string
The name of the endpoint
PortalUser string
Portal User
ProfileId string
Profile ID
StaticGroupAssignment bool
Static Group Assignment
StaticGroupAssignmentDefined bool
staticGroupAssignmentDefined - Default value: true
StaticProfileAssignment bool
Static Profile Assignment
StaticProfileAssignmentDefined bool
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
identityStoreId String
Identity Store Id
mac String
MAC address of the endpoint
mdmComplianceStatus Boolean
Mdm Compliance Status
mdmEncrypted Boolean
Mdm Encrypted
mdmEnrolled Boolean
Mdm Enrolled
mdmImei String
Mdm IMEI
mdmJailBroken Boolean
Mdm JailBroken
mdmManufacturer String
Mdm Manufacturer
mdmModel String
Mdm Model
mdmOs String
Mdm OS
mdmPhoneNumber String
Mdm PhoneNumber
mdmPinlock Boolean
Mdm Pinlock
mdmReachable Boolean
Mdm Reachable
mdmSerial String
Mdm Serial
mdmServerName String
Mdm Server Name
name String
The name of the endpoint
portalUser String
Portal User
profileId String
Profile ID
staticGroupAssignment Boolean
Static Group Assignment
staticGroupAssignmentDefined Boolean
staticGroupAssignmentDefined - Default value: true
staticProfileAssignment Boolean
Static Profile Assignment
staticProfileAssignmentDefined Boolean
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
identityStoreId string
Identity Store Id
mac string
MAC address of the endpoint
mdmComplianceStatus boolean
Mdm Compliance Status
mdmEncrypted boolean
Mdm Encrypted
mdmEnrolled boolean
Mdm Enrolled
mdmImei string
Mdm IMEI
mdmJailBroken boolean
Mdm JailBroken
mdmManufacturer string
Mdm Manufacturer
mdmModel string
Mdm Model
mdmOs string
Mdm OS
mdmPhoneNumber string
Mdm PhoneNumber
mdmPinlock boolean
Mdm Pinlock
mdmReachable boolean
Mdm Reachable
mdmSerial string
Mdm Serial
mdmServerName string
Mdm Server Name
name string
The name of the endpoint
portalUser string
Portal User
profileId string
Profile ID
staticGroupAssignment boolean
Static Group Assignment
staticGroupAssignmentDefined boolean
staticGroupAssignmentDefined - Default value: true
staticProfileAssignment boolean
Static Profile Assignment
staticProfileAssignmentDefined boolean
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_id str
Identity Store Id
mac str
MAC address of the endpoint
mdm_compliance_status bool
Mdm Compliance Status
mdm_encrypted bool
Mdm Encrypted
mdm_enrolled bool
Mdm Enrolled
mdm_imei str
Mdm IMEI
mdm_jail_broken bool
Mdm JailBroken
mdm_manufacturer str
Mdm Manufacturer
mdm_model str
Mdm Model
mdm_os str
Mdm OS
mdm_phone_number str
Mdm PhoneNumber
mdm_pinlock bool
Mdm Pinlock
mdm_reachable bool
Mdm Reachable
mdm_serial str
Mdm Serial
mdm_server_name str
Mdm Server Name
name str
The name of the endpoint
portal_user str
Portal User
profile_id str
Profile ID
static_group_assignment bool
Static Group Assignment
static_group_assignment_defined bool
staticGroupAssignmentDefined - Default value: true
static_profile_assignment bool
Static Profile Assignment
static_profile_assignment_defined bool
Static Profile Assignment Defined - Default value: true
customAttributes Map<String>
Custom Attributes
description String
Description
groupId String
Identity Group ID
identityStore String
Identity Store
identityStoreId String
Identity Store Id
mac String
MAC address of the endpoint
mdmComplianceStatus Boolean
Mdm Compliance Status
mdmEncrypted Boolean
Mdm Encrypted
mdmEnrolled Boolean
Mdm Enrolled
mdmImei String
Mdm IMEI
mdmJailBroken Boolean
Mdm JailBroken
mdmManufacturer String
Mdm Manufacturer
mdmModel String
Mdm Model
mdmOs String
Mdm OS
mdmPhoneNumber String
Mdm PhoneNumber
mdmPinlock Boolean
Mdm Pinlock
mdmReachable Boolean
Mdm Reachable
mdmSerial String
Mdm Serial
mdmServerName String
Mdm Server Name
name String
The name of the endpoint
portalUser String
Portal User
profileId String
Profile ID
staticGroupAssignment Boolean
Static Group Assignment
staticGroupAssignmentDefined Boolean
staticGroupAssignmentDefined - Default value: true
staticProfileAssignment Boolean
Static Profile Assignment
staticProfileAssignmentDefined Boolean
Static Profile Assignment Defined - Default value: true

Import

$ pulumi import ise:identitymanagement/endpoint:Endpoint example "76d24097-41c4-4558-a4d0-a8c07ac08470"
Copy

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.