@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
150 lines (149 loc) • 5.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* This resource can manage an Active Directory Add Groups.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as ise from "@pulumi/ise";
*
* const example = new ise.identitymanagement.ActiveDirectoryAddGroups("example", {
* joinPointId: "73808580-b6e6-11ee-8960-de6d7692bc40",
* name: "cisco.local",
* description: "My AD join point",
* domain: "cisco.local",
* adScopesNames: "Default_Scope",
* enableDomainAllowedList: true,
* groups: [{
* name: "cisco.local/operators",
* sid: "S-1-5-32-548",
* type: "GLOBAL",
* }],
* });
* ```
*/
export declare class ActiveDirectoryAddGroups extends pulumi.CustomResource {
/**
* Get an existing ActiveDirectoryAddGroups 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?: ActiveDirectoryAddGroupsState, opts?: pulumi.CustomResourceOptions): ActiveDirectoryAddGroups;
/**
* Returns true if the given object is an instance of ActiveDirectoryAddGroups. 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 ActiveDirectoryAddGroups;
/**
* String that contains the names of the scopes that the active directory belongs to. Names are separated by comm - Default
* value: `Default_Scope`
*/
readonly adScopesNames: pulumi.Output<string>;
/**
* Join point Description
*/
readonly description: pulumi.Output<string | undefined>;
/**
* AD domain associated with the join point
*/
readonly domain: pulumi.Output<string>;
/**
* - Default value: `true`
*/
readonly enableDomainAllowedList: pulumi.Output<boolean>;
/**
* List of AD Groups
*/
readonly groups: pulumi.Output<outputs.identitymanagement.ActiveDirectoryAddGroupsGroup[] | undefined>;
/**
* Active Directory Join Point ID
*/
readonly joinPointId: pulumi.Output<string>;
/**
* The name of the active directory join point
*/
readonly name: pulumi.Output<string>;
/**
* Create a ActiveDirectoryAddGroups 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: ActiveDirectoryAddGroupsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ActiveDirectoryAddGroups resources.
*/
export interface ActiveDirectoryAddGroupsState {
/**
* String that contains the names of the scopes that the active directory belongs to. Names are separated by comm - Default
* value: `Default_Scope`
*/
adScopesNames?: pulumi.Input<string>;
/**
* Join point Description
*/
description?: pulumi.Input<string>;
/**
* AD domain associated with the join point
*/
domain?: pulumi.Input<string>;
/**
* - Default value: `true`
*/
enableDomainAllowedList?: pulumi.Input<boolean>;
/**
* List of AD Groups
*/
groups?: pulumi.Input<pulumi.Input<inputs.identitymanagement.ActiveDirectoryAddGroupsGroup>[]>;
/**
* Active Directory Join Point ID
*/
joinPointId?: pulumi.Input<string>;
/**
* The name of the active directory join point
*/
name?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ActiveDirectoryAddGroups resource.
*/
export interface ActiveDirectoryAddGroupsArgs {
/**
* String that contains the names of the scopes that the active directory belongs to. Names are separated by comm - Default
* value: `Default_Scope`
*/
adScopesNames?: pulumi.Input<string>;
/**
* Join point Description
*/
description?: pulumi.Input<string>;
/**
* AD domain associated with the join point
*/
domain: pulumi.Input<string>;
/**
* - Default value: `true`
*/
enableDomainAllowedList?: pulumi.Input<boolean>;
/**
* List of AD Groups
*/
groups?: pulumi.Input<pulumi.Input<inputs.identitymanagement.ActiveDirectoryAddGroupsGroup>[]>;
/**
* Active Directory Join Point ID
*/
joinPointId: pulumi.Input<string>;
/**
* The name of the active directory join point
*/
name?: pulumi.Input<string>;
}