intersight.IamLdapPolicy
Explore with Pulumi AI
LDAP Policy configurations.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const organization = config.require("organization");
const ldap1 = new intersight.IamLdapPolicy("ldap1", {
description: "test policy",
enabled: true,
enableDns: true,
userSearchPrecedence: "LocalUserDb",
organizations: [{
objectType: "organization.Organization",
moid: organization,
}],
baseProperties: [{
attribute: "CiscoAvPair",
baseDn: "DC=QATCSLABTPI02DC=ciscoDC=com",
bindDn: "CN=administratorCN=UsersDC=QATCSLABTPI02DC=ciscoDC=com",
bindMethod: "Anonymous",
domain: "QATCSLABTPI02.cisco.com",
enableEncryption: true,
enableGroupAuthorization: true,
filter: "sAMAccountName",
groupAttribute: "memberOf",
nestedGroupSearchDepth: 128,
timeout: 180,
objectType: "iam.LdapBaseProperties",
}],
dnsParameters: [{
nrSource: "Extracted",
searchForest: "xyz",
searchDomain: "abc",
objectType: "iam.LdapDnsParameters",
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
organization = config.require("organization")
ldap1 = intersight.IamLdapPolicy("ldap1",
description="test policy",
enabled=True,
enable_dns=True,
user_search_precedence="LocalUserDb",
organizations=[{
"object_type": "organization.Organization",
"moid": organization,
}],
base_properties=[{
"attribute": "CiscoAvPair",
"base_dn": "DC=QATCSLABTPI02DC=ciscoDC=com",
"bind_dn": "CN=administratorCN=UsersDC=QATCSLABTPI02DC=ciscoDC=com",
"bind_method": "Anonymous",
"domain": "QATCSLABTPI02.cisco.com",
"enable_encryption": True,
"enable_group_authorization": True,
"filter": "sAMAccountName",
"group_attribute": "memberOf",
"nested_group_search_depth": 128,
"timeout": 180,
"object_type": "iam.LdapBaseProperties",
}],
dns_parameters=[{
"nr_source": "Extracted",
"search_forest": "xyz",
"search_domain": "abc",
"object_type": "iam.LdapDnsParameters",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
organization := cfg.Require("organization")
_, err := intersight.NewIamLdapPolicy(ctx, "ldap1", &intersight.IamLdapPolicyArgs{
Description: pulumi.String("test policy"),
Enabled: pulumi.Bool(true),
EnableDns: pulumi.Bool(true),
UserSearchPrecedence: pulumi.String("LocalUserDb"),
Organizations: intersight.IamLdapPolicyOrganizationArray{
&intersight.IamLdapPolicyOrganizationArgs{
ObjectType: pulumi.String("organization.Organization"),
Moid: pulumi.String(organization),
},
},
BaseProperties: intersight.IamLdapPolicyBasePropertyArray{
&intersight.IamLdapPolicyBasePropertyArgs{
Attribute: pulumi.String("CiscoAvPair"),
BaseDn: pulumi.String("DC=QATCSLABTPI02DC=ciscoDC=com"),
BindDn: pulumi.String("CN=administratorCN=UsersDC=QATCSLABTPI02DC=ciscoDC=com"),
BindMethod: pulumi.String("Anonymous"),
Domain: pulumi.String("QATCSLABTPI02.cisco.com"),
EnableEncryption: pulumi.Bool(true),
EnableGroupAuthorization: pulumi.Bool(true),
Filter: pulumi.String("sAMAccountName"),
GroupAttribute: pulumi.String("memberOf"),
NestedGroupSearchDepth: pulumi.Float64(128),
Timeout: pulumi.Float64(180),
ObjectType: pulumi.String("iam.LdapBaseProperties"),
},
},
DnsParameters: intersight.IamLdapPolicyDnsParameterArray{
&intersight.IamLdapPolicyDnsParameterArgs{
NrSource: pulumi.String("Extracted"),
SearchForest: pulumi.String("xyz"),
SearchDomain: pulumi.String("abc"),
ObjectType: pulumi.String("iam.LdapDnsParameters"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var organization = config.Require("organization");
var ldap1 = new Intersight.IamLdapPolicy("ldap1", new()
{
Description = "test policy",
Enabled = true,
EnableDns = true,
UserSearchPrecedence = "LocalUserDb",
Organizations = new[]
{
new Intersight.Inputs.IamLdapPolicyOrganizationArgs
{
ObjectType = "organization.Organization",
Moid = organization,
},
},
BaseProperties = new[]
{
new Intersight.Inputs.IamLdapPolicyBasePropertyArgs
{
Attribute = "CiscoAvPair",
BaseDn = "DC=QATCSLABTPI02DC=ciscoDC=com",
BindDn = "CN=administratorCN=UsersDC=QATCSLABTPI02DC=ciscoDC=com",
BindMethod = "Anonymous",
Domain = "QATCSLABTPI02.cisco.com",
EnableEncryption = true,
EnableGroupAuthorization = true,
Filter = "sAMAccountName",
GroupAttribute = "memberOf",
NestedGroupSearchDepth = 128,
Timeout = 180,
ObjectType = "iam.LdapBaseProperties",
},
},
DnsParameters = new[]
{
new Intersight.Inputs.IamLdapPolicyDnsParameterArgs
{
NrSource = "Extracted",
SearchForest = "xyz",
SearchDomain = "abc",
ObjectType = "iam.LdapDnsParameters",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.IamLdapPolicy;
import com.pulumi.intersight.IamLdapPolicyArgs;
import com.pulumi.intersight.inputs.IamLdapPolicyOrganizationArgs;
import com.pulumi.intersight.inputs.IamLdapPolicyBasePropertyArgs;
import com.pulumi.intersight.inputs.IamLdapPolicyDnsParameterArgs;
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) {
final var config = ctx.config();
final var organization = config.get("organization");
var ldap1 = new IamLdapPolicy("ldap1", IamLdapPolicyArgs.builder()
.description("test policy")
.enabled(true)
.enableDns(true)
.userSearchPrecedence("LocalUserDb")
.organizations(IamLdapPolicyOrganizationArgs.builder()
.objectType("organization.Organization")
.moid(organization)
.build())
.baseProperties(IamLdapPolicyBasePropertyArgs.builder()
.attribute("CiscoAvPair")
.baseDn("DC=QATCSLABTPI02DC=ciscoDC=com")
.bindDn("CN=administratorCN=UsersDC=QATCSLABTPI02DC=ciscoDC=com")
.bindMethod("Anonymous")
.domain("QATCSLABTPI02.cisco.com")
.enableEncryption(true)
.enableGroupAuthorization(true)
.filter("sAMAccountName")
.groupAttribute("memberOf")
.nestedGroupSearchDepth(128)
.timeout(180)
.objectType("iam.LdapBaseProperties")
.build())
.dnsParameters(IamLdapPolicyDnsParameterArgs.builder()
.nrSource("Extracted")
.searchForest("xyz")
.searchDomain("abc")
.objectType("iam.LdapDnsParameters")
.build())
.build());
}
}
configuration:
organization:
type: string
resources:
ldap1:
type: intersight:IamLdapPolicy
properties:
description: test policy
enabled: true
enableDns: true
userSearchPrecedence: LocalUserDb
organizations:
- objectType: organization.Organization
moid: ${organization}
baseProperties:
- attribute: CiscoAvPair
baseDn: DC=QATCSLABTPI02DC=ciscoDC=com
bindDn: CN=administratorCN=UsersDC=QATCSLABTPI02DC=ciscoDC=com
bindMethod: Anonymous
domain: QATCSLABTPI02.cisco.com
enableEncryption: true
enableGroupAuthorization: true
filter: sAMAccountName
groupAttribute: memberOf
nestedGroupSearchDepth: 128
timeout: 180
objectType: iam.LdapBaseProperties
dnsParameters:
- nrSource: Extracted
searchForest: xyz
searchDomain: abc
objectType: iam.LdapDnsParameters
Create IamLdapPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IamLdapPolicy(name: string, args?: IamLdapPolicyArgs, opts?: CustomResourceOptions);
@overload
def IamLdapPolicy(resource_name: str,
args: Optional[IamLdapPolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def IamLdapPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[IamLdapPolicyAncestorArgs]] = None,
appliance_accounts: Optional[Sequence[IamLdapPolicyApplianceAccountArgs]] = None,
base_properties: Optional[Sequence[IamLdapPolicyBasePropertyArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
dns_parameters: Optional[Sequence[IamLdapPolicyDnsParameterArgs]] = None,
domain_group_moid: Optional[str] = None,
enable_dns: Optional[bool] = None,
enabled: Optional[bool] = None,
groups: Optional[Sequence[IamLdapPolicyGroupArgs]] = None,
iam_ldap_policy_id: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nr_providers: Optional[Sequence[IamLdapPolicyNrProviderArgs]] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[IamLdapPolicyOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[IamLdapPolicyParentArgs]] = None,
permission_resources: Optional[Sequence[IamLdapPolicyPermissionResourceArgs]] = None,
profiles: Optional[Sequence[IamLdapPolicyProfileArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[IamLdapPolicyTagArgs]] = None,
user_search_precedence: Optional[str] = None,
version_contexts: Optional[Sequence[IamLdapPolicyVersionContextArgs]] = None)
func NewIamLdapPolicy(ctx *Context, name string, args *IamLdapPolicyArgs, opts ...ResourceOption) (*IamLdapPolicy, error)
public IamLdapPolicy(string name, IamLdapPolicyArgs? args = null, CustomResourceOptions? opts = null)
public IamLdapPolicy(String name, IamLdapPolicyArgs args)
public IamLdapPolicy(String name, IamLdapPolicyArgs args, CustomResourceOptions options)
type: intersight:IamLdapPolicy
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 IamLdapPolicyArgs
- 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 IamLdapPolicyArgs
- 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 IamLdapPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IamLdapPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IamLdapPolicyArgs
- 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 iamLdapPolicyResource = new Intersight.IamLdapPolicy("iamLdapPolicyResource", new()
{
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.IamLdapPolicyAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ApplianceAccounts = new[]
{
new Intersight.Inputs.IamLdapPolicyApplianceAccountArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
BaseProperties = new[]
{
new Intersight.Inputs.IamLdapPolicyBasePropertyArgs
{
AdditionalProperties = "string",
Attribute = "string",
BaseDn = "string",
BindDn = "string",
BindMethod = "string",
ClassId = "string",
Domain = "string",
EnableEncryption = false,
EnableGroupAuthorization = false,
EnableNestedGroupSearch = false,
Filter = "string",
GroupAttribute = "string",
IsPasswordSet = false,
NestedGroupSearchDepth = 0,
ObjectType = "string",
Password = "string",
Timeout = 0,
},
},
ClassId = "string",
CreateTime = "string",
Description = "string",
DnsParameters = new[]
{
new Intersight.Inputs.IamLdapPolicyDnsParameterArgs
{
AdditionalProperties = "string",
ClassId = "string",
NrSource = "string",
ObjectType = "string",
SearchDomain = "string",
SearchForest = "string",
},
},
DomainGroupMoid = "string",
EnableDns = false,
Enabled = false,
Groups = new[]
{
new Intersight.Inputs.IamLdapPolicyGroupArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
IamLdapPolicyId = "string",
ModTime = "string",
Moid = "string",
Name = "string",
NrProviders = new[]
{
new Intersight.Inputs.IamLdapPolicyNrProviderArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ObjectType = "string",
Organizations = new[]
{
new Intersight.Inputs.IamLdapPolicyOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.IamLdapPolicyParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.IamLdapPolicyPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Profiles = new[]
{
new Intersight.Inputs.IamLdapPolicyProfileArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SharedScope = "string",
Tags = new[]
{
new Intersight.Inputs.IamLdapPolicyTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
UserSearchPrecedence = "string",
VersionContexts = new[]
{
new Intersight.Inputs.IamLdapPolicyVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.IamLdapPolicyVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.IamLdapPolicyVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
});
example, err := intersight.NewIamLdapPolicy(ctx, "iamLdapPolicyResource", &intersight.IamLdapPolicyArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.IamLdapPolicyAncestorArray{
&intersight.IamLdapPolicyAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ApplianceAccounts: intersight.IamLdapPolicyApplianceAccountArray{
&intersight.IamLdapPolicyApplianceAccountArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
BaseProperties: intersight.IamLdapPolicyBasePropertyArray{
&intersight.IamLdapPolicyBasePropertyArgs{
AdditionalProperties: pulumi.String("string"),
Attribute: pulumi.String("string"),
BaseDn: pulumi.String("string"),
BindDn: pulumi.String("string"),
BindMethod: pulumi.String("string"),
ClassId: pulumi.String("string"),
Domain: pulumi.String("string"),
EnableEncryption: pulumi.Bool(false),
EnableGroupAuthorization: pulumi.Bool(false),
EnableNestedGroupSearch: pulumi.Bool(false),
Filter: pulumi.String("string"),
GroupAttribute: pulumi.String("string"),
IsPasswordSet: pulumi.Bool(false),
NestedGroupSearchDepth: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
Password: pulumi.String("string"),
Timeout: pulumi.Float64(0),
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
Description: pulumi.String("string"),
DnsParameters: intersight.IamLdapPolicyDnsParameterArray{
&intersight.IamLdapPolicyDnsParameterArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
NrSource: pulumi.String("string"),
ObjectType: pulumi.String("string"),
SearchDomain: pulumi.String("string"),
SearchForest: pulumi.String("string"),
},
},
DomainGroupMoid: pulumi.String("string"),
EnableDns: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
Groups: intersight.IamLdapPolicyGroupArray{
&intersight.IamLdapPolicyGroupArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
IamLdapPolicyId: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
NrProviders: intersight.IamLdapPolicyNrProviderArray{
&intersight.IamLdapPolicyNrProviderArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ObjectType: pulumi.String("string"),
Organizations: intersight.IamLdapPolicyOrganizationArray{
&intersight.IamLdapPolicyOrganizationArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.IamLdapPolicyParentArray{
&intersight.IamLdapPolicyParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.IamLdapPolicyPermissionResourceArray{
&intersight.IamLdapPolicyPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Profiles: intersight.IamLdapPolicyProfileArray{
&intersight.IamLdapPolicyProfileArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
Tags: intersight.IamLdapPolicyTagArray{
&intersight.IamLdapPolicyTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
UserSearchPrecedence: pulumi.String("string"),
VersionContexts: intersight.IamLdapPolicyVersionContextArray{
&intersight.IamLdapPolicyVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.IamLdapPolicyVersionContextInterestedMoArray{
&intersight.IamLdapPolicyVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.IamLdapPolicyVersionContextRefMoArray{
&intersight.IamLdapPolicyVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
})
var iamLdapPolicyResource = new IamLdapPolicy("iamLdapPolicyResource", IamLdapPolicyArgs.builder()
.accountMoid("string")
.additionalProperties("string")
.ancestors(IamLdapPolicyAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.applianceAccounts(IamLdapPolicyApplianceAccountArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.baseProperties(IamLdapPolicyBasePropertyArgs.builder()
.additionalProperties("string")
.attribute("string")
.baseDn("string")
.bindDn("string")
.bindMethod("string")
.classId("string")
.domain("string")
.enableEncryption(false)
.enableGroupAuthorization(false)
.enableNestedGroupSearch(false)
.filter("string")
.groupAttribute("string")
.isPasswordSet(false)
.nestedGroupSearchDepth(0)
.objectType("string")
.password("string")
.timeout(0)
.build())
.classId("string")
.createTime("string")
.description("string")
.dnsParameters(IamLdapPolicyDnsParameterArgs.builder()
.additionalProperties("string")
.classId("string")
.nrSource("string")
.objectType("string")
.searchDomain("string")
.searchForest("string")
.build())
.domainGroupMoid("string")
.enableDns(false)
.enabled(false)
.groups(IamLdapPolicyGroupArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.iamLdapPolicyId("string")
.modTime("string")
.moid("string")
.name("string")
.nrProviders(IamLdapPolicyNrProviderArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.objectType("string")
.organizations(IamLdapPolicyOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.owners("string")
.parents(IamLdapPolicyParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(IamLdapPolicyPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.profiles(IamLdapPolicyProfileArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.sharedScope("string")
.tags(IamLdapPolicyTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.userSearchPrecedence("string")
.versionContexts(IamLdapPolicyVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(IamLdapPolicyVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(IamLdapPolicyVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.build());
iam_ldap_policy_resource = intersight.IamLdapPolicy("iamLdapPolicyResource",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
appliance_accounts=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
base_properties=[{
"additional_properties": "string",
"attribute": "string",
"base_dn": "string",
"bind_dn": "string",
"bind_method": "string",
"class_id": "string",
"domain": "string",
"enable_encryption": False,
"enable_group_authorization": False,
"enable_nested_group_search": False,
"filter": "string",
"group_attribute": "string",
"is_password_set": False,
"nested_group_search_depth": 0,
"object_type": "string",
"password": "string",
"timeout": 0,
}],
class_id="string",
create_time="string",
description="string",
dns_parameters=[{
"additional_properties": "string",
"class_id": "string",
"nr_source": "string",
"object_type": "string",
"search_domain": "string",
"search_forest": "string",
}],
domain_group_moid="string",
enable_dns=False,
enabled=False,
groups=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
iam_ldap_policy_id="string",
mod_time="string",
moid="string",
name="string",
nr_providers=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
object_type="string",
organizations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
profiles=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
shared_scope="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
user_search_precedence="string",
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}])
const iamLdapPolicyResource = new intersight.IamLdapPolicy("iamLdapPolicyResource", {
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
applianceAccounts: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
baseProperties: [{
additionalProperties: "string",
attribute: "string",
baseDn: "string",
bindDn: "string",
bindMethod: "string",
classId: "string",
domain: "string",
enableEncryption: false,
enableGroupAuthorization: false,
enableNestedGroupSearch: false,
filter: "string",
groupAttribute: "string",
isPasswordSet: false,
nestedGroupSearchDepth: 0,
objectType: "string",
password: "string",
timeout: 0,
}],
classId: "string",
createTime: "string",
description: "string",
dnsParameters: [{
additionalProperties: "string",
classId: "string",
nrSource: "string",
objectType: "string",
searchDomain: "string",
searchForest: "string",
}],
domainGroupMoid: "string",
enableDns: false,
enabled: false,
groups: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
iamLdapPolicyId: "string",
modTime: "string",
moid: "string",
name: "string",
nrProviders: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
objectType: "string",
organizations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
profiles: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
sharedScope: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
userSearchPrecedence: "string",
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
});
type: intersight:IamLdapPolicy
properties:
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
applianceAccounts:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
baseProperties:
- additionalProperties: string
attribute: string
baseDn: string
bindDn: string
bindMethod: string
classId: string
domain: string
enableEncryption: false
enableGroupAuthorization: false
enableNestedGroupSearch: false
filter: string
groupAttribute: string
isPasswordSet: false
nestedGroupSearchDepth: 0
objectType: string
password: string
timeout: 0
classId: string
createTime: string
description: string
dnsParameters:
- additionalProperties: string
classId: string
nrSource: string
objectType: string
searchDomain: string
searchForest: string
domainGroupMoid: string
enableDns: false
enabled: false
groups:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
iamLdapPolicyId: string
modTime: string
moid: string
name: string
nrProviders:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
objectType: string
organizations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
profiles:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
sharedScope: string
tags:
- additionalProperties: string
key: string
value: string
userSearchPrecedence: string
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
IamLdapPolicy 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 IamLdapPolicy resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Iam
Ldap Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Accounts List<IamLdap Policy Appliance Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Base
Properties List<IamLdap Policy Base Property> - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Dns
Parameters List<IamLdap Policy Dns Parameter> - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Dns bool - Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
List<Iam
Ldap Policy Group> - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- Iam
Ldap stringPolicy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Nr
Providers List<IamLdap Policy Nr Provider> - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Iam
Ldap Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Iam
Ldap Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<IamLdap Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Iam
Ldap Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
Ldap Policy Tag> - This complex property has following sub-properties:
- User
Search stringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - Version
Contexts List<IamLdap Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Iam
Ldap Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Accounts []IamLdap Policy Appliance Account Args - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Base
Properties []IamLdap Policy Base Property Args - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Dns
Parameters []IamLdap Policy Dns Parameter Args - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Dns bool - Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
[]Iam
Ldap Policy Group Args - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- Iam
Ldap stringPolicy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Nr
Providers []IamLdap Policy Nr Provider Args - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Iam
Ldap Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Iam
Ldap Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []IamLdap Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Iam
Ldap Policy Profile Args - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Iam
Ldap Policy Tag Args - This complex property has following sub-properties:
- User
Search stringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - Version
Contexts []IamLdap Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Iam
Ldap Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Accounts List<IamLdap Policy Appliance Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base
Properties List<IamLdap Policy Base Property> - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dns
Parameters List<IamLdap Policy Dns Parameter> - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Dns Boolean - Enables DNS to access LDAP servers.
- enabled Boolean
- LDAP server performs authentication.
- groups
List<Iam
Ldap Policy Group> - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam
Ldap StringPolicy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- nr
Providers List<IamLdap Policy Nr Provider> - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Iam
Ldap Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Iam
Ldap Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<IamLdap Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Iam
Ldap Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
Ldap Policy Tag> - This complex property has following sub-properties:
- user
Search StringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version
Contexts List<IamLdap Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Iam
Ldap Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Accounts IamLdap Policy Appliance Account[] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base
Properties IamLdap Policy Base Property[] - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- dns
Parameters IamLdap Policy Dns Parameter[] - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Dns boolean - Enables DNS to access LDAP servers.
- enabled boolean
- LDAP server performs authentication.
- groups
Iam
Ldap Policy Group[] - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam
Ldap stringPolicy Id - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- nr
Providers IamLdap Policy Nr Provider[] - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Iam
Ldap Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Iam
Ldap Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources IamLdap Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Iam
Ldap Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Iam
Ldap Policy Tag[] - This complex property has following sub-properties:
- user
Search stringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version
Contexts IamLdap Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Iam
Ldap Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance_
accounts Sequence[IamLdap Policy Appliance Account Args] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base_
properties Sequence[IamLdap Policy Base Property Args] - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the policy.
- dns_
parameters Sequence[IamLdap Policy Dns Parameter Args] - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable_
dns bool - Enables DNS to access LDAP servers.
- enabled bool
- LDAP server performs authentication.
- groups
Sequence[Iam
Ldap Policy Group Args] - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam_
ldap_ strpolicy_ id - mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the concrete policy.
- nr_
providers Sequence[IamLdap Policy Nr Provider Args] - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Iam
Ldap Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Iam
Ldap Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[IamLdap Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Iam
Ldap Policy Profile Args] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Iam
Ldap Policy Tag Args] - This complex property has following sub-properties:
- user_
search_ strprecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version_
contexts Sequence[IamLdap Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Accounts List<Property Map> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base
Properties List<Property Map> - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dns
Parameters List<Property Map> - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Dns Boolean - Enables DNS to access LDAP servers.
- enabled Boolean
- LDAP server performs authentication.
- groups List<Property Map>
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam
Ldap StringPolicy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- nr
Providers List<Property Map> - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- user
Search StringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the IamLdapPolicy 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 IamLdapPolicy Resource
Get an existing IamLdapPolicy 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?: IamLdapPolicyState, opts?: CustomResourceOptions): IamLdapPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[IamLdapPolicyAncestorArgs]] = None,
appliance_accounts: Optional[Sequence[IamLdapPolicyApplianceAccountArgs]] = None,
base_properties: Optional[Sequence[IamLdapPolicyBasePropertyArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
dns_parameters: Optional[Sequence[IamLdapPolicyDnsParameterArgs]] = None,
domain_group_moid: Optional[str] = None,
enable_dns: Optional[bool] = None,
enabled: Optional[bool] = None,
groups: Optional[Sequence[IamLdapPolicyGroupArgs]] = None,
iam_ldap_policy_id: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nr_providers: Optional[Sequence[IamLdapPolicyNrProviderArgs]] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[IamLdapPolicyOrganizationArgs]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[IamLdapPolicyParentArgs]] = None,
permission_resources: Optional[Sequence[IamLdapPolicyPermissionResourceArgs]] = None,
profiles: Optional[Sequence[IamLdapPolicyProfileArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[IamLdapPolicyTagArgs]] = None,
user_search_precedence: Optional[str] = None,
version_contexts: Optional[Sequence[IamLdapPolicyVersionContextArgs]] = None) -> IamLdapPolicy
func GetIamLdapPolicy(ctx *Context, name string, id IDInput, state *IamLdapPolicyState, opts ...ResourceOption) (*IamLdapPolicy, error)
public static IamLdapPolicy Get(string name, Input<string> id, IamLdapPolicyState? state, CustomResourceOptions? opts = null)
public static IamLdapPolicy get(String name, Output<String> id, IamLdapPolicyState state, CustomResourceOptions options)
resources: _: type: intersight:IamLdapPolicy 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.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Iam
Ldap Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Accounts List<IamLdap Policy Appliance Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Base
Properties List<IamLdap Policy Base Property> - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Dns
Parameters List<IamLdap Policy Dns Parameter> - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Dns bool - Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
List<Iam
Ldap Policy Group> - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- Iam
Ldap stringPolicy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Nr
Providers List<IamLdap Policy Nr Provider> - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Iam
Ldap Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Iam
Ldap Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<IamLdap Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Iam
Ldap Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
Ldap Policy Tag> - This complex property has following sub-properties:
- User
Search stringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - Version
Contexts List<IamLdap Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Iam
Ldap Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Accounts []IamLdap Policy Appliance Account Args - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Base
Properties []IamLdap Policy Base Property Args - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Dns
Parameters []IamLdap Policy Dns Parameter Args - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Dns bool - Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
[]Iam
Ldap Policy Group Args - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- Iam
Ldap stringPolicy Id - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Nr
Providers []IamLdap Policy Nr Provider Args - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Iam
Ldap Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Iam
Ldap Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []IamLdap Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Iam
Ldap Policy Profile Args - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Iam
Ldap Policy Tag Args - This complex property has following sub-properties:
- User
Search stringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - Version
Contexts []IamLdap Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Iam
Ldap Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Accounts List<IamLdap Policy Appliance Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base
Properties List<IamLdap Policy Base Property> - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dns
Parameters List<IamLdap Policy Dns Parameter> - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Dns Boolean - Enables DNS to access LDAP servers.
- enabled Boolean
- LDAP server performs authentication.
- groups
List<Iam
Ldap Policy Group> - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam
Ldap StringPolicy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- nr
Providers List<IamLdap Policy Nr Provider> - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Iam
Ldap Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Iam
Ldap Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<IamLdap Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Iam
Ldap Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
Ldap Policy Tag> - This complex property has following sub-properties:
- user
Search StringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version
Contexts List<IamLdap Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Iam
Ldap Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Accounts IamLdap Policy Appliance Account[] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base
Properties IamLdap Policy Base Property[] - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- dns
Parameters IamLdap Policy Dns Parameter[] - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Dns boolean - Enables DNS to access LDAP servers.
- enabled boolean
- LDAP server performs authentication.
- groups
Iam
Ldap Policy Group[] - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam
Ldap stringPolicy Id - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- nr
Providers IamLdap Policy Nr Provider[] - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Iam
Ldap Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Iam
Ldap Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources IamLdap Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Iam
Ldap Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Iam
Ldap Policy Tag[] - This complex property has following sub-properties:
- user
Search stringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version
Contexts IamLdap Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Iam
Ldap Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance_
accounts Sequence[IamLdap Policy Appliance Account Args] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base_
properties Sequence[IamLdap Policy Base Property Args] - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- Description of the policy.
- dns_
parameters Sequence[IamLdap Policy Dns Parameter Args] - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable_
dns bool - Enables DNS to access LDAP servers.
- enabled bool
- LDAP server performs authentication.
- groups
Sequence[Iam
Ldap Policy Group Args] - An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam_
ldap_ strpolicy_ id - mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- Name of the concrete policy.
- nr_
providers Sequence[IamLdap Policy Nr Provider Args] - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Iam
Ldap Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Iam
Ldap Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[IamLdap Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Iam
Ldap Policy Profile Args] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Iam
Ldap Policy Tag Args] - This complex property has following sub-properties:
- user_
search_ strprecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version_
contexts Sequence[IamLdap Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Accounts List<Property Map> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- base
Properties List<Property Map> - Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dns
Parameters List<Property Map> - Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Dns Boolean - Enables DNS to access LDAP servers.
- enabled Boolean
- LDAP server performs authentication.
- groups List<Property Map>
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iam
Ldap StringPolicy Id - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- nr
Providers List<Property Map> - An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- user
Search StringPrecedence - Search precedence between local user database and LDAP user database.*
LocalUserDb
- Precedence is given to local user database while searching.*LDAPUserDb
- Precedence is given to LADP user database while searching. - version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
IamLdapPolicyAncestor, IamLdapPolicyAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyApplianceAccount, IamLdapPolicyApplianceAccountArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyBaseProperty, IamLdapPolicyBasePropertyArgs
- Additional
Properties string - Attribute string
- Role and locale information of the user.
- Base
Dn string - Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- Bind
Dn string - Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- Bind
Method string - Authentication method to access LDAP servers.*
LoginCredentials
- Requires the user credentials. If the bind process fails, then user is denied access.*Anonymous
- Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access.*ConfiguredCredentials
- Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. - Class
Id string - Domain string
- The IPv4 domain that all users must be in.
- Enable
Encryption bool - If enabled, the endpoint encrypts all information it sends to the LDAP server.
- bool
- If enabled, user authorization is also done at the group level for LDAP users not in the local user database.
- Enable
Nested boolGroup Search - If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively.
- Filter string
- Criteria to identify entries in search requests.
- Group
Attribute string - Groups to which an LDAP entry belongs.
- Is
Password boolSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- Nested
Group doubleSearch Depth - Search depth to look for a nested LDAP group in an LDAP group map.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Password string
- The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters.
- Timeout double
- LDAP authentication timeout duration, in seconds.
- Additional
Properties string - Attribute string
- Role and locale information of the user.
- Base
Dn string - Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- Bind
Dn string - Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- Bind
Method string - Authentication method to access LDAP servers.*
LoginCredentials
- Requires the user credentials. If the bind process fails, then user is denied access.*Anonymous
- Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access.*ConfiguredCredentials
- Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. - Class
Id string - Domain string
- The IPv4 domain that all users must be in.
- Enable
Encryption bool - If enabled, the endpoint encrypts all information it sends to the LDAP server.
- bool
- If enabled, user authorization is also done at the group level for LDAP users not in the local user database.
- Enable
Nested boolGroup Search - If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively.
- Filter string
- Criteria to identify entries in search requests.
- Group
Attribute string - Groups to which an LDAP entry belongs.
- Is
Password boolSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- Nested
Group float64Search Depth - Search depth to look for a nested LDAP group in an LDAP group map.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Password string
- The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters.
- Timeout float64
- LDAP authentication timeout duration, in seconds.
- additional
Properties String - attribute String
- Role and locale information of the user.
- base
Dn String - Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- bind
Dn String - Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- bind
Method String - Authentication method to access LDAP servers.*
LoginCredentials
- Requires the user credentials. If the bind process fails, then user is denied access.*Anonymous
- Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access.*ConfiguredCredentials
- Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. - class
Id String - domain String
- The IPv4 domain that all users must be in.
- enable
Encryption Boolean - If enabled, the endpoint encrypts all information it sends to the LDAP server.
- Boolean
- If enabled, user authorization is also done at the group level for LDAP users not in the local user database.
- enable
Nested BooleanGroup Search - If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively.
- filter String
- Criteria to identify entries in search requests.
- group
Attribute String - Groups to which an LDAP entry belongs.
- is
Password BooleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- nested
Group DoubleSearch Depth - Search depth to look for a nested LDAP group in an LDAP group map.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- password String
- The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters.
- timeout Double
- LDAP authentication timeout duration, in seconds.
- additional
Properties string - attribute string
- Role and locale information of the user.
- base
Dn string - Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- bind
Dn string - Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- bind
Method string - Authentication method to access LDAP servers.*
LoginCredentials
- Requires the user credentials. If the bind process fails, then user is denied access.*Anonymous
- Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access.*ConfiguredCredentials
- Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. - class
Id string - domain string
- The IPv4 domain that all users must be in.
- enable
Encryption boolean - If enabled, the endpoint encrypts all information it sends to the LDAP server.
- boolean
- If enabled, user authorization is also done at the group level for LDAP users not in the local user database.
- enable
Nested booleanGroup Search - If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively.
- filter string
- Criteria to identify entries in search requests.
- group
Attribute string - Groups to which an LDAP entry belongs.
- is
Password booleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- nested
Group numberSearch Depth - Search depth to look for a nested LDAP group in an LDAP group map.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- password string
- The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters.
- timeout number
- LDAP authentication timeout duration, in seconds.
- additional_
properties str - attribute str
- Role and locale information of the user.
- base_
dn str - Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- bind_
dn str - Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- bind_
method str - Authentication method to access LDAP servers.*
LoginCredentials
- Requires the user credentials. If the bind process fails, then user is denied access.*Anonymous
- Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access.*ConfiguredCredentials
- Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. - class_
id str - domain str
- The IPv4 domain that all users must be in.
- enable_
encryption bool - If enabled, the endpoint encrypts all information it sends to the LDAP server.
- bool
- If enabled, user authorization is also done at the group level for LDAP users not in the local user database.
- enable_
nested_ boolgroup_ search - If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively.
- filter str
- Criteria to identify entries in search requests.
- group_
attribute str - Groups to which an LDAP entry belongs.
- is_
password_ boolset - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- nested_
group_ floatsearch_ depth - Search depth to look for a nested LDAP group in an LDAP group map.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- password str
- The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters.
- timeout float
- LDAP authentication timeout duration, in seconds.
- additional
Properties String - attribute String
- Role and locale information of the user.
- base
Dn String - Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- bind
Dn String - Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- bind
Method String - Authentication method to access LDAP servers.*
LoginCredentials
- Requires the user credentials. If the bind process fails, then user is denied access.*Anonymous
- Requires no username and password. If this option is selected and the LDAP server is configured for Anonymous logins, then the user gains access.*ConfiguredCredentials
- Requires a known set of credentials to be specified for the initial bind process. If the initial bind process succeeds, then the distinguished name (DN) of the user name is queried and re-used for the re-binding process. If the re-binding process fails, then the user is denied access. - class
Id String - domain String
- The IPv4 domain that all users must be in.
- enable
Encryption Boolean - If enabled, the endpoint encrypts all information it sends to the LDAP server.
- Boolean
- If enabled, user authorization is also done at the group level for LDAP users not in the local user database.
- enable
Nested BooleanGroup Search - If enabled, an extended search walks the chain of ancestry all the way to the root and returns all the groups and subgroups, each of those groups belong to recursively.
- filter String
- Criteria to identify entries in search requests.
- group
Attribute String - Groups to which an LDAP entry belongs.
- is
Password BooleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- nested
Group NumberSearch Depth - Search depth to look for a nested LDAP group in an LDAP group map.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- password String
- The password of the user for initial bind process. It can be any string that adheres to the following constraints. It can have character except spaces, tabs, line breaks. It cannot be more than 254 characters.
- timeout Number
- LDAP authentication timeout duration, in seconds.
IamLdapPolicyDnsParameter, IamLdapPolicyDnsParameterArgs
- Additional
Properties string - Class
Id string - Nr
Source string - Source of the domain name used for the DNS SRV request.*
Extracted
- The domain name extracted-domain from the login ID.*Configured
- The configured-search domain.*ConfiguredExtracted
- The domain name extracted from the login ID than the configured-search domain. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Search
Domain string - Domain name that acts as a source for a DNS query.
- Search
Forest string - Forest name that acts as a source for a DNS query.
- Additional
Properties string - Class
Id string - Nr
Source string - Source of the domain name used for the DNS SRV request.*
Extracted
- The domain name extracted-domain from the login ID.*Configured
- The configured-search domain.*ConfiguredExtracted
- The domain name extracted from the login ID than the configured-search domain. - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Search
Domain string - Domain name that acts as a source for a DNS query.
- Search
Forest string - Forest name that acts as a source for a DNS query.
- additional
Properties String - class
Id String - nr
Source String - Source of the domain name used for the DNS SRV request.*
Extracted
- The domain name extracted-domain from the login ID.*Configured
- The configured-search domain.*ConfiguredExtracted
- The domain name extracted from the login ID than the configured-search domain. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- search
Domain String - Domain name that acts as a source for a DNS query.
- search
Forest String - Forest name that acts as a source for a DNS query.
- additional
Properties string - class
Id string - nr
Source string - Source of the domain name used for the DNS SRV request.*
Extracted
- The domain name extracted-domain from the login ID.*Configured
- The configured-search domain.*ConfiguredExtracted
- The domain name extracted from the login ID than the configured-search domain. - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- search
Domain string - Domain name that acts as a source for a DNS query.
- search
Forest string - Forest name that acts as a source for a DNS query.
- additional_
properties str - class_
id str - nr_
source str - Source of the domain name used for the DNS SRV request.*
Extracted
- The domain name extracted-domain from the login ID.*Configured
- The configured-search domain.*ConfiguredExtracted
- The domain name extracted from the login ID than the configured-search domain. - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- search_
domain str - Domain name that acts as a source for a DNS query.
- search_
forest str - Forest name that acts as a source for a DNS query.
- additional
Properties String - class
Id String - nr
Source String - Source of the domain name used for the DNS SRV request.*
Extracted
- The domain name extracted-domain from the login ID.*Configured
- The configured-search domain.*ConfiguredExtracted
- The domain name extracted from the login ID than the configured-search domain. - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- search
Domain String - Domain name that acts as a source for a DNS query.
- search
Forest String - Forest name that acts as a source for a DNS query.
IamLdapPolicyGroup, IamLdapPolicyGroupArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyNrProvider, IamLdapPolicyNrProviderArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyOrganization, IamLdapPolicyOrganizationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyParent, IamLdapPolicyParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyPermissionResource, IamLdapPolicyPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyProfile, IamLdapPolicyProfileArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyTag, IamLdapPolicyTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
IamLdapPolicyVersionContext, IamLdapPolicyVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<IamLdap Policy Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<IamLdap Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []IamLdap Policy Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []IamLdap Policy Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<IamLdap Policy Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<IamLdap Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos IamLdap Policy Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos IamLdap Policy Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[IamLdap Policy Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[IamLdap Policy Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
IamLdapPolicyVersionContextInterestedMo, IamLdapPolicyVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamLdapPolicyVersionContextRefMo, IamLdapPolicyVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_iam_ldap_policy
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/iamLdapPolicy:IamLdapPolicy example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.