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.0)
        .objectType("string")
        .password("string")
        .timeout(0.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:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<IamLdap Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApplianceAccounts 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:
- BaseProperties List<IamLdap Policy Base Property> 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- ClassId 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.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DnsParameters List<IamLdap Policy Dns Parameter> 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableDns bool
- Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
List<IamLdap Policy Group> 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- IamLdap stringPolicy Id 
- ModTime 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.
- NrProviders List<IamLdap Policy Nr Provider> 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<IamLdap 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<IamLdap 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:
- PermissionResources List<IamLdap Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<IamLdap 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<IamLdap Policy Tag> 
- This complex property has following sub-properties:
- UserSearch 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.
- VersionContexts List<IamLdap Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]IamLdap Policy Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApplianceAccounts []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:
- BaseProperties []IamLdap Policy Base Property Args 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- ClassId 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.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DnsParameters []IamLdap Policy Dns Parameter Args 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableDns bool
- Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
[]IamLdap Policy Group Args 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- IamLdap stringPolicy Id 
- ModTime 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.
- NrProviders []IamLdap Policy Nr Provider Args 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]IamLdap 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
[]IamLdap 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:
- PermissionResources []IamLdap Policy Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]IamLdap 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.
- 
[]IamLdap Policy Tag Args 
- This complex property has following sub-properties:
- UserSearch 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.
- VersionContexts []IamLdap Policy Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<IamLdap Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- applianceAccounts 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:
- baseProperties List<IamLdap Policy Base Property> 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- classId 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.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dnsParameters List<IamLdap Policy Dns Parameter> 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableDns Boolean
- Enables DNS to access LDAP servers.
- enabled Boolean
- LDAP server performs authentication.
- groups
List<IamLdap Policy Group> 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iamLdap StringPolicy Id 
- modTime 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.
- nrProviders List<IamLdap Policy Nr Provider> 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<IamLdap 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<IamLdap 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:
- permissionResources List<IamLdap Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<IamLdap 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<IamLdap Policy Tag> 
- This complex property has following sub-properties:
- userSearch 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.
- versionContexts List<IamLdap Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
IamLdap Policy Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- applianceAccounts 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:
- baseProperties IamLdap Policy Base Property[] 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- classId 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.
- createTime string
- (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- dnsParameters IamLdap Policy Dns Parameter[] 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableDns boolean
- Enables DNS to access LDAP servers.
- enabled boolean
- LDAP server performs authentication.
- groups
IamLdap Policy Group[] 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iamLdap stringPolicy Id 
- modTime 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.
- nrProviders IamLdap Policy Nr Provider[] 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
IamLdap 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
IamLdap 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:
- permissionResources IamLdap Policy Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
IamLdap 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.
- 
IamLdap Policy Tag[] 
- This complex property has following sub-properties:
- userSearch 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.
- versionContexts 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[IamLdap 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[IamLdap 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[IamLdap 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[IamLdap 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[IamLdap 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[IamLdap 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:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- applianceAccounts 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:
- baseProperties List<Property Map>
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- classId 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.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dnsParameters List<Property Map>
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableDns 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:
- iamLdap StringPolicy Id 
- modTime 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.
- nrProviders List<Property Map>
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- objectType 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:
- permissionResources 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:
- userSearch 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.
- versionContexts 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) -> IamLdapPolicyfunc 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.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<IamLdap Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApplianceAccounts 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:
- BaseProperties List<IamLdap Policy Base Property> 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- ClassId 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.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DnsParameters List<IamLdap Policy Dns Parameter> 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableDns bool
- Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
List<IamLdap Policy Group> 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- IamLdap stringPolicy Id 
- ModTime 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.
- NrProviders List<IamLdap Policy Nr Provider> 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<IamLdap 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<IamLdap 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:
- PermissionResources List<IamLdap Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<IamLdap 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<IamLdap Policy Tag> 
- This complex property has following sub-properties:
- UserSearch 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.
- VersionContexts List<IamLdap Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
[]IamLdap Policy Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApplianceAccounts []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:
- BaseProperties []IamLdap Policy Base Property Args 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- ClassId 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.
- CreateTime string
- (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- DnsParameters []IamLdap Policy Dns Parameter Args 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableDns bool
- Enables DNS to access LDAP servers.
- Enabled bool
- LDAP server performs authentication.
- Groups
[]IamLdap Policy Group Args 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- IamLdap stringPolicy Id 
- ModTime 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.
- NrProviders []IamLdap Policy Nr Provider Args 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]IamLdap 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
[]IamLdap 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:
- PermissionResources []IamLdap Policy Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]IamLdap 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.
- 
[]IamLdap Policy Tag Args 
- This complex property has following sub-properties:
- UserSearch 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.
- VersionContexts []IamLdap Policy Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors
List<IamLdap Policy Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- applianceAccounts 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:
- baseProperties List<IamLdap Policy Base Property> 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- classId 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.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dnsParameters List<IamLdap Policy Dns Parameter> 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableDns Boolean
- Enables DNS to access LDAP servers.
- enabled Boolean
- LDAP server performs authentication.
- groups
List<IamLdap Policy Group> 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iamLdap StringPolicy Id 
- modTime 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.
- nrProviders List<IamLdap Policy Nr Provider> 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<IamLdap 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<IamLdap 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:
- permissionResources List<IamLdap Policy Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<IamLdap 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<IamLdap Policy Tag> 
- This complex property has following sub-properties:
- userSearch 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.
- versionContexts List<IamLdap Policy Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- additionalProperties string
- ancestors
IamLdap Policy Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- applianceAccounts 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:
- baseProperties IamLdap Policy Base Property[] 
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- classId 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.
- createTime string
- (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- dnsParameters IamLdap Policy Dns Parameter[] 
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableDns boolean
- Enables DNS to access LDAP servers.
- enabled boolean
- LDAP server performs authentication.
- groups
IamLdap Policy Group[] 
- An array of relationships to iamLdapGroup resources. This complex property has following sub-properties:
- iamLdap stringPolicy Id 
- modTime 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.
- nrProviders IamLdap Policy Nr Provider[] 
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
IamLdap 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
IamLdap 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:
- permissionResources IamLdap Policy Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
IamLdap 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.
- 
IamLdap Policy Tag[] 
- This complex property has following sub-properties:
- userSearch 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.
- versionContexts 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[IamLdap 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[IamLdap 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[IamLdap 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[IamLdap 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[IamLdap 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[IamLdap 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:
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- additionalProperties String
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- applianceAccounts 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:
- baseProperties List<Property Map>
- Base settings of LDAP required while configuring LDAP policy. This complex property has following sub-properties:
- classId 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.
- createTime String
- (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- dnsParameters List<Property Map>
- Configuration settings to resolve LDAP servers, when DNS is enabled. This complex property has following sub-properties:
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableDns 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:
- iamLdap StringPolicy Id 
- modTime 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.
- nrProviders List<Property Map>
- An array of relationships to iamLdapProvider resources. This complex property has following sub-properties:
- objectType 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:
- permissionResources 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:
- userSearch 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.
- versionContexts List<Property Map>
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
IamLdapPolicyAncestor, IamLdapPolicyAncestorArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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          
- AdditionalProperties string
- Attribute string
- Role and locale information of the user.
- BaseDn string
- Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- BindDn string
- Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- BindMethod 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.
- ClassId string
- Domain string
- The IPv4 domain that all users must be in.
- EnableEncryption 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.
- EnableNested 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.
- GroupAttribute string
- Groups to which an LDAP entry belongs.
- IsPassword boolSet 
- (ReadOnly) Indicates whether the value of the 'password' property has been set.
- NestedGroup doubleSearch Depth 
- Search depth to look for a nested LDAP group in an LDAP group map.
- ObjectType 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.
- AdditionalProperties string
- Attribute string
- Role and locale information of the user.
- BaseDn string
- Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- BindDn string
- Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- BindMethod 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.
- ClassId string
- Domain string
- The IPv4 domain that all users must be in.
- EnableEncryption 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.
- EnableNested 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.
- GroupAttribute string
- Groups to which an LDAP entry belongs.
- IsPassword boolSet 
- (ReadOnly) Indicates whether the value of the 'password' property has been set.
- NestedGroup float64Search Depth 
- Search depth to look for a nested LDAP group in an LDAP group map.
- ObjectType 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.
- additionalProperties String
- attribute String
- Role and locale information of the user.
- baseDn String
- Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- bindDn String
- Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- bindMethod 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.
- classId String
- domain String
- The IPv4 domain that all users must be in.
- enableEncryption 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.
- enableNested 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.
- groupAttribute String
- Groups to which an LDAP entry belongs.
- isPassword BooleanSet 
- (ReadOnly) Indicates whether the value of the 'password' property has been set.
- nestedGroup DoubleSearch Depth 
- Search depth to look for a nested LDAP group in an LDAP group map.
- objectType 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.
- additionalProperties string
- attribute string
- Role and locale information of the user.
- baseDn string
- Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- bindDn string
- Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- bindMethod 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.
- classId string
- domain string
- The IPv4 domain that all users must be in.
- enableEncryption 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.
- enableNested 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.
- groupAttribute string
- Groups to which an LDAP entry belongs.
- isPassword booleanSet 
- (ReadOnly) Indicates whether the value of the 'password' property has been set.
- nestedGroup numberSearch Depth 
- Search depth to look for a nested LDAP group in an LDAP group map.
- objectType 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.
- additionalProperties String
- attribute String
- Role and locale information of the user.
- baseDn String
- Base Distinguished Name (DN). Starting point from where server will search for users and groups.
- bindDn String
- Distinguished Name (DN) of the user, that is used to authenticate against LDAP servers.
- bindMethod 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.
- classId String
- domain String
- The IPv4 domain that all users must be in.
- enableEncryption 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.
- enableNested 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.
- groupAttribute String
- Groups to which an LDAP entry belongs.
- isPassword BooleanSet 
- (ReadOnly) Indicates whether the value of the 'password' property has been set.
- nestedGroup NumberSearch Depth 
- Search depth to look for a nested LDAP group in an LDAP group map.
- objectType 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          
- AdditionalProperties string
- ClassId string
- NrSource 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.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- SearchDomain string
- Domain name that acts as a source for a DNS query.
- SearchForest string
- Forest name that acts as a source for a DNS query.
- AdditionalProperties string
- ClassId string
- NrSource 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.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- SearchDomain string
- Domain name that acts as a source for a DNS query.
- SearchForest string
- Forest name that acts as a source for a DNS query.
- additionalProperties String
- classId String
- nrSource 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.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- searchDomain String
- Domain name that acts as a source for a DNS query.
- searchForest String
- Forest name that acts as a source for a DNS query.
- additionalProperties string
- classId string
- nrSource 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.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- searchDomain string
- Domain name that acts as a source for a DNS query.
- searchForest 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.
- additionalProperties String
- classId String
- nrSource 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.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- searchDomain String
- Domain name that acts as a source for a DNS query.
- searchForest String
- Forest name that acts as a source for a DNS query.
IamLdapPolicyGroup, IamLdapPolicyGroupArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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        
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additionalProperties 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.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
IamLdapPolicyVersionContext, IamLdapPolicyVersionContextArgs          
- AdditionalProperties string
- ClassId string
- InterestedMos List<IamLdap Policy Version Context Interested Mo> 
- This complex property has following sub-properties:
- MarkedFor 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.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos 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.
- VersionType 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.
- AdditionalProperties string
- ClassId string
- InterestedMos []IamLdap Policy Version Context Interested Mo 
- This complex property has following sub-properties:
- MarkedFor 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.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos []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.
- VersionType 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.
- additionalProperties String
- classId String
- interestedMos List<IamLdap Policy Version Context Interested Mo> 
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos 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.
- versionType 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.
- additionalProperties string
- classId string
- interestedMos IamLdap Policy Version Context Interested Mo[] 
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos 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.
- versionType 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.
- additionalProperties String
- classId String
- interestedMos List<Property Map>
- This complex property has following sub-properties:
- markedFor 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.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos 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.
- versionType 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              
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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              
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType 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'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType 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 intersightTerraform Provider.