intersight.IppoolPool
Explore with Pulumi AI
Pool represents a collection of IPv4 and/or IPv6 addresses that can be allocated to other configuration entities like server profiles.
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 ippoolPool1 = new intersight.IppoolPool("ippoolPool1", {
    description: "ippool pool",
    assignmentOrder: "sequential",
    ipV4Configs: [{
        objectType: "ippool.IpV4Config",
        gateway: "10.1.1.1",
        netmask: "255.0.0.0",
        primaryDns: "8.8.8.8",
    }],
    organizations: [{
        objectType: "organization.Organization",
        moid: organization,
    }],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
organization = config.require("organization")
ippool_pool1 = intersight.IppoolPool("ippoolPool1",
    description="ippool pool",
    assignment_order="sequential",
    ip_v4_configs=[{
        "object_type": "ippool.IpV4Config",
        "gateway": "10.1.1.1",
        "netmask": "255.0.0.0",
        "primary_dns": "8.8.8.8",
    }],
    organizations=[{
        "object_type": "organization.Organization",
        "moid": organization,
    }])
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.NewIppoolPool(ctx, "ippoolPool1", &intersight.IppoolPoolArgs{
			Description:     pulumi.String("ippool pool"),
			AssignmentOrder: pulumi.String("sequential"),
			IpV4Configs: intersight.IppoolPoolIpV4ConfigArray{
				&intersight.IppoolPoolIpV4ConfigArgs{
					ObjectType: pulumi.String("ippool.IpV4Config"),
					Gateway:    pulumi.String("10.1.1.1"),
					Netmask:    pulumi.String("255.0.0.0"),
					PrimaryDns: pulumi.String("8.8.8.8"),
				},
			},
			Organizations: intersight.IppoolPoolOrganizationArray{
				&intersight.IppoolPoolOrganizationArgs{
					ObjectType: pulumi.String("organization.Organization"),
					Moid:       pulumi.String(organization),
				},
			},
		})
		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 ippoolPool1 = new Intersight.IppoolPool("ippoolPool1", new()
    {
        Description = "ippool pool",
        AssignmentOrder = "sequential",
        IpV4Configs = new[]
        {
            new Intersight.Inputs.IppoolPoolIpV4ConfigArgs
            {
                ObjectType = "ippool.IpV4Config",
                Gateway = "10.1.1.1",
                Netmask = "255.0.0.0",
                PrimaryDns = "8.8.8.8",
            },
        },
        Organizations = new[]
        {
            new Intersight.Inputs.IppoolPoolOrganizationArgs
            {
                ObjectType = "organization.Organization",
                Moid = organization,
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.IppoolPool;
import com.pulumi.intersight.IppoolPoolArgs;
import com.pulumi.intersight.inputs.IppoolPoolIpV4ConfigArgs;
import com.pulumi.intersight.inputs.IppoolPoolOrganizationArgs;
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 ippoolPool1 = new IppoolPool("ippoolPool1", IppoolPoolArgs.builder()
            .description("ippool pool")
            .assignmentOrder("sequential")
            .ipV4Configs(IppoolPoolIpV4ConfigArgs.builder()
                .objectType("ippool.IpV4Config")
                .gateway("10.1.1.1")
                .netmask("255.0.0.0")
                .primaryDns("8.8.8.8")
                .build())
            .organizations(IppoolPoolOrganizationArgs.builder()
                .objectType("organization.Organization")
                .moid(organization)
                .build())
            .build());
    }
}
configuration:
  organization:
    type: string
resources:
  ippoolPool1:
    type: intersight:IppoolPool
    properties:
      description: ippool pool
      assignmentOrder: sequential
      ipV4Configs:
        - objectType: ippool.IpV4Config
          gateway: 10.1.1.1
          netmask: 255.0.0.0
          primaryDns: 8.8.8.8
      organizations:
        - objectType: organization.Organization
          moid: ${organization}
Create IppoolPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IppoolPool(name: string, args?: IppoolPoolArgs, opts?: CustomResourceOptions);@overload
def IppoolPool(resource_name: str,
               args: Optional[IppoolPoolArgs] = None,
               opts: Optional[ResourceOptions] = None)
@overload
def IppoolPool(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               account_moid: Optional[str] = None,
               additional_properties: Optional[str] = None,
               ancestors: Optional[Sequence[IppoolPoolAncestorArgs]] = None,
               assigned: Optional[float] = None,
               assignment_order: Optional[str] = None,
               class_id: Optional[str] = None,
               create_time: Optional[str] = None,
               description: Optional[str] = None,
               domain_group_moid: Optional[str] = None,
               enable_block_level_subnet_config: Optional[bool] = None,
               ip_v4_blocks: Optional[Sequence[IppoolPoolIpV4BlockArgs]] = None,
               ip_v4_configs: Optional[Sequence[IppoolPoolIpV4ConfigArgs]] = None,
               ip_v6_blocks: Optional[Sequence[IppoolPoolIpV6BlockArgs]] = None,
               ip_v6_configs: Optional[Sequence[IppoolPoolIpV6ConfigArgs]] = None,
               ippool_pool_id: Optional[str] = None,
               mod_time: Optional[str] = None,
               moid: Optional[str] = None,
               name: Optional[str] = None,
               object_type: Optional[str] = None,
               organizations: Optional[Sequence[IppoolPoolOrganizationArgs]] = None,
               owners: Optional[Sequence[str]] = None,
               parents: Optional[Sequence[IppoolPoolParentArgs]] = None,
               permission_resources: Optional[Sequence[IppoolPoolPermissionResourceArgs]] = None,
               reservations: Optional[Sequence[IppoolPoolReservationArgs]] = None,
               reserved: Optional[float] = None,
               shadow_pools: Optional[Sequence[IppoolPoolShadowPoolArgs]] = None,
               shared_scope: Optional[str] = None,
               size: Optional[float] = None,
               tags: Optional[Sequence[IppoolPoolTagArgs]] = None,
               v4_assigned: Optional[float] = None,
               v4_size: Optional[float] = None,
               v6_assigned: Optional[float] = None,
               v6_size: Optional[float] = None,
               version_contexts: Optional[Sequence[IppoolPoolVersionContextArgs]] = None)func NewIppoolPool(ctx *Context, name string, args *IppoolPoolArgs, opts ...ResourceOption) (*IppoolPool, error)public IppoolPool(string name, IppoolPoolArgs? args = null, CustomResourceOptions? opts = null)
public IppoolPool(String name, IppoolPoolArgs args)
public IppoolPool(String name, IppoolPoolArgs args, CustomResourceOptions options)
type: intersight:IppoolPool
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 IppoolPoolArgs
- 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 IppoolPoolArgs
- 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 IppoolPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IppoolPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IppoolPoolArgs
- 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 ippoolPoolResource = new Intersight.IppoolPool("ippoolPoolResource", new()
{
    AccountMoid = "string",
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.IppoolPoolAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Assigned = 0,
    AssignmentOrder = "string",
    ClassId = "string",
    CreateTime = "string",
    Description = "string",
    DomainGroupMoid = "string",
    EnableBlockLevelSubnetConfig = false,
    IpV4Blocks = new[]
    {
        new Intersight.Inputs.IppoolPoolIpV4BlockArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            From = "string",
            IpV4Configs = new[]
            {
                new Intersight.Inputs.IppoolPoolIpV4BlockIpV4ConfigArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Gateway = "string",
                    Netmask = "string",
                    ObjectType = "string",
                    PrimaryDns = "string",
                    SecondaryDns = "string",
                },
            },
            ObjectType = "string",
            Size = 0,
            To = "string",
        },
    },
    IpV4Configs = new[]
    {
        new Intersight.Inputs.IppoolPoolIpV4ConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Gateway = "string",
            Netmask = "string",
            ObjectType = "string",
            PrimaryDns = "string",
            SecondaryDns = "string",
        },
    },
    IpV6Blocks = new[]
    {
        new Intersight.Inputs.IppoolPoolIpV6BlockArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            From = "string",
            IpV6Configs = new[]
            {
                new Intersight.Inputs.IppoolPoolIpV6BlockIpV6ConfigArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Gateway = "string",
                    ObjectType = "string",
                    Prefix = 0,
                    PrimaryDns = "string",
                    SecondaryDns = "string",
                },
            },
            ObjectType = "string",
            Size = 0,
            To = "string",
        },
    },
    IpV6Configs = new[]
    {
        new Intersight.Inputs.IppoolPoolIpV6ConfigArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Gateway = "string",
            ObjectType = "string",
            Prefix = 0,
            PrimaryDns = "string",
            SecondaryDns = "string",
        },
    },
    IppoolPoolId = "string",
    ModTime = "string",
    Moid = "string",
    Name = "string",
    ObjectType = "string",
    Organizations = new[]
    {
        new Intersight.Inputs.IppoolPoolOrganizationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.IppoolPoolParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.IppoolPoolPermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Reservations = new[]
    {
        new Intersight.Inputs.IppoolPoolReservationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Reserved = 0,
    ShadowPools = new[]
    {
        new Intersight.Inputs.IppoolPoolShadowPoolArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SharedScope = "string",
    Size = 0,
    Tags = new[]
    {
        new Intersight.Inputs.IppoolPoolTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    V4Assigned = 0,
    V4Size = 0,
    V6Assigned = 0,
    V6Size = 0,
    VersionContexts = new[]
    {
        new Intersight.Inputs.IppoolPoolVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.IppoolPoolVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.IppoolPoolVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
});
example, err := intersight.NewIppoolPool(ctx, "ippoolPoolResource", &intersight.IppoolPoolArgs{
	AccountMoid:          pulumi.String("string"),
	AdditionalProperties: pulumi.String("string"),
	Ancestors: intersight.IppoolPoolAncestorArray{
		&intersight.IppoolPoolAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Assigned:                     pulumi.Float64(0),
	AssignmentOrder:              pulumi.String("string"),
	ClassId:                      pulumi.String("string"),
	CreateTime:                   pulumi.String("string"),
	Description:                  pulumi.String("string"),
	DomainGroupMoid:              pulumi.String("string"),
	EnableBlockLevelSubnetConfig: pulumi.Bool(false),
	IpV4Blocks: intersight.IppoolPoolIpV4BlockArray{
		&intersight.IppoolPoolIpV4BlockArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			From:                 pulumi.String("string"),
			IpV4Configs: intersight.IppoolPoolIpV4BlockIpV4ConfigArray{
				&intersight.IppoolPoolIpV4BlockIpV4ConfigArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Gateway:              pulumi.String("string"),
					Netmask:              pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					PrimaryDns:           pulumi.String("string"),
					SecondaryDns:         pulumi.String("string"),
				},
			},
			ObjectType: pulumi.String("string"),
			Size:       pulumi.Float64(0),
			To:         pulumi.String("string"),
		},
	},
	IpV4Configs: intersight.IppoolPoolIpV4ConfigArray{
		&intersight.IppoolPoolIpV4ConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Gateway:              pulumi.String("string"),
			Netmask:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			PrimaryDns:           pulumi.String("string"),
			SecondaryDns:         pulumi.String("string"),
		},
	},
	IpV6Blocks: intersight.IppoolPoolIpV6BlockArray{
		&intersight.IppoolPoolIpV6BlockArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			From:                 pulumi.String("string"),
			IpV6Configs: intersight.IppoolPoolIpV6BlockIpV6ConfigArray{
				&intersight.IppoolPoolIpV6BlockIpV6ConfigArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Gateway:              pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Prefix:               pulumi.Float64(0),
					PrimaryDns:           pulumi.String("string"),
					SecondaryDns:         pulumi.String("string"),
				},
			},
			ObjectType: pulumi.String("string"),
			Size:       pulumi.Float64(0),
			To:         pulumi.String("string"),
		},
	},
	IpV6Configs: intersight.IppoolPoolIpV6ConfigArray{
		&intersight.IppoolPoolIpV6ConfigArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Gateway:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Prefix:               pulumi.Float64(0),
			PrimaryDns:           pulumi.String("string"),
			SecondaryDns:         pulumi.String("string"),
		},
	},
	IppoolPoolId: pulumi.String("string"),
	ModTime:      pulumi.String("string"),
	Moid:         pulumi.String("string"),
	Name:         pulumi.String("string"),
	ObjectType:   pulumi.String("string"),
	Organizations: intersight.IppoolPoolOrganizationArray{
		&intersight.IppoolPoolOrganizationArgs{
			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.IppoolPoolParentArray{
		&intersight.IppoolPoolParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.IppoolPoolPermissionResourceArray{
		&intersight.IppoolPoolPermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Reservations: intersight.IppoolPoolReservationArray{
		&intersight.IppoolPoolReservationArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Reserved: pulumi.Float64(0),
	ShadowPools: intersight.IppoolPoolShadowPoolArray{
		&intersight.IppoolPoolShadowPoolArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SharedScope: pulumi.String("string"),
	Size:        pulumi.Float64(0),
	Tags: intersight.IppoolPoolTagArray{
		&intersight.IppoolPoolTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	V4Assigned: pulumi.Float64(0),
	V4Size:     pulumi.Float64(0),
	V6Assigned: pulumi.Float64(0),
	V6Size:     pulumi.Float64(0),
	VersionContexts: intersight.IppoolPoolVersionContextArray{
		&intersight.IppoolPoolVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.IppoolPoolVersionContextInterestedMoArray{
				&intersight.IppoolPoolVersionContextInterestedMoArgs{
					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.IppoolPoolVersionContextRefMoArray{
				&intersight.IppoolPoolVersionContextRefMoArgs{
					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 ippoolPoolResource = new IppoolPool("ippoolPoolResource", IppoolPoolArgs.builder()
    .accountMoid("string")
    .additionalProperties("string")
    .ancestors(IppoolPoolAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .assigned(0.0)
    .assignmentOrder("string")
    .classId("string")
    .createTime("string")
    .description("string")
    .domainGroupMoid("string")
    .enableBlockLevelSubnetConfig(false)
    .ipV4Blocks(IppoolPoolIpV4BlockArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .from("string")
        .ipV4Configs(IppoolPoolIpV4BlockIpV4ConfigArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .gateway("string")
            .netmask("string")
            .objectType("string")
            .primaryDns("string")
            .secondaryDns("string")
            .build())
        .objectType("string")
        .size(0.0)
        .to("string")
        .build())
    .ipV4Configs(IppoolPoolIpV4ConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .gateway("string")
        .netmask("string")
        .objectType("string")
        .primaryDns("string")
        .secondaryDns("string")
        .build())
    .ipV6Blocks(IppoolPoolIpV6BlockArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .from("string")
        .ipV6Configs(IppoolPoolIpV6BlockIpV6ConfigArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .gateway("string")
            .objectType("string")
            .prefix(0.0)
            .primaryDns("string")
            .secondaryDns("string")
            .build())
        .objectType("string")
        .size(0.0)
        .to("string")
        .build())
    .ipV6Configs(IppoolPoolIpV6ConfigArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .gateway("string")
        .objectType("string")
        .prefix(0.0)
        .primaryDns("string")
        .secondaryDns("string")
        .build())
    .ippoolPoolId("string")
    .modTime("string")
    .moid("string")
    .name("string")
    .objectType("string")
    .organizations(IppoolPoolOrganizationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .owners("string")
    .parents(IppoolPoolParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(IppoolPoolPermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .reservations(IppoolPoolReservationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .reserved(0.0)
    .shadowPools(IppoolPoolShadowPoolArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .sharedScope("string")
    .size(0.0)
    .tags(IppoolPoolTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .v4Assigned(0.0)
    .v4Size(0.0)
    .v6Assigned(0.0)
    .v6Size(0.0)
    .versionContexts(IppoolPoolVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(IppoolPoolVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(IppoolPoolVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .build());
ippool_pool_resource = intersight.IppoolPool("ippoolPoolResource",
    account_moid="string",
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    assigned=0,
    assignment_order="string",
    class_id="string",
    create_time="string",
    description="string",
    domain_group_moid="string",
    enable_block_level_subnet_config=False,
    ip_v4_blocks=[{
        "additional_properties": "string",
        "class_id": "string",
        "from_": "string",
        "ip_v4_configs": [{
            "additional_properties": "string",
            "class_id": "string",
            "gateway": "string",
            "netmask": "string",
            "object_type": "string",
            "primary_dns": "string",
            "secondary_dns": "string",
        }],
        "object_type": "string",
        "size": 0,
        "to": "string",
    }],
    ip_v4_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "gateway": "string",
        "netmask": "string",
        "object_type": "string",
        "primary_dns": "string",
        "secondary_dns": "string",
    }],
    ip_v6_blocks=[{
        "additional_properties": "string",
        "class_id": "string",
        "from_": "string",
        "ip_v6_configs": [{
            "additional_properties": "string",
            "class_id": "string",
            "gateway": "string",
            "object_type": "string",
            "prefix": 0,
            "primary_dns": "string",
            "secondary_dns": "string",
        }],
        "object_type": "string",
        "size": 0,
        "to": "string",
    }],
    ip_v6_configs=[{
        "additional_properties": "string",
        "class_id": "string",
        "gateway": "string",
        "object_type": "string",
        "prefix": 0,
        "primary_dns": "string",
        "secondary_dns": "string",
    }],
    ippool_pool_id="string",
    mod_time="string",
    moid="string",
    name="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",
    }],
    reservations=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    reserved=0,
    shadow_pools=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    shared_scope="string",
    size=0,
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    v4_assigned=0,
    v4_size=0,
    v6_assigned=0,
    v6_size=0,
    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 ippoolPoolResource = new intersight.IppoolPool("ippoolPoolResource", {
    accountMoid: "string",
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    assigned: 0,
    assignmentOrder: "string",
    classId: "string",
    createTime: "string",
    description: "string",
    domainGroupMoid: "string",
    enableBlockLevelSubnetConfig: false,
    ipV4Blocks: [{
        additionalProperties: "string",
        classId: "string",
        from: "string",
        ipV4Configs: [{
            additionalProperties: "string",
            classId: "string",
            gateway: "string",
            netmask: "string",
            objectType: "string",
            primaryDns: "string",
            secondaryDns: "string",
        }],
        objectType: "string",
        size: 0,
        to: "string",
    }],
    ipV4Configs: [{
        additionalProperties: "string",
        classId: "string",
        gateway: "string",
        netmask: "string",
        objectType: "string",
        primaryDns: "string",
        secondaryDns: "string",
    }],
    ipV6Blocks: [{
        additionalProperties: "string",
        classId: "string",
        from: "string",
        ipV6Configs: [{
            additionalProperties: "string",
            classId: "string",
            gateway: "string",
            objectType: "string",
            prefix: 0,
            primaryDns: "string",
            secondaryDns: "string",
        }],
        objectType: "string",
        size: 0,
        to: "string",
    }],
    ipV6Configs: [{
        additionalProperties: "string",
        classId: "string",
        gateway: "string",
        objectType: "string",
        prefix: 0,
        primaryDns: "string",
        secondaryDns: "string",
    }],
    ippoolPoolId: "string",
    modTime: "string",
    moid: "string",
    name: "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",
    }],
    reservations: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    reserved: 0,
    shadowPools: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sharedScope: "string",
    size: 0,
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    v4Assigned: 0,
    v4Size: 0,
    v6Assigned: 0,
    v6Size: 0,
    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:IppoolPool
properties:
    accountMoid: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    assigned: 0
    assignmentOrder: string
    classId: string
    createTime: string
    description: string
    domainGroupMoid: string
    enableBlockLevelSubnetConfig: false
    ipV4Blocks:
        - additionalProperties: string
          classId: string
          from: string
          ipV4Configs:
            - additionalProperties: string
              classId: string
              gateway: string
              netmask: string
              objectType: string
              primaryDns: string
              secondaryDns: string
          objectType: string
          size: 0
          to: string
    ipV4Configs:
        - additionalProperties: string
          classId: string
          gateway: string
          netmask: string
          objectType: string
          primaryDns: string
          secondaryDns: string
    ipV6Blocks:
        - additionalProperties: string
          classId: string
          from: string
          ipV6Configs:
            - additionalProperties: string
              classId: string
              gateway: string
              objectType: string
              prefix: 0
              primaryDns: string
              secondaryDns: string
          objectType: string
          size: 0
          to: string
    ipV6Configs:
        - additionalProperties: string
          classId: string
          gateway: string
          objectType: string
          prefix: 0
          primaryDns: string
          secondaryDns: string
    ippoolPoolId: string
    modTime: string
    moid: string
    name: 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
    reservations:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    reserved: 0
    shadowPools:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sharedScope: string
    size: 0
    tags:
        - additionalProperties: string
          key: string
          value: string
    v4Assigned: 0
    v4Size: 0
    v6Assigned: 0
    v6Size: 0
    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
IppoolPool 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 IppoolPool resource accepts the following input properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- AdditionalProperties string
- Ancestors
List<IppoolPool Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned double
- (ReadOnly) Number of IDs that are currently assigned (in use).
- AssignmentOrder string
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableBlock boolLevel Subnet Config 
- Enables subnet configuration at the block level.
- IpV4Blocks List<IppoolPool Ip V4Block> 
- This complex property has following sub-properties:
- IpV4Configs List<IppoolPool Ip V4Config> 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- IpV6Blocks List<IppoolPool Ip V6Block> 
- This complex property has following sub-properties:
- IpV6Configs List<IppoolPool Ip V6Config> 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- IppoolPool stringId 
- 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.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<IppoolPool 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<IppoolPool 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<IppoolPool Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
List<IppoolPool Reservation> 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- Reserved double
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- ShadowPools List<IppoolPool Shadow Pool> 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- Size double
- (ReadOnly) Total number of identifiers in this pool.
- 
List<IppoolPool Tag> 
- This complex property has following sub-properties:
- V4Assigned double
- (ReadOnly) Number of IPv4 addresses currently in use.
- V4Size double
- (ReadOnly) Number of IPv4 addresses in this pool.
- V6Assigned double
- (ReadOnly) Number of IPv6 addresses currently in use.
- V6Size double
- (ReadOnly) Number of IPv6 addresses in this pool.
- VersionContexts List<IppoolPool 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
[]IppoolPool Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned float64
- (ReadOnly) Number of IDs that are currently assigned (in use).
- AssignmentOrder string
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableBlock boolLevel Subnet Config 
- Enables subnet configuration at the block level.
- IpV4Blocks []IppoolPool Ip V4Block Args 
- This complex property has following sub-properties:
- IpV4Configs []IppoolPool Ip V4Config Args 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- IpV6Blocks []IppoolPool Ip V6Block Args 
- This complex property has following sub-properties:
- IpV6Configs []IppoolPool Ip V6Config Args 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- IppoolPool stringId 
- 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.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]IppoolPool 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
[]IppoolPool 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 []IppoolPool Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
[]IppoolPool Reservation Args 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- Reserved float64
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- ShadowPools []IppoolPool Shadow Pool Args 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- Size float64
- (ReadOnly) Total number of identifiers in this pool.
- 
[]IppoolPool Tag Args 
- This complex property has following sub-properties:
- V4Assigned float64
- (ReadOnly) Number of IPv4 addresses currently in use.
- V4Size float64
- (ReadOnly) Number of IPv4 addresses in this pool.
- V6Assigned float64
- (ReadOnly) Number of IPv6 addresses currently in use.
- V6Size float64
- (ReadOnly) Number of IPv6 addresses in this pool.
- VersionContexts []IppoolPool 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<IppoolPool Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned Double
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignmentOrder String
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableBlock BooleanLevel Subnet Config 
- Enables subnet configuration at the block level.
- ipV4Blocks List<IppoolPool Ip V4Block> 
- This complex property has following sub-properties:
- ipV4Configs List<IppoolPool Ip V4Config> 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ipV6Blocks List<IppoolPool Ip V6Block> 
- This complex property has following sub-properties:
- ipV6Configs List<IppoolPool Ip V6Config> 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippoolPool StringId 
- 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.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<IppoolPool 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<IppoolPool 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<IppoolPool Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
List<IppoolPool Reservation> 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved Double
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadowPools List<IppoolPool Shadow Pool> 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size Double
- (ReadOnly) Total number of identifiers in this pool.
- 
List<IppoolPool Tag> 
- This complex property has following sub-properties:
- v4Assigned Double
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4Size Double
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6Assigned Double
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6Size Double
- (ReadOnly) Number of IPv6 addresses in this pool.
- versionContexts List<IppoolPool 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
IppoolPool Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned number
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignmentOrder string
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableBlock booleanLevel Subnet Config 
- Enables subnet configuration at the block level.
- ipV4Blocks IppoolPool Ip V4Block[] 
- This complex property has following sub-properties:
- ipV4Configs IppoolPool Ip V4Config[] 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ipV6Blocks IppoolPool Ip V6Block[] 
- This complex property has following sub-properties:
- ipV6Configs IppoolPool Ip V6Config[] 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippoolPool stringId 
- 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.
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
IppoolPool 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
IppoolPool 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 IppoolPool Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
IppoolPool Reservation[] 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved number
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadowPools IppoolPool Shadow Pool[] 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size number
- (ReadOnly) Total number of identifiers in this pool.
- 
IppoolPool Tag[] 
- This complex property has following sub-properties:
- v4Assigned number
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4Size number
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6Assigned number
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6Size number
- (ReadOnly) Number of IPv6 addresses in this pool.
- versionContexts IppoolPool 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[IppoolPool Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned float
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignment_order str
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enable_block_ boollevel_ subnet_ config 
- Enables subnet configuration at the block level.
- ip_v4_ Sequence[Ippoolblocks Pool Ip V4Block Args] 
- This complex property has following sub-properties:
- ip_v4_ Sequence[Ippoolconfigs Pool Ip V4Config Args] 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip_v6_ Sequence[Ippoolblocks Pool Ip V6Block Args] 
- This complex property has following sub-properties:
- ip_v6_ Sequence[Ippoolconfigs Pool Ip V6Config Args] 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool_pool_ strid 
- 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.
- object_type str
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[IppoolPool 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[IppoolPool 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[IppoolPool Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
Sequence[IppoolPool Reservation Args] 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved float
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadow_pools Sequence[IppoolPool Shadow Pool Args] 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size float
- (ReadOnly) Total number of identifiers in this pool.
- 
Sequence[IppoolPool Tag Args] 
- This complex property has following sub-properties:
- v4_assigned float
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4_size float
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6_assigned float
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6_size float
- (ReadOnly) Number of IPv6 addresses in this pool.
- version_contexts Sequence[IppoolPool 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:
- assigned Number
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignmentOrder String
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableBlock BooleanLevel Subnet Config 
- Enables subnet configuration at the block level.
- ipV4Blocks List<Property Map>
- This complex property has following sub-properties:
- ipV4Configs List<Property Map>
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ipV6Blocks List<Property Map>
- This complex property has following sub-properties:
- ipV6Configs List<Property Map>
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippoolPool StringId 
- 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.
- 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:
- reservations List<Property Map>
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved Number
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadowPools List<Property Map>
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size Number
- (ReadOnly) Total number of identifiers in this pool.
- List<Property Map>
- This complex property has following sub-properties:
- v4Assigned Number
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4Size Number
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6Assigned Number
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6Size Number
- (ReadOnly) Number of IPv6 addresses in this pool.
- 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 IppoolPool 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 IppoolPool Resource
Get an existing IppoolPool 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?: IppoolPoolState, opts?: CustomResourceOptions): IppoolPool@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[IppoolPoolAncestorArgs]] = None,
        assigned: Optional[float] = None,
        assignment_order: Optional[str] = None,
        class_id: Optional[str] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        enable_block_level_subnet_config: Optional[bool] = None,
        ip_v4_blocks: Optional[Sequence[IppoolPoolIpV4BlockArgs]] = None,
        ip_v4_configs: Optional[Sequence[IppoolPoolIpV4ConfigArgs]] = None,
        ip_v6_blocks: Optional[Sequence[IppoolPoolIpV6BlockArgs]] = None,
        ip_v6_configs: Optional[Sequence[IppoolPoolIpV6ConfigArgs]] = None,
        ippool_pool_id: Optional[str] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        object_type: Optional[str] = None,
        organizations: Optional[Sequence[IppoolPoolOrganizationArgs]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[IppoolPoolParentArgs]] = None,
        permission_resources: Optional[Sequence[IppoolPoolPermissionResourceArgs]] = None,
        reservations: Optional[Sequence[IppoolPoolReservationArgs]] = None,
        reserved: Optional[float] = None,
        shadow_pools: Optional[Sequence[IppoolPoolShadowPoolArgs]] = None,
        shared_scope: Optional[str] = None,
        size: Optional[float] = None,
        tags: Optional[Sequence[IppoolPoolTagArgs]] = None,
        v4_assigned: Optional[float] = None,
        v4_size: Optional[float] = None,
        v6_assigned: Optional[float] = None,
        v6_size: Optional[float] = None,
        version_contexts: Optional[Sequence[IppoolPoolVersionContextArgs]] = None) -> IppoolPoolfunc GetIppoolPool(ctx *Context, name string, id IDInput, state *IppoolPoolState, opts ...ResourceOption) (*IppoolPool, error)public static IppoolPool Get(string name, Input<string> id, IppoolPoolState? state, CustomResourceOptions? opts = null)public static IppoolPool get(String name, Output<String> id, IppoolPoolState state, CustomResourceOptions options)resources:  _:    type: intersight:IppoolPool    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<IppoolPool Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned double
- (ReadOnly) Number of IDs that are currently assigned (in use).
- AssignmentOrder string
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableBlock boolLevel Subnet Config 
- Enables subnet configuration at the block level.
- IpV4Blocks List<IppoolPool Ip V4Block> 
- This complex property has following sub-properties:
- IpV4Configs List<IppoolPool Ip V4Config> 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- IpV6Blocks List<IppoolPool Ip V6Block> 
- This complex property has following sub-properties:
- IpV6Configs List<IppoolPool Ip V6Config> 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- IppoolPool stringId 
- 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.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<IppoolPool 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<IppoolPool 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<IppoolPool Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
List<IppoolPool Reservation> 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- Reserved double
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- ShadowPools List<IppoolPool Shadow Pool> 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- Size double
- (ReadOnly) Total number of identifiers in this pool.
- 
List<IppoolPool Tag> 
- This complex property has following sub-properties:
- V4Assigned double
- (ReadOnly) Number of IPv4 addresses currently in use.
- V4Size double
- (ReadOnly) Number of IPv4 addresses in this pool.
- V6Assigned double
- (ReadOnly) Number of IPv6 addresses currently in use.
- V6Size double
- (ReadOnly) Number of IPv6 addresses in this pool.
- VersionContexts List<IppoolPool 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
[]IppoolPool Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned float64
- (ReadOnly) Number of IDs that are currently assigned (in use).
- AssignmentOrder string
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- EnableBlock boolLevel Subnet Config 
- Enables subnet configuration at the block level.
- IpV4Blocks []IppoolPool Ip V4Block Args 
- This complex property has following sub-properties:
- IpV4Configs []IppoolPool Ip V4Config Args 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- IpV6Blocks []IppoolPool Ip V6Block Args 
- This complex property has following sub-properties:
- IpV6Configs []IppoolPool Ip V6Config Args 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- IppoolPool stringId 
- 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.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]IppoolPool 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
[]IppoolPool 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 []IppoolPool Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
[]IppoolPool Reservation Args 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- Reserved float64
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- ShadowPools []IppoolPool Shadow Pool Args 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- Size float64
- (ReadOnly) Total number of identifiers in this pool.
- 
[]IppoolPool Tag Args 
- This complex property has following sub-properties:
- V4Assigned float64
- (ReadOnly) Number of IPv4 addresses currently in use.
- V4Size float64
- (ReadOnly) Number of IPv4 addresses in this pool.
- V6Assigned float64
- (ReadOnly) Number of IPv6 addresses currently in use.
- V6Size float64
- (ReadOnly) Number of IPv6 addresses in this pool.
- VersionContexts []IppoolPool 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<IppoolPool Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned Double
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignmentOrder String
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableBlock BooleanLevel Subnet Config 
- Enables subnet configuration at the block level.
- ipV4Blocks List<IppoolPool Ip V4Block> 
- This complex property has following sub-properties:
- ipV4Configs List<IppoolPool Ip V4Config> 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ipV6Blocks List<IppoolPool Ip V6Block> 
- This complex property has following sub-properties:
- ipV6Configs List<IppoolPool Ip V6Config> 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippoolPool StringId 
- 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.
- objectType String
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<IppoolPool 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<IppoolPool 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<IppoolPool Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
List<IppoolPool Reservation> 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved Double
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadowPools List<IppoolPool Shadow Pool> 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size Double
- (ReadOnly) Total number of identifiers in this pool.
- 
List<IppoolPool Tag> 
- This complex property has following sub-properties:
- v4Assigned Double
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4Size Double
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6Assigned Double
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6Size Double
- (ReadOnly) Number of IPv6 addresses in this pool.
- versionContexts List<IppoolPool 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
IppoolPool Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned number
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignmentOrder string
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableBlock booleanLevel Subnet Config 
- Enables subnet configuration at the block level.
- ipV4Blocks IppoolPool Ip V4Block[] 
- This complex property has following sub-properties:
- ipV4Configs IppoolPool Ip V4Config[] 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ipV6Blocks IppoolPool Ip V6Block[] 
- This complex property has following sub-properties:
- ipV6Configs IppoolPool Ip V6Config[] 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippoolPool stringId 
- 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.
- objectType string
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
IppoolPool 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
IppoolPool 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 IppoolPool Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
IppoolPool Reservation[] 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved number
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadowPools IppoolPool Shadow Pool[] 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size number
- (ReadOnly) Total number of identifiers in this pool.
- 
IppoolPool Tag[] 
- This complex property has following sub-properties:
- v4Assigned number
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4Size number
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6Assigned number
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6Size number
- (ReadOnly) Number of IPv6 addresses in this pool.
- versionContexts IppoolPool 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[IppoolPool Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned float
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignment_order str
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enable_block_ boollevel_ subnet_ config 
- Enables subnet configuration at the block level.
- ip_v4_ Sequence[Ippoolblocks Pool Ip V4Block Args] 
- This complex property has following sub-properties:
- ip_v4_ Sequence[Ippoolconfigs Pool Ip V4Config Args] 
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip_v6_ Sequence[Ippoolblocks Pool Ip V6Block Args] 
- This complex property has following sub-properties:
- ip_v6_ Sequence[Ippoolconfigs Pool Ip V6Config Args] 
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool_pool_ strid 
- 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.
- object_type str
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[IppoolPool 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[IppoolPool 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[IppoolPool Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
Sequence[IppoolPool Reservation Args] 
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved float
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadow_pools Sequence[IppoolPool Shadow Pool Args] 
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size float
- (ReadOnly) Total number of identifiers in this pool.
- 
Sequence[IppoolPool Tag Args] 
- This complex property has following sub-properties:
- v4_assigned float
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4_size float
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6_assigned float
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6_size float
- (ReadOnly) Number of IPv6 addresses in this pool.
- version_contexts Sequence[IppoolPool 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:
- assigned Number
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignmentOrder String
- Assignment order decides the order in which the next identifier is allocated.* sequential- Identifiers are assigned in a sequential order.*default- Assignment order is decided by the system.
- 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.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- enableBlock BooleanLevel Subnet Config 
- Enables subnet configuration at the block level.
- ipV4Blocks List<Property Map>
- This complex property has following sub-properties:
- ipV4Configs List<Property Map>
- Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ipV6Blocks List<Property Map>
- This complex property has following sub-properties:
- ipV6Configs List<Property Map>
- Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippoolPool StringId 
- 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.
- 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:
- reservations List<Property Map>
- An array of relationships to ippoolReservation resources. This complex property has following sub-properties:
- reserved Number
- (ReadOnly) Number of IDs that are currently reserved (and not in use).
- shadowPools List<Property Map>
- (ReadOnly) An array of relationships to ippoolShadowPool 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.
- size Number
- (ReadOnly) Total number of identifiers in this pool.
- List<Property Map>
- This complex property has following sub-properties:
- v4Assigned Number
- (ReadOnly) Number of IPv4 addresses currently in use.
- v4Size Number
- (ReadOnly) Number of IPv4 addresses in this pool.
- v6Assigned Number
- (ReadOnly) Number of IPv6 addresses currently in use.
- v6Size Number
- (ReadOnly) Number of IPv6 addresses in this pool.
- versionContexts List<Property Map>
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
IppoolPoolAncestor, IppoolPoolAncestorArgs      
- 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'.
IppoolPoolIpV4Block, IppoolPoolIpV4BlockArgs        
- AdditionalProperties string
- ClassId string
- From string
- First IPv4 address of the block.
- IpV4Configs List<IppoolPool Ip V4Block Ip V4Config> 
- Netmask, Gateway and DNS settings for IPv4 addresses. 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.
- Size double
- Number of identifiers this block can hold.
- To string
- Last IPv4 address of the block.
- AdditionalProperties string
- ClassId string
- From string
- First IPv4 address of the block.
- IpV4Configs []IppoolPool Ip V4Block Ip V4Config 
- Netmask, Gateway and DNS settings for IPv4 addresses. 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.
- Size float64
- Number of identifiers this block can hold.
- To string
- Last IPv4 address of the block.
- additionalProperties String
- classId String
- from String
- First IPv4 address of the block.
- ipV4Configs List<IppoolPool Ip V4Block Ip V4Config> 
- Netmask, Gateway and DNS settings for IPv4 addresses. 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.
- size Double
- Number of identifiers this block can hold.
- to String
- Last IPv4 address of the block.
- additionalProperties string
- classId string
- from string
- First IPv4 address of the block.
- ipV4Configs IppoolPool Ip V4Block Ip V4Config[] 
- Netmask, Gateway and DNS settings for IPv4 addresses. 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.
- size number
- Number of identifiers this block can hold.
- to string
- Last IPv4 address of the block.
- additional_properties str
- class_id str
- from_ str
- First IPv4 address of the block.
- ip_v4_ Sequence[Ippoolconfigs Pool Ip V4Block Ip V4Config] 
- Netmask, Gateway and DNS settings for IPv4 addresses. 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.
- size float
- Number of identifiers this block can hold.
- to str
- Last IPv4 address of the block.
- additionalProperties String
- classId String
- from String
- First IPv4 address of the block.
- ipV4Configs List<Property Map>
- Netmask, Gateway and DNS settings for IPv4 addresses. 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.
- size Number
- Number of identifiers this block can hold.
- to String
- Last IPv4 address of the block.
IppoolPoolIpV4BlockIpV4Config, IppoolPoolIpV4BlockIpV4ConfigArgs            
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv4 gateway.
- Netmask string
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv4 gateway.
- Netmask string
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv4 gateway.
- netmask String
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties string
- classId string
- gateway string
- IP address of the default IPv4 gateway.
- netmask string
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additional_properties str
- class_id str
- gateway str
- IP address of the default IPv4 gateway.
- netmask str
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary_dns str
- IP Address of the primary Domain Name System (DNS) server.
- secondary_dns str
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv4 gateway.
- netmask String
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolIpV4Config, IppoolPoolIpV4ConfigArgs        
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv4 gateway.
- Netmask string
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv4 gateway.
- Netmask string
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv4 gateway.
- netmask String
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties string
- classId string
- gateway string
- IP address of the default IPv4 gateway.
- netmask string
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additional_properties str
- class_id str
- gateway str
- IP address of the default IPv4 gateway.
- netmask str
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary_dns str
- IP Address of the primary Domain Name System (DNS) server.
- secondary_dns str
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv4 gateway.
- netmask String
- A subnet mask is a 32-bit number that masks an IP address and divides the IP address into network address and host address.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolIpV6Block, IppoolPoolIpV6BlockArgs        
- AdditionalProperties string
- ClassId string
- From string
- First IPv6 address of the block.
- IpV6Configs List<IppoolPool Ip V6Block Ip V6Config> 
- Netmask, Gateway and DNS settings for IPv6 addresses. 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.
- Size double
- Number of identifiers this block can hold.
- To string
- Last IPv6 address of the block.
- AdditionalProperties string
- ClassId string
- From string
- First IPv6 address of the block.
- IpV6Configs []IppoolPool Ip V6Block Ip V6Config 
- Netmask, Gateway and DNS settings for IPv6 addresses. 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.
- Size float64
- Number of identifiers this block can hold.
- To string
- Last IPv6 address of the block.
- additionalProperties String
- classId String
- from String
- First IPv6 address of the block.
- ipV6Configs List<IppoolPool Ip V6Block Ip V6Config> 
- Netmask, Gateway and DNS settings for IPv6 addresses. 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.
- size Double
- Number of identifiers this block can hold.
- to String
- Last IPv6 address of the block.
- additionalProperties string
- classId string
- from string
- First IPv6 address of the block.
- ipV6Configs IppoolPool Ip V6Block Ip V6Config[] 
- Netmask, Gateway and DNS settings for IPv6 addresses. 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.
- size number
- Number of identifiers this block can hold.
- to string
- Last IPv6 address of the block.
- additional_properties str
- class_id str
- from_ str
- First IPv6 address of the block.
- ip_v6_ Sequence[Ippoolconfigs Pool Ip V6Block Ip V6Config] 
- Netmask, Gateway and DNS settings for IPv6 addresses. 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.
- size float
- Number of identifiers this block can hold.
- to str
- Last IPv6 address of the block.
- additionalProperties String
- classId String
- from String
- First IPv6 address of the block.
- ipV6Configs List<Property Map>
- Netmask, Gateway and DNS settings for IPv6 addresses. 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.
- size Number
- Number of identifiers this block can hold.
- to String
- Last IPv6 address of the block.
IppoolPoolIpV6BlockIpV6Config, IppoolPoolIpV6BlockIpV6ConfigArgs            
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv6 gateway.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Prefix double
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv6 gateway.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Prefix float64
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv6 gateway.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix Double
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties string
- classId string
- gateway string
- IP address of the default IPv6 gateway.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix number
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additional_properties str
- class_id str
- gateway str
- IP address of the default IPv6 gateway.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix float
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primary_dns str
- IP Address of the primary Domain Name System (DNS) server.
- secondary_dns str
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv6 gateway.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix Number
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolIpV6Config, IppoolPoolIpV6ConfigArgs        
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv6 gateway.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Prefix double
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- AdditionalProperties string
- ClassId string
- Gateway string
- IP address of the default IPv6 gateway.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Prefix float64
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- PrimaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- SecondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv6 gateway.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix Double
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties string
- classId string
- gateway string
- IP address of the default IPv6 gateway.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix number
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primaryDns string
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns string
- IP Address of the secondary Domain Name System (DNS) server.
- additional_properties str
- class_id str
- gateway str
- IP address of the default IPv6 gateway.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix float
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primary_dns str
- IP Address of the primary Domain Name System (DNS) server.
- secondary_dns str
- IP Address of the secondary Domain Name System (DNS) server.
- additionalProperties String
- classId String
- gateway String
- IP address of the default IPv6 gateway.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- prefix Number
- A prefix length which masks the IP address and divides the IP address into network address and host address.
- primaryDns String
- IP Address of the primary Domain Name System (DNS) server.
- secondaryDns String
- IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolOrganization, IppoolPoolOrganizationArgs      
- 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'.
IppoolPoolParent, IppoolPoolParentArgs      
- 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'.
IppoolPoolPermissionResource, IppoolPoolPermissionResourceArgs        
- 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'.
IppoolPoolReservation, IppoolPoolReservationArgs      
- 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'.
IppoolPoolShadowPool, IppoolPoolShadowPoolArgs        
- 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'.
IppoolPoolTag, IppoolPoolTagArgs      
- 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.
IppoolPoolVersionContext, IppoolPoolVersionContextArgs        
- AdditionalProperties string
- ClassId string
- InterestedMos List<IppoolPool 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<IppoolPool 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 []IppoolPool 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 []IppoolPool 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<IppoolPool 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<IppoolPool 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 IppoolPool 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 IppoolPool 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[IppoolPool 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[IppoolPool 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.
IppoolPoolVersionContextInterestedMo, IppoolPoolVersionContextInterestedMoArgs            
- 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'.
IppoolPoolVersionContextRefMo, IppoolPoolVersionContextRefMoArgs            
- 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_ippool_pool can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/ippoolPool:IppoolPool 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.