UNPKG

@pulumi/ise

Version:

A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1

391 lines (390 loc) 9.63 kB
import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage an Endpoint. * * ## Example Usage * * ```typescript * 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 * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:identitymanagement/endpoint:Endpoint example "76d24097-41c4-4558-a4d0-a8c07ac08470" * ``` */ export declare class Endpoint extends pulumi.CustomResource { /** * Get an existing Endpoint resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: EndpointState, opts?: pulumi.CustomResourceOptions): Endpoint; /** * Returns true if the given object is an instance of Endpoint. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Endpoint; /** * Custom Attributes */ readonly customAttributes: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Description */ readonly description: pulumi.Output<string | undefined>; /** * Identity Group ID */ readonly groupId: pulumi.Output<string | undefined>; /** * Identity Store */ readonly identityStore: pulumi.Output<string | undefined>; /** * Identity Store Id */ readonly identityStoreId: pulumi.Output<string | undefined>; /** * MAC address of the endpoint */ readonly mac: pulumi.Output<string>; /** * Mdm Compliance Status */ readonly mdmComplianceStatus: pulumi.Output<boolean | undefined>; /** * Mdm Encrypted */ readonly mdmEncrypted: pulumi.Output<boolean | undefined>; /** * Mdm Enrolled */ readonly mdmEnrolled: pulumi.Output<boolean | undefined>; /** * Mdm IMEI */ readonly mdmImei: pulumi.Output<string | undefined>; /** * Mdm JailBroken */ readonly mdmJailBroken: pulumi.Output<boolean | undefined>; /** * Mdm Manufacturer */ readonly mdmManufacturer: pulumi.Output<string | undefined>; /** * Mdm Model */ readonly mdmModel: pulumi.Output<string | undefined>; /** * Mdm OS */ readonly mdmOs: pulumi.Output<string | undefined>; /** * Mdm PhoneNumber */ readonly mdmPhoneNumber: pulumi.Output<string | undefined>; /** * Mdm Pinlock */ readonly mdmPinlock: pulumi.Output<boolean | undefined>; /** * Mdm Reachable */ readonly mdmReachable: pulumi.Output<boolean | undefined>; /** * Mdm Serial */ readonly mdmSerial: pulumi.Output<string | undefined>; /** * Mdm Server Name */ readonly mdmServerName: pulumi.Output<string | undefined>; /** * The name of the endpoint */ readonly name: pulumi.Output<string>; /** * Portal User */ readonly portalUser: pulumi.Output<string | undefined>; /** * Profile ID */ readonly profileId: pulumi.Output<string | undefined>; /** * Static Group Assignment */ readonly staticGroupAssignment: pulumi.Output<boolean>; /** * staticGroupAssignmentDefined * - Default value: `true` */ readonly staticGroupAssignmentDefined: pulumi.Output<boolean>; /** * Static Profile Assignment */ readonly staticProfileAssignment: pulumi.Output<boolean>; /** * Static Profile Assignment Defined * - Default value: `true` */ readonly staticProfileAssignmentDefined: pulumi.Output<boolean>; /** * Create a Endpoint resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: EndpointArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Endpoint resources. */ export interface EndpointState { /** * Custom Attributes */ customAttributes?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * Description */ description?: pulumi.Input<string>; /** * Identity Group ID */ groupId?: pulumi.Input<string>; /** * Identity Store */ identityStore?: pulumi.Input<string>; /** * Identity Store Id */ identityStoreId?: pulumi.Input<string>; /** * MAC address of the endpoint */ mac?: pulumi.Input<string>; /** * Mdm Compliance Status */ mdmComplianceStatus?: pulumi.Input<boolean>; /** * Mdm Encrypted */ mdmEncrypted?: pulumi.Input<boolean>; /** * Mdm Enrolled */ mdmEnrolled?: pulumi.Input<boolean>; /** * Mdm IMEI */ mdmImei?: pulumi.Input<string>; /** * Mdm JailBroken */ mdmJailBroken?: pulumi.Input<boolean>; /** * Mdm Manufacturer */ mdmManufacturer?: pulumi.Input<string>; /** * Mdm Model */ mdmModel?: pulumi.Input<string>; /** * Mdm OS */ mdmOs?: pulumi.Input<string>; /** * Mdm PhoneNumber */ mdmPhoneNumber?: pulumi.Input<string>; /** * Mdm Pinlock */ mdmPinlock?: pulumi.Input<boolean>; /** * Mdm Reachable */ mdmReachable?: pulumi.Input<boolean>; /** * Mdm Serial */ mdmSerial?: pulumi.Input<string>; /** * Mdm Server Name */ mdmServerName?: pulumi.Input<string>; /** * The name of the endpoint */ name?: pulumi.Input<string>; /** * Portal User */ portalUser?: pulumi.Input<string>; /** * Profile ID */ profileId?: pulumi.Input<string>; /** * Static Group Assignment */ staticGroupAssignment?: pulumi.Input<boolean>; /** * staticGroupAssignmentDefined * - Default value: `true` */ staticGroupAssignmentDefined?: pulumi.Input<boolean>; /** * Static Profile Assignment */ staticProfileAssignment?: pulumi.Input<boolean>; /** * Static Profile Assignment Defined * - Default value: `true` */ staticProfileAssignmentDefined?: pulumi.Input<boolean>; } /** * The set of arguments for constructing a Endpoint resource. */ export interface EndpointArgs { /** * Custom Attributes */ customAttributes?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * Description */ description?: pulumi.Input<string>; /** * Identity Group ID */ groupId?: pulumi.Input<string>; /** * Identity Store */ identityStore?: pulumi.Input<string>; /** * Identity Store Id */ identityStoreId?: pulumi.Input<string>; /** * MAC address of the endpoint */ mac: pulumi.Input<string>; /** * Mdm Compliance Status */ mdmComplianceStatus?: pulumi.Input<boolean>; /** * Mdm Encrypted */ mdmEncrypted?: pulumi.Input<boolean>; /** * Mdm Enrolled */ mdmEnrolled?: pulumi.Input<boolean>; /** * Mdm IMEI */ mdmImei?: pulumi.Input<string>; /** * Mdm JailBroken */ mdmJailBroken?: pulumi.Input<boolean>; /** * Mdm Manufacturer */ mdmManufacturer?: pulumi.Input<string>; /** * Mdm Model */ mdmModel?: pulumi.Input<string>; /** * Mdm OS */ mdmOs?: pulumi.Input<string>; /** * Mdm PhoneNumber */ mdmPhoneNumber?: pulumi.Input<string>; /** * Mdm Pinlock */ mdmPinlock?: pulumi.Input<boolean>; /** * Mdm Reachable */ mdmReachable?: pulumi.Input<boolean>; /** * Mdm Serial */ mdmSerial?: pulumi.Input<string>; /** * Mdm Server Name */ mdmServerName?: pulumi.Input<string>; /** * The name of the endpoint */ name?: pulumi.Input<string>; /** * Portal User */ portalUser?: pulumi.Input<string>; /** * Profile ID */ profileId?: pulumi.Input<string>; /** * Static Group Assignment */ staticGroupAssignment: pulumi.Input<boolean>; /** * staticGroupAssignmentDefined * - Default value: `true` */ staticGroupAssignmentDefined?: pulumi.Input<boolean>; /** * Static Profile Assignment */ staticProfileAssignment: pulumi.Input<boolean>; /** * Static Profile Assignment Defined * - Default value: `true` */ staticProfileAssignmentDefined?: pulumi.Input<boolean>; }