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)
.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)
.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)
.primaryDns("string")
.secondaryDns("string")
.build())
.objectType("string")
.size(0)
.to("string")
.build())
.ipV6Configs(IppoolPoolIpV6ConfigArgs.builder()
.additionalProperties("string")
.classId("string")
.gateway("string")
.objectType("string")
.prefix(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)
.shadowPools(IppoolPoolShadowPoolArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.sharedScope("string")
.size(0)
.tags(IppoolPoolTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.v4Assigned(0)
.v4Size(0)
.v6Assigned(0)
.v6Size(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:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Ippool
Pool 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).
- Assignment
Order 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. - Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Block boolLevel Subnet Config - Enables subnet configuration at the block level.
- Ip
V4Blocks List<IppoolPool Ip V4Block> - This complex property has following sub-properties:
- Ip
V4Configs List<IppoolPool Ip V4Config> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- Ip
V6Blocks List<IppoolPool Ip V6Block> - This complex property has following sub-properties:
- Ip
V6Configs List<IppoolPool Ip V6Config> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- Ippool
Pool stringId - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Ippool
Pool 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<Ippool
Pool Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<IppoolPool Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
List<Ippool
Pool 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).
- Shadow
Pools 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<Ippool
Pool 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.
- Version
Contexts List<IppoolPool Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Ippool
Pool 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).
- Assignment
Order 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. - Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Block boolLevel Subnet Config - Enables subnet configuration at the block level.
- Ip
V4Blocks []IppoolPool Ip V4Block Args - This complex property has following sub-properties:
- Ip
V4Configs []IppoolPool Ip V4Config Args - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- Ip
V6Blocks []IppoolPool Ip V6Block Args - This complex property has following sub-properties:
- Ip
V6Configs []IppoolPool Ip V6Config Args - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- Ippool
Pool stringId - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Ippool
Pool 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
[]Ippool
Pool 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 []IppoolPool Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
[]Ippool
Pool 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).
- Shadow
Pools []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.
- []Ippool
Pool 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.
- Version
Contexts []IppoolPool Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Ippool
Pool 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).
- assignment
Order 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. - class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Block BooleanLevel Subnet Config - Enables subnet configuration at the block level.
- ip
V4Blocks List<IppoolPool Ip V4Block> - This complex property has following sub-properties:
- ip
V4Configs List<IppoolPool Ip V4Config> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip
V6Blocks List<IppoolPool Ip V6Block> - This complex property has following sub-properties:
- ip
V6Configs List<IppoolPool Ip V6Config> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool
Pool StringId - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Ippool
Pool 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<Ippool
Pool Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<IppoolPool Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
List<Ippool
Pool 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).
- shadow
Pools 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<Ippool
Pool 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.
- version
Contexts List<IppoolPool Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Ippool
Pool 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).
- assignment
Order 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. - class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Block booleanLevel Subnet Config - Enables subnet configuration at the block level.
- ip
V4Blocks IppoolPool Ip V4Block[] - This complex property has following sub-properties:
- ip
V4Configs IppoolPool Ip V4Config[] - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip
V6Blocks IppoolPool Ip V6Block[] - This complex property has following sub-properties:
- ip
V6Configs IppoolPool Ip V6Config[] - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool
Pool stringId - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Ippool
Pool 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
Ippool
Pool Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources IppoolPool Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
Ippool
Pool 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).
- shadow
Pools 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.
- Ippool
Pool 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.
- version
Contexts 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[Ippool
Pool 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[Ippool
Pool 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[Ippool
Pool 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[Ippool
Pool 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[Ippool
Pool 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:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned Number
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignment
Order 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. - class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Block BooleanLevel Subnet Config - Enables subnet configuration at the block level.
- ip
V4Blocks List<Property Map> - This complex property has following sub-properties:
- ip
V4Configs List<Property Map> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip
V6Blocks List<Property Map> - This complex property has following sub-properties:
- ip
V6Configs List<Property Map> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool
Pool StringId - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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).
- shadow
Pools 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.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the 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) -> IppoolPool
func 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.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Ippool
Pool 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).
- Assignment
Order 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. - Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Block boolLevel Subnet Config - Enables subnet configuration at the block level.
- Ip
V4Blocks List<IppoolPool Ip V4Block> - This complex property has following sub-properties:
- Ip
V4Configs List<IppoolPool Ip V4Config> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- Ip
V6Blocks List<IppoolPool Ip V6Block> - This complex property has following sub-properties:
- Ip
V6Configs List<IppoolPool Ip V6Config> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- Ippool
Pool stringId - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Ippool
Pool 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<Ippool
Pool Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<IppoolPool Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
List<Ippool
Pool 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).
- Shadow
Pools 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<Ippool
Pool 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.
- Version
Contexts List<IppoolPool Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Ippool
Pool 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).
- Assignment
Order 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. - Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Enable
Block boolLevel Subnet Config - Enables subnet configuration at the block level.
- Ip
V4Blocks []IppoolPool Ip V4Block Args - This complex property has following sub-properties:
- Ip
V4Configs []IppoolPool Ip V4Config Args - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- Ip
V6Blocks []IppoolPool Ip V6Block Args - This complex property has following sub-properties:
- Ip
V6Configs []IppoolPool Ip V6Config Args - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- Ippool
Pool stringId - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Ippool
Pool 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
[]Ippool
Pool 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 []IppoolPool Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Reservations
[]Ippool
Pool 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).
- Shadow
Pools []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.
- []Ippool
Pool 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.
- Version
Contexts []IppoolPool Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Ippool
Pool 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).
- assignment
Order 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. - class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Block BooleanLevel Subnet Config - Enables subnet configuration at the block level.
- ip
V4Blocks List<IppoolPool Ip V4Block> - This complex property has following sub-properties:
- ip
V4Configs List<IppoolPool Ip V4Config> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip
V6Blocks List<IppoolPool Ip V6Block> - This complex property has following sub-properties:
- ip
V6Configs List<IppoolPool Ip V6Config> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool
Pool StringId - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Ippool
Pool 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<Ippool
Pool Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<IppoolPool Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
List<Ippool
Pool 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).
- shadow
Pools 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<Ippool
Pool 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.
- version
Contexts List<IppoolPool Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Ippool
Pool 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).
- assignment
Order 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. - class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Block booleanLevel Subnet Config - Enables subnet configuration at the block level.
- ip
V4Blocks IppoolPool Ip V4Block[] - This complex property has following sub-properties:
- ip
V4Configs IppoolPool Ip V4Config[] - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip
V6Blocks IppoolPool Ip V6Block[] - This complex property has following sub-properties:
- ip
V6Configs IppoolPool Ip V6Config[] - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool
Pool stringId - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Ippool
Pool 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
Ippool
Pool Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources IppoolPool Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- reservations
Ippool
Pool 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).
- shadow
Pools 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.
- Ippool
Pool 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.
- version
Contexts 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[Ippool
Pool 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[Ippool
Pool 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[Ippool
Pool 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[Ippool
Pool 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[Ippool
Pool 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:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned Number
- (ReadOnly) Number of IDs that are currently assigned (in use).
- assignment
Order 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. - class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- enable
Block BooleanLevel Subnet Config - Enables subnet configuration at the block level.
- ip
V4Blocks List<Property Map> - This complex property has following sub-properties:
- ip
V4Configs List<Property Map> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- ip
V6Blocks List<Property Map> - This complex property has following sub-properties:
- ip
V6Configs List<Property Map> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- ippool
Pool StringId - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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).
- shadow
Pools 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.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
IppoolPoolAncestor, IppoolPoolAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IppoolPoolIpV4Block, IppoolPoolIpV4BlockArgs
- Additional
Properties string - Class
Id string - From string
- First IPv4 address of the block.
- Ip
V4Configs List<IppoolPool Ip V4Block Ip V4Config> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Size double
- Number of identifiers this block can hold.
- To string
- Last IPv4 address of the block.
- Additional
Properties string - Class
Id string - From string
- First IPv4 address of the block.
- Ip
V4Configs []IppoolPool Ip V4Block Ip V4Config - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Size float64
- Number of identifiers this block can hold.
- To string
- Last IPv4 address of the block.
- additional
Properties String - class
Id String - from String
- First IPv4 address of the block.
- ip
V4Configs List<IppoolPool Ip V4Block Ip V4Config> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- size Double
- Number of identifiers this block can hold.
- to String
- Last IPv4 address of the block.
- additional
Properties string - class
Id string - from string
- First IPv4 address of the block.
- ip
V4Configs IppoolPool Ip V4Block Ip V4Config[] - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- 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.
- additional
Properties String - class
Id String - from String
- First IPv4 address of the block.
- ip
V4Configs List<Property Map> - Netmask, Gateway and DNS settings for IPv4 addresses. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- size Number
- Number of identifiers this block can hold.
- to String
- Last IPv4 address of the block.
IppoolPoolIpV4BlockIpV4Config, IppoolPoolIpV4BlockIpV4ConfigArgs
- Additional
Properties string - Class
Id 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- Additional
Properties string - Class
Id 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties String - class
Id 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties string - class
Id 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns 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.
- additional
Properties String - class
Id 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolIpV4Config, IppoolPoolIpV4ConfigArgs
- Additional
Properties string - Class
Id 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- Additional
Properties string - Class
Id 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties String - class
Id 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties string - class
Id 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns 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.
- additional
Properties String - class
Id 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolIpV6Block, IppoolPoolIpV6BlockArgs
- Additional
Properties string - Class
Id string - From string
- First IPv6 address of the block.
- Ip
V6Configs List<IppoolPool Ip V6Block Ip V6Config> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Size double
- Number of identifiers this block can hold.
- To string
- Last IPv6 address of the block.
- Additional
Properties string - Class
Id string - From string
- First IPv6 address of the block.
- Ip
V6Configs []IppoolPool Ip V6Block Ip V6Config - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Size float64
- Number of identifiers this block can hold.
- To string
- Last IPv6 address of the block.
- additional
Properties String - class
Id String - from String
- First IPv6 address of the block.
- ip
V6Configs List<IppoolPool Ip V6Block Ip V6Config> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- size Double
- Number of identifiers this block can hold.
- to String
- Last IPv6 address of the block.
- additional
Properties string - class
Id string - from string
- First IPv6 address of the block.
- ip
V6Configs IppoolPool Ip V6Block Ip V6Config[] - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- 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.
- additional
Properties String - class
Id String - from String
- First IPv6 address of the block.
- ip
V6Configs List<Property Map> - Netmask, Gateway and DNS settings for IPv6 addresses. This complex property has following sub-properties:
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- size Number
- Number of identifiers this block can hold.
- to String
- Last IPv6 address of the block.
IppoolPoolIpV6BlockIpV6Config, IppoolPoolIpV6BlockIpV6ConfigArgs
- Additional
Properties string - Class
Id string - Gateway string
- IP address of the default IPv6 gateway.
- Object
Type 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.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- Additional
Properties string - Class
Id string - Gateway string
- IP address of the default IPv6 gateway.
- Object
Type 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.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties String - class
Id String - gateway String
- IP address of the default IPv6 gateway.
- object
Type 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.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties string - class
Id string - gateway string
- IP address of the default IPv6 gateway.
- object
Type 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.
- primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns 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.
- additional
Properties String - class
Id String - gateway String
- IP address of the default IPv6 gateway.
- object
Type 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.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolIpV6Config, IppoolPoolIpV6ConfigArgs
- Additional
Properties string - Class
Id string - Gateway string
- IP address of the default IPv6 gateway.
- Object
Type 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.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- Additional
Properties string - Class
Id string - Gateway string
- IP address of the default IPv6 gateway.
- Object
Type 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.
- Primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- Secondary
Dns string - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties String - class
Id String - gateway String
- IP address of the default IPv6 gateway.
- object
Type 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.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
- additional
Properties string - class
Id string - gateway string
- IP address of the default IPv6 gateway.
- object
Type 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.
- primary
Dns string - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns 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.
- additional
Properties String - class
Id String - gateway String
- IP address of the default IPv6 gateway.
- object
Type 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.
- primary
Dns String - IP Address of the primary Domain Name System (DNS) server.
- secondary
Dns String - IP Address of the secondary Domain Name System (DNS) server.
IppoolPoolOrganization, IppoolPoolOrganizationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IppoolPoolParent, IppoolPoolParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IppoolPoolPermissionResource, IppoolPoolPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IppoolPoolReservation, IppoolPoolReservationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IppoolPoolShadowPool, IppoolPoolShadowPoolArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IppoolPoolTag, IppoolPoolTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
IppoolPoolVersionContext, IppoolPoolVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<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.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []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.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<IppoolPool Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<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.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos IppoolPool Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos 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.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[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.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
IppoolPoolVersionContextInterestedMo, IppoolPoolVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IppoolPoolVersionContextRefMo, IppoolPoolVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_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
intersight
Terraform Provider.