1. Packages
  2. Intersight Provider
  3. API Docs
  4. ServerProfileTemplate
intersight 1.0.63 published on Wednesday, Apr 16, 2025 by ciscodevnet

intersight.ServerProfileTemplate

Explore with Pulumi AI

A profile template specifying configuration settings for a physical server.

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 solPolicy = config.require("solPolicy");
const accessPolicy = config.require("accessPolicy");
const precisionPolicy = config.require("precisionPolicy");
const template1 = new intersight.ServerProfileTemplate("template1", {
    description: "demo server profile template",
    targetPlatform: "FIAttached",
    organizations: [{
        objectType: "organization.Organization",
        moid: organization,
    }],
    policyBuckets: [
        {
            moid: precisionPolicy,
            objectType: "boot.PrecisionPolicy",
        },
        {
            moid: accessPolicy,
            objectType: "access.Policy",
        },
        {
            moid: solPolicy,
            objectType: "sol.Policy",
        },
    ],
});
Copy
import pulumi
import pulumi_intersight as intersight

config = pulumi.Config()
organization = config.require("organization")
sol_policy = config.require("solPolicy")
access_policy = config.require("accessPolicy")
precision_policy = config.require("precisionPolicy")
template1 = intersight.ServerProfileTemplate("template1",
    description="demo server profile template",
    target_platform="FIAttached",
    organizations=[{
        "object_type": "organization.Organization",
        "moid": organization,
    }],
    policy_buckets=[
        {
            "moid": precision_policy,
            "object_type": "boot.PrecisionPolicy",
        },
        {
            "moid": access_policy,
            "object_type": "access.Policy",
        },
        {
            "moid": sol_policy,
            "object_type": "sol.Policy",
        },
    ])
Copy
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")
		solPolicy := cfg.Require("solPolicy")
		accessPolicy := cfg.Require("accessPolicy")
		precisionPolicy := cfg.Require("precisionPolicy")
		_, err := intersight.NewServerProfileTemplate(ctx, "template1", &intersight.ServerProfileTemplateArgs{
			Description:    pulumi.String("demo server profile template"),
			TargetPlatform: pulumi.String("FIAttached"),
			Organizations: intersight.ServerProfileTemplateOrganizationArray{
				&intersight.ServerProfileTemplateOrganizationArgs{
					ObjectType: pulumi.String("organization.Organization"),
					Moid:       pulumi.String(organization),
				},
			},
			PolicyBuckets: intersight.ServerProfileTemplatePolicyBucketArray{
				&intersight.ServerProfileTemplatePolicyBucketArgs{
					Moid:       pulumi.String(precisionPolicy),
					ObjectType: pulumi.String("boot.PrecisionPolicy"),
				},
				&intersight.ServerProfileTemplatePolicyBucketArgs{
					Moid:       pulumi.String(accessPolicy),
					ObjectType: pulumi.String("access.Policy"),
				},
				&intersight.ServerProfileTemplatePolicyBucketArgs{
					Moid:       pulumi.String(solPolicy),
					ObjectType: pulumi.String("sol.Policy"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 solPolicy = config.Require("solPolicy");
    var accessPolicy = config.Require("accessPolicy");
    var precisionPolicy = config.Require("precisionPolicy");
    var template1 = new Intersight.ServerProfileTemplate("template1", new()
    {
        Description = "demo server profile template",
        TargetPlatform = "FIAttached",
        Organizations = new[]
        {
            new Intersight.Inputs.ServerProfileTemplateOrganizationArgs
            {
                ObjectType = "organization.Organization",
                Moid = organization,
            },
        },
        PolicyBuckets = new[]
        {
            new Intersight.Inputs.ServerProfileTemplatePolicyBucketArgs
            {
                Moid = precisionPolicy,
                ObjectType = "boot.PrecisionPolicy",
            },
            new Intersight.Inputs.ServerProfileTemplatePolicyBucketArgs
            {
                Moid = accessPolicy,
                ObjectType = "access.Policy",
            },
            new Intersight.Inputs.ServerProfileTemplatePolicyBucketArgs
            {
                Moid = solPolicy,
                ObjectType = "sol.Policy",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.ServerProfileTemplate;
import com.pulumi.intersight.ServerProfileTemplateArgs;
import com.pulumi.intersight.inputs.ServerProfileTemplateOrganizationArgs;
import com.pulumi.intersight.inputs.ServerProfileTemplatePolicyBucketArgs;
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");
        final var solPolicy = config.get("solPolicy");
        final var accessPolicy = config.get("accessPolicy");
        final var precisionPolicy = config.get("precisionPolicy");
        var template1 = new ServerProfileTemplate("template1", ServerProfileTemplateArgs.builder()
            .description("demo server profile template")
            .targetPlatform("FIAttached")
            .organizations(ServerProfileTemplateOrganizationArgs.builder()
                .objectType("organization.Organization")
                .moid(organization)
                .build())
            .policyBuckets(            
                ServerProfileTemplatePolicyBucketArgs.builder()
                    .moid(precisionPolicy)
                    .objectType("boot.PrecisionPolicy")
                    .build(),
                ServerProfileTemplatePolicyBucketArgs.builder()
                    .moid(accessPolicy)
                    .objectType("access.Policy")
                    .build(),
                ServerProfileTemplatePolicyBucketArgs.builder()
                    .moid(solPolicy)
                    .objectType("sol.Policy")
                    .build())
            .build());

    }
}
Copy
configuration:
  organization:
    type: string
  solPolicy:
    type: string
  accessPolicy:
    type: string
  precisionPolicy:
    type: string
resources:
  template1:
    type: intersight:ServerProfileTemplate
    properties:
      description: demo server profile template
      targetPlatform: FIAttached
      organizations:
        - objectType: organization.Organization
          moid: ${organization}
      # the following policy_bucket statements map different policies to this
      #   # template -- the object_type shows the policy type
      policyBuckets:
        - moid: ${precisionPolicy}
          objectType: boot.PrecisionPolicy
        - moid: ${accessPolicy}
          objectType: access.Policy
        - moid: ${solPolicy}
          objectType: sol.Policy
Copy

Create ServerProfileTemplate Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ServerProfileTemplate(name: string, args?: ServerProfileTemplateArgs, opts?: CustomResourceOptions);
@overload
def ServerProfileTemplate(resource_name: str,
                          args: Optional[ServerProfileTemplateArgs] = None,
                          opts: Optional[ResourceOptions] = None)

@overload
def ServerProfileTemplate(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_moid: Optional[str] = None,
                          action: Optional[str] = None,
                          action_params: Optional[Sequence[ServerProfileTemplateActionParamArgs]] = None,
                          additional_properties: Optional[str] = None,
                          ancestors: Optional[Sequence[ServerProfileTemplateAncestorArgs]] = None,
                          class_id: Optional[str] = None,
                          config_contexts: Optional[Sequence[ServerProfileTemplateConfigContextArgs]] = None,
                          config_results: Optional[Sequence[ServerProfileTemplateConfigResultArgs]] = None,
                          create_time: Optional[str] = None,
                          deployed_policies: Optional[Sequence[str]] = None,
                          description: Optional[str] = None,
                          domain_group_moid: Optional[str] = None,
                          enable_override: Optional[bool] = None,
                          management_mode: Optional[str] = None,
                          mod_time: Optional[str] = None,
                          moid: Optional[str] = None,
                          name: Optional[str] = None,
                          object_type: Optional[str] = None,
                          organizations: Optional[Sequence[ServerProfileTemplateOrganizationArgs]] = None,
                          owners: Optional[Sequence[str]] = None,
                          parents: Optional[Sequence[ServerProfileTemplateParentArgs]] = None,
                          permission_resources: Optional[Sequence[ServerProfileTemplatePermissionResourceArgs]] = None,
                          policy_buckets: Optional[Sequence[ServerProfileTemplatePolicyBucketArgs]] = None,
                          removed_policies: Optional[Sequence[str]] = None,
                          scheduled_actions: Optional[Sequence[ServerProfileTemplateScheduledActionArgs]] = None,
                          server_profile_template_id: Optional[str] = None,
                          shared_scope: Optional[str] = None,
                          src_templates: Optional[Sequence[ServerProfileTemplateSrcTemplateArgs]] = None,
                          tags: Optional[Sequence[ServerProfileTemplateTagArgs]] = None,
                          target_platform: Optional[str] = None,
                          template_actions: Optional[Sequence[ServerProfileTemplateTemplateActionArgs]] = None,
                          type: Optional[str] = None,
                          update_status: Optional[str] = None,
                          usage: Optional[float] = None,
                          usage_count: Optional[float] = None,
                          uuid_address_type: Optional[str] = None,
                          uuid_pools: Optional[Sequence[ServerProfileTemplateUuidPoolArgs]] = None,
                          version_contexts: Optional[Sequence[ServerProfileTemplateVersionContextArgs]] = None)
func NewServerProfileTemplate(ctx *Context, name string, args *ServerProfileTemplateArgs, opts ...ResourceOption) (*ServerProfileTemplate, error)
public ServerProfileTemplate(string name, ServerProfileTemplateArgs? args = null, CustomResourceOptions? opts = null)
public ServerProfileTemplate(String name, ServerProfileTemplateArgs args)
public ServerProfileTemplate(String name, ServerProfileTemplateArgs args, CustomResourceOptions options)
type: intersight:ServerProfileTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ServerProfileTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ServerProfileTemplateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ServerProfileTemplateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ServerProfileTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ServerProfileTemplateArgs
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 serverProfileTemplateResource = new Intersight.ServerProfileTemplate("serverProfileTemplateResource", new()
{
    AccountMoid = "string",
    Action = "string",
    ActionParams = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateActionParamArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Name = "string",
            ObjectType = "string",
            Value = "string",
        },
    },
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ClassId = "string",
    ConfigContexts = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateConfigContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ConfigState = "string",
            ConfigStateSummary = "string",
            ConfigType = "string",
            ControlAction = "string",
            ErrorState = "string",
            InconsistencyReasons = new[]
            {
                "string",
            },
            ObjectType = "string",
            OperState = "string",
        },
    },
    ConfigResults = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateConfigResultArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    CreateTime = "string",
    DeployedPolicies = new[]
    {
        "string",
    },
    Description = "string",
    DomainGroupMoid = "string",
    EnableOverride = false,
    ManagementMode = "string",
    ModTime = "string",
    Moid = "string",
    Name = "string",
    ObjectType = "string",
    Organizations = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateOrganizationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.ServerProfileTemplatePermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PolicyBuckets = new[]
    {
        new Intersight.Inputs.ServerProfileTemplatePolicyBucketArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    RemovedPolicies = new[]
    {
        "string",
    },
    ScheduledActions = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateScheduledActionArgs
        {
            Action = "string",
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            ProceedOnReboot = false,
        },
    },
    ServerProfileTemplateId = "string",
    SharedScope = "string",
    SrcTemplates = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateSrcTemplateArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Tags = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    TargetPlatform = "string",
    TemplateActions = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateTemplateActionArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            Params = new[]
            {
                new Intersight.Inputs.ServerProfileTemplateTemplateActionParamArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Value = "string",
                },
            },
            Type = "string",
        },
    },
    Type = "string",
    UpdateStatus = "string",
    Usage = 0,
    UsageCount = 0,
    UuidAddressType = "string",
    UuidPools = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateUuidPoolArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    VersionContexts = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.ServerProfileTemplateVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.ServerProfileTemplateVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
});
Copy
example, err := intersight.NewServerProfileTemplate(ctx, "serverProfileTemplateResource", &intersight.ServerProfileTemplateArgs{
AccountMoid: pulumi.String("string"),
Action: pulumi.String("string"),
ActionParams: .ServerProfileTemplateActionParamArray{
&.ServerProfileTemplateActionParamArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
Ancestors: .ServerProfileTemplateAncestorArray{
&.ServerProfileTemplateAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
ConfigContexts: .ServerProfileTemplateConfigContextArray{
&.ServerProfileTemplateConfigContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ConfigState: pulumi.String("string"),
ConfigStateSummary: pulumi.String("string"),
ConfigType: pulumi.String("string"),
ControlAction: pulumi.String("string"),
ErrorState: pulumi.String("string"),
InconsistencyReasons: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
OperState: pulumi.String("string"),
},
},
ConfigResults: .ServerProfileTemplateConfigResultArray{
&.ServerProfileTemplateConfigResultArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
CreateTime: pulumi.String("string"),
DeployedPolicies: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
EnableOverride: pulumi.Bool(false),
ManagementMode: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Organizations: .ServerProfileTemplateOrganizationArray{
&.ServerProfileTemplateOrganizationArgs{
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: .ServerProfileTemplateParentArray{
&.ServerProfileTemplateParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: .ServerProfileTemplatePermissionResourceArray{
&.ServerProfileTemplatePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PolicyBuckets: .ServerProfileTemplatePolicyBucketArray{
&.ServerProfileTemplatePolicyBucketArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
RemovedPolicies: pulumi.StringArray{
pulumi.String("string"),
},
ScheduledActions: .ServerProfileTemplateScheduledActionArray{
&.ServerProfileTemplateScheduledActionArgs{
Action: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
ProceedOnReboot: pulumi.Bool(false),
},
},
ServerProfileTemplateId: pulumi.String("string"),
SharedScope: pulumi.String("string"),
SrcTemplates: .ServerProfileTemplateSrcTemplateArray{
&.ServerProfileTemplateSrcTemplateArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Tags: .ServerProfileTemplateTagArray{
&.ServerProfileTemplateTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TargetPlatform: pulumi.String("string"),
TemplateActions: .ServerProfileTemplateTemplateActionArray{
&.ServerProfileTemplateTemplateActionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Params: .ServerProfileTemplateTemplateActionParamArray{
&.ServerProfileTemplateTemplateActionParamArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
UpdateStatus: pulumi.String("string"),
Usage: pulumi.Float64(0),
UsageCount: pulumi.Float64(0),
UuidAddressType: pulumi.String("string"),
UuidPools: .ServerProfileTemplateUuidPoolArray{
&.ServerProfileTemplateUuidPoolArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
VersionContexts: .ServerProfileTemplateVersionContextArray{
&.ServerProfileTemplateVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: .ServerProfileTemplateVersionContextInterestedMoArray{
&.ServerProfileTemplateVersionContextInterestedMoArgs{
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: .ServerProfileTemplateVersionContextRefMoArray{
&.ServerProfileTemplateVersionContextRefMoArgs{
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"),
},
},
})
Copy
var serverProfileTemplateResource = new ServerProfileTemplate("serverProfileTemplateResource", ServerProfileTemplateArgs.builder()
    .accountMoid("string")
    .action("string")
    .actionParams(ServerProfileTemplateActionParamArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .name("string")
        .objectType("string")
        .value("string")
        .build())
    .additionalProperties("string")
    .ancestors(ServerProfileTemplateAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .classId("string")
    .configContexts(ServerProfileTemplateConfigContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .configState("string")
        .configStateSummary("string")
        .configType("string")
        .controlAction("string")
        .errorState("string")
        .inconsistencyReasons("string")
        .objectType("string")
        .operState("string")
        .build())
    .configResults(ServerProfileTemplateConfigResultArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .createTime("string")
    .deployedPolicies("string")
    .description("string")
    .domainGroupMoid("string")
    .enableOverride(false)
    .managementMode("string")
    .modTime("string")
    .moid("string")
    .name("string")
    .objectType("string")
    .organizations(ServerProfileTemplateOrganizationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .owners("string")
    .parents(ServerProfileTemplateParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(ServerProfileTemplatePermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .policyBuckets(ServerProfileTemplatePolicyBucketArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .removedPolicies("string")
    .scheduledActions(ServerProfileTemplateScheduledActionArgs.builder()
        .action("string")
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .proceedOnReboot(false)
        .build())
    .serverProfileTemplateId("string")
    .sharedScope("string")
    .srcTemplates(ServerProfileTemplateSrcTemplateArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .tags(ServerProfileTemplateTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .targetPlatform("string")
    .templateActions(ServerProfileTemplateTemplateActionArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .params(ServerProfileTemplateTemplateActionParamArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .value("string")
            .build())
        .type("string")
        .build())
    .type("string")
    .updateStatus("string")
    .usage(0)
    .usageCount(0)
    .uuidAddressType("string")
    .uuidPools(ServerProfileTemplateUuidPoolArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .versionContexts(ServerProfileTemplateVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(ServerProfileTemplateVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(ServerProfileTemplateVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .build());
Copy
server_profile_template_resource = intersight.ServerProfileTemplate("serverProfileTemplateResource",
    account_moid="string",
    action="string",
    action_params=[{
        "additional_properties": "string",
        "class_id": "string",
        "name": "string",
        "object_type": "string",
        "value": "string",
    }],
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    class_id="string",
    config_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "config_state": "string",
        "config_state_summary": "string",
        "config_type": "string",
        "control_action": "string",
        "error_state": "string",
        "inconsistency_reasons": ["string"],
        "object_type": "string",
        "oper_state": "string",
    }],
    config_results=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    create_time="string",
    deployed_policies=["string"],
    description="string",
    domain_group_moid="string",
    enable_override=False,
    management_mode="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",
    }],
    policy_buckets=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    removed_policies=["string"],
    scheduled_actions=[{
        "action": "string",
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "proceed_on_reboot": False,
    }],
    server_profile_template_id="string",
    shared_scope="string",
    src_templates=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    target_platform="string",
    template_actions=[{
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "params": [{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "value": "string",
        }],
        "type": "string",
    }],
    type="string",
    update_status="string",
    usage=0,
    usage_count=0,
    uuid_address_type="string",
    uuid_pools=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    version_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "interested_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "marked_for_deletion": False,
        "nr_version": "string",
        "object_type": "string",
        "ref_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "timestamp": "string",
        "version_type": "string",
    }])
Copy
const serverProfileTemplateResource = new intersight.ServerProfileTemplate("serverProfileTemplateResource", {
    accountMoid: "string",
    action: "string",
    actionParams: [{
        additionalProperties: "string",
        classId: "string",
        name: "string",
        objectType: "string",
        value: "string",
    }],
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    classId: "string",
    configContexts: [{
        additionalProperties: "string",
        classId: "string",
        configState: "string",
        configStateSummary: "string",
        configType: "string",
        controlAction: "string",
        errorState: "string",
        inconsistencyReasons: ["string"],
        objectType: "string",
        operState: "string",
    }],
    configResults: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    createTime: "string",
    deployedPolicies: ["string"],
    description: "string",
    domainGroupMoid: "string",
    enableOverride: false,
    managementMode: "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",
    }],
    policyBuckets: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    removedPolicies: ["string"],
    scheduledActions: [{
        action: "string",
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        proceedOnReboot: false,
    }],
    serverProfileTemplateId: "string",
    sharedScope: "string",
    srcTemplates: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    targetPlatform: "string",
    templateActions: [{
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        params: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            value: "string",
        }],
        type: "string",
    }],
    type: "string",
    updateStatus: "string",
    usage: 0,
    usageCount: 0,
    uuidAddressType: "string",
    uuidPools: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    versionContexts: [{
        additionalProperties: "string",
        classId: "string",
        interestedMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        markedForDeletion: false,
        nrVersion: "string",
        objectType: "string",
        refMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        timestamp: "string",
        versionType: "string",
    }],
});
Copy
type: intersight:ServerProfileTemplate
properties:
    accountMoid: string
    action: string
    actionParams:
        - additionalProperties: string
          classId: string
          name: string
          objectType: string
          value: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    classId: string
    configContexts:
        - additionalProperties: string
          classId: string
          configState: string
          configStateSummary: string
          configType: string
          controlAction: string
          errorState: string
          inconsistencyReasons:
            - string
          objectType: string
          operState: string
    configResults:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    createTime: string
    deployedPolicies:
        - string
    description: string
    domainGroupMoid: string
    enableOverride: false
    managementMode: 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
    policyBuckets:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    removedPolicies:
        - string
    scheduledActions:
        - action: string
          additionalProperties: string
          classId: string
          objectType: string
          proceedOnReboot: false
    serverProfileTemplateId: string
    sharedScope: string
    srcTemplates:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    tags:
        - additionalProperties: string
          key: string
          value: string
    targetPlatform: string
    templateActions:
        - additionalProperties: string
          classId: string
          objectType: string
          params:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              value: string
          type: string
    type: string
    updateStatus: string
    usage: 0
    usageCount: 0
    uuidAddressType: string
    uuidPools:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    versionContexts:
        - additionalProperties: string
          classId: string
          interestedMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          markedForDeletion: false
          nrVersion: string
          objectType: string
          refMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          timestamp: string
          versionType: string
Copy

ServerProfileTemplate 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 ServerProfileTemplate resource accepts the following input properties:

AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams List<ServerProfileTemplateActionParam>
This complex property has following sub-properties:
AdditionalProperties string
Ancestors List<ServerProfileTemplateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ConfigContexts List<ServerProfileTemplateConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults List<ServerProfileTemplateConfigResult>
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DeployedPolicies List<string>
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EnableOverride bool
When enabled, the configuration of the derived instances may override the template configuration.
ManagementMode string
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations List<ServerProfileTemplateOrganization>
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<ServerProfileTemplateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<ServerProfileTemplatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets List<ServerProfileTemplatePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
RemovedPolicies List<string>
(Array of schema.TypeString) -
ScheduledActions List<ServerProfileTemplateScheduledAction>
This complex property has following sub-properties:
ServerProfileTemplateId string
SharedScope 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.
SrcTemplates List<ServerProfileTemplateSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags List<ServerProfileTemplateTag>
This complex property has following sub-properties:
TargetPlatform string
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
TemplateActions List<ServerProfileTemplateTemplateAction>
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UpdateStatus string
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
Usage double
(ReadOnly) The count of the server profiles derived from the template.
UsageCount double
(ReadOnly) The number of objects derived from a Template MO instance.
UuidAddressType string
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
UuidPools List<ServerProfileTemplateUuidPool>
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts List<ServerProfileTemplateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams []ServerProfileTemplateActionParamArgs
This complex property has following sub-properties:
AdditionalProperties string
Ancestors []ServerProfileTemplateAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ConfigContexts []ServerProfileTemplateConfigContextArgs
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults []ServerProfileTemplateConfigResultArgs
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DeployedPolicies []string
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EnableOverride bool
When enabled, the configuration of the derived instances may override the template configuration.
ManagementMode string
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations []ServerProfileTemplateOrganizationArgs
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 []ServerProfileTemplateParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []ServerProfileTemplatePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets []ServerProfileTemplatePolicyBucketArgs
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
RemovedPolicies []string
(Array of schema.TypeString) -
ScheduledActions []ServerProfileTemplateScheduledActionArgs
This complex property has following sub-properties:
ServerProfileTemplateId string
SharedScope 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.
SrcTemplates []ServerProfileTemplateSrcTemplateArgs
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags []ServerProfileTemplateTagArgs
This complex property has following sub-properties:
TargetPlatform string
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
TemplateActions []ServerProfileTemplateTemplateActionArgs
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UpdateStatus string
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
Usage float64
(ReadOnly) The count of the server profiles derived from the template.
UsageCount float64
(ReadOnly) The number of objects derived from a Template MO instance.
UuidAddressType string
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
UuidPools []ServerProfileTemplateUuidPoolArgs
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts []ServerProfileTemplateVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<ServerProfileTemplateActionParam>
This complex property has following sub-properties:
additionalProperties String
ancestors List<ServerProfileTemplateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
configContexts List<ServerProfileTemplateConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<ServerProfileTemplateConfigResult>
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
enableOverride Boolean
When enabled, the configuration of the derived instances may override the template configuration.
managementMode String
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<ServerProfileTemplateOrganization>
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<ServerProfileTemplateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<ServerProfileTemplatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<ServerProfileTemplatePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
scheduledActions List<ServerProfileTemplateScheduledAction>
This complex property has following sub-properties:
serverProfileTemplateId String
sharedScope 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.
srcTemplates List<ServerProfileTemplateSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<ServerProfileTemplateTag>
This complex property has following sub-properties:
targetPlatform String
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
templateActions List<ServerProfileTemplateTemplateAction>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
updateStatus String
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage Double
(ReadOnly) The count of the server profiles derived from the template.
usageCount Double
(ReadOnly) The number of objects derived from a Template MO instance.
uuidAddressType String
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuidPools List<ServerProfileTemplateUuidPool>
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<ServerProfileTemplateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid string
(ReadOnly) The Account ID for this managed object.
action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams ServerProfileTemplateActionParam[]
This complex property has following sub-properties:
additionalProperties string
ancestors ServerProfileTemplateAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
configContexts ServerProfileTemplateConfigContext[]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults ServerProfileTemplateConfigResult[]
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime string
(ReadOnly) The time when this managed object was created.
deployedPolicies string[]
(Array of schema.TypeString) -
description string
Description of the profile.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
enableOverride boolean
When enabled, the configuration of the derived instances may override the template configuration.
managementMode string
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the profile instance or profile template.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations ServerProfileTemplateOrganization[]
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 ServerProfileTemplateParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources ServerProfileTemplatePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets ServerProfileTemplatePolicyBucket[]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removedPolicies string[]
(Array of schema.TypeString) -
scheduledActions ServerProfileTemplateScheduledAction[]
This complex property has following sub-properties:
serverProfileTemplateId string
sharedScope 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.
srcTemplates ServerProfileTemplateSrcTemplate[]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags ServerProfileTemplateTag[]
This complex property has following sub-properties:
targetPlatform string
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
templateActions ServerProfileTemplateTemplateAction[]
This complex property has following sub-properties:
type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
updateStatus string
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage number
(ReadOnly) The count of the server profiles derived from the template.
usageCount number
(ReadOnly) The number of objects derived from a Template MO instance.
uuidAddressType string
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuidPools ServerProfileTemplateUuidPool[]
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts ServerProfileTemplateVersionContext[]
(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.
action str
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
action_params Sequence[ServerProfileTemplateActionParamArgs]
This complex property has following sub-properties:
additional_properties str
ancestors Sequence[ServerProfileTemplateAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
config_contexts Sequence[ServerProfileTemplateConfigContextArgs]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
config_results Sequence[ServerProfileTemplateConfigResultArgs]
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
create_time str
(ReadOnly) The time when this managed object was created.
deployed_policies Sequence[str]
(Array of schema.TypeString) -
description str
Description of the profile.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
enable_override bool
When enabled, the configuration of the derived instances may override the template configuration.
management_mode str
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
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 profile instance or profile template.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations Sequence[ServerProfileTemplateOrganizationArgs]
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[ServerProfileTemplateParentArgs]
(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[ServerProfileTemplatePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policy_buckets Sequence[ServerProfileTemplatePolicyBucketArgs]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removed_policies Sequence[str]
(Array of schema.TypeString) -
scheduled_actions Sequence[ServerProfileTemplateScheduledActionArgs]
This complex property has following sub-properties:
server_profile_template_id str
shared_scope 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.
src_templates Sequence[ServerProfileTemplateSrcTemplateArgs]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags Sequence[ServerProfileTemplateTagArgs]
This complex property has following sub-properties:
target_platform str
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
template_actions Sequence[ServerProfileTemplateTemplateActionArgs]
This complex property has following sub-properties:
type str
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
update_status str
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage float
(ReadOnly) The count of the server profiles derived from the template.
usage_count float
(ReadOnly) The number of objects derived from a Template MO instance.
uuid_address_type str
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuid_pools Sequence[ServerProfileTemplateUuidPoolArgs]
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
version_contexts Sequence[ServerProfileTemplateVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<Property Map>
This complex property has following sub-properties:
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
configContexts List<Property Map>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<Property Map>
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
enableOverride Boolean
When enabled, the configuration of the derived instances may override the template configuration.
managementMode String
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<Property Map>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<Property Map>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
scheduledActions List<Property Map>
This complex property has following sub-properties:
serverProfileTemplateId String
sharedScope 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.
srcTemplates List<Property Map>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<Property Map>
This complex property has following sub-properties:
targetPlatform String
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
templateActions List<Property Map>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
updateStatus String
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage Number
(ReadOnly) The count of the server profiles derived from the template.
usageCount Number
(ReadOnly) The number of objects derived from a Template MO instance.
uuidAddressType String
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuidPools List<Property Map>
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

Outputs

All input properties are implicitly available as output properties. Additionally, the ServerProfileTemplate 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 ServerProfileTemplate Resource

Get an existing ServerProfileTemplate 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?: ServerProfileTemplateState, opts?: CustomResourceOptions): ServerProfileTemplate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_moid: Optional[str] = None,
        action: Optional[str] = None,
        action_params: Optional[Sequence[ServerProfileTemplateActionParamArgs]] = None,
        additional_properties: Optional[str] = None,
        ancestors: Optional[Sequence[ServerProfileTemplateAncestorArgs]] = None,
        class_id: Optional[str] = None,
        config_contexts: Optional[Sequence[ServerProfileTemplateConfigContextArgs]] = None,
        config_results: Optional[Sequence[ServerProfileTemplateConfigResultArgs]] = None,
        create_time: Optional[str] = None,
        deployed_policies: Optional[Sequence[str]] = None,
        description: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        enable_override: Optional[bool] = None,
        management_mode: Optional[str] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        object_type: Optional[str] = None,
        organizations: Optional[Sequence[ServerProfileTemplateOrganizationArgs]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[ServerProfileTemplateParentArgs]] = None,
        permission_resources: Optional[Sequence[ServerProfileTemplatePermissionResourceArgs]] = None,
        policy_buckets: Optional[Sequence[ServerProfileTemplatePolicyBucketArgs]] = None,
        removed_policies: Optional[Sequence[str]] = None,
        scheduled_actions: Optional[Sequence[ServerProfileTemplateScheduledActionArgs]] = None,
        server_profile_template_id: Optional[str] = None,
        shared_scope: Optional[str] = None,
        src_templates: Optional[Sequence[ServerProfileTemplateSrcTemplateArgs]] = None,
        tags: Optional[Sequence[ServerProfileTemplateTagArgs]] = None,
        target_platform: Optional[str] = None,
        template_actions: Optional[Sequence[ServerProfileTemplateTemplateActionArgs]] = None,
        type: Optional[str] = None,
        update_status: Optional[str] = None,
        usage: Optional[float] = None,
        usage_count: Optional[float] = None,
        uuid_address_type: Optional[str] = None,
        uuid_pools: Optional[Sequence[ServerProfileTemplateUuidPoolArgs]] = None,
        version_contexts: Optional[Sequence[ServerProfileTemplateVersionContextArgs]] = None) -> ServerProfileTemplate
func GetServerProfileTemplate(ctx *Context, name string, id IDInput, state *ServerProfileTemplateState, opts ...ResourceOption) (*ServerProfileTemplate, error)
public static ServerProfileTemplate Get(string name, Input<string> id, ServerProfileTemplateState? state, CustomResourceOptions? opts = null)
public static ServerProfileTemplate get(String name, Output<String> id, ServerProfileTemplateState state, CustomResourceOptions options)
resources:  _:    type: intersight:ServerProfileTemplate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams List<ServerProfileTemplateActionParam>
This complex property has following sub-properties:
AdditionalProperties string
Ancestors List<ServerProfileTemplateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ConfigContexts List<ServerProfileTemplateConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults List<ServerProfileTemplateConfigResult>
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DeployedPolicies List<string>
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EnableOverride bool
When enabled, the configuration of the derived instances may override the template configuration.
ManagementMode string
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations List<ServerProfileTemplateOrganization>
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<ServerProfileTemplateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<ServerProfileTemplatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets List<ServerProfileTemplatePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
RemovedPolicies List<string>
(Array of schema.TypeString) -
ScheduledActions List<ServerProfileTemplateScheduledAction>
This complex property has following sub-properties:
ServerProfileTemplateId string
SharedScope 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.
SrcTemplates List<ServerProfileTemplateSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags List<ServerProfileTemplateTag>
This complex property has following sub-properties:
TargetPlatform string
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
TemplateActions List<ServerProfileTemplateTemplateAction>
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UpdateStatus string
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
Usage double
(ReadOnly) The count of the server profiles derived from the template.
UsageCount double
(ReadOnly) The number of objects derived from a Template MO instance.
UuidAddressType string
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
UuidPools List<ServerProfileTemplateUuidPool>
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts List<ServerProfileTemplateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
Action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
ActionParams []ServerProfileTemplateActionParamArgs
This complex property has following sub-properties:
AdditionalProperties string
Ancestors []ServerProfileTemplateAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ConfigContexts []ServerProfileTemplateConfigContextArgs
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
ConfigResults []ServerProfileTemplateConfigResultArgs
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
DeployedPolicies []string
(Array of schema.TypeString) -
Description string
Description of the profile.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
EnableOverride bool
When enabled, the configuration of the derived instances may override the template configuration.
ManagementMode string
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the profile instance or profile template.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations []ServerProfileTemplateOrganizationArgs
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 []ServerProfileTemplateParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []ServerProfileTemplatePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PolicyBuckets []ServerProfileTemplatePolicyBucketArgs
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
RemovedPolicies []string
(Array of schema.TypeString) -
ScheduledActions []ServerProfileTemplateScheduledActionArgs
This complex property has following sub-properties:
ServerProfileTemplateId string
SharedScope 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.
SrcTemplates []ServerProfileTemplateSrcTemplateArgs
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Tags []ServerProfileTemplateTagArgs
This complex property has following sub-properties:
TargetPlatform string
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
TemplateActions []ServerProfileTemplateTemplateActionArgs
This complex property has following sub-properties:
Type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
UpdateStatus string
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
Usage float64
(ReadOnly) The count of the server profiles derived from the template.
UsageCount float64
(ReadOnly) The number of objects derived from a Template MO instance.
UuidAddressType string
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
UuidPools []ServerProfileTemplateUuidPoolArgs
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
VersionContexts []ServerProfileTemplateVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<ServerProfileTemplateActionParam>
This complex property has following sub-properties:
additionalProperties String
ancestors List<ServerProfileTemplateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
configContexts List<ServerProfileTemplateConfigContext>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<ServerProfileTemplateConfigResult>
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
enableOverride Boolean
When enabled, the configuration of the derived instances may override the template configuration.
managementMode String
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<ServerProfileTemplateOrganization>
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<ServerProfileTemplateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<ServerProfileTemplatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<ServerProfileTemplatePolicyBucket>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
scheduledActions List<ServerProfileTemplateScheduledAction>
This complex property has following sub-properties:
serverProfileTemplateId String
sharedScope 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.
srcTemplates List<ServerProfileTemplateSrcTemplate>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<ServerProfileTemplateTag>
This complex property has following sub-properties:
targetPlatform String
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
templateActions List<ServerProfileTemplateTemplateAction>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
updateStatus String
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage Double
(ReadOnly) The count of the server profiles derived from the template.
usageCount Double
(ReadOnly) The number of objects derived from a Template MO instance.
uuidAddressType String
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuidPools List<ServerProfileTemplateUuidPool>
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<ServerProfileTemplateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid string
(ReadOnly) The Account ID for this managed object.
action string
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams ServerProfileTemplateActionParam[]
This complex property has following sub-properties:
additionalProperties string
ancestors ServerProfileTemplateAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
configContexts ServerProfileTemplateConfigContext[]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults ServerProfileTemplateConfigResult[]
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime string
(ReadOnly) The time when this managed object was created.
deployedPolicies string[]
(Array of schema.TypeString) -
description string
Description of the profile.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
enableOverride boolean
When enabled, the configuration of the derived instances may override the template configuration.
managementMode string
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the profile instance or profile template.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations ServerProfileTemplateOrganization[]
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 ServerProfileTemplateParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources ServerProfileTemplatePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets ServerProfileTemplatePolicyBucket[]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removedPolicies string[]
(Array of schema.TypeString) -
scheduledActions ServerProfileTemplateScheduledAction[]
This complex property has following sub-properties:
serverProfileTemplateId string
sharedScope 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.
srcTemplates ServerProfileTemplateSrcTemplate[]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags ServerProfileTemplateTag[]
This complex property has following sub-properties:
targetPlatform string
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
templateActions ServerProfileTemplateTemplateAction[]
This complex property has following sub-properties:
type string
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
updateStatus string
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage number
(ReadOnly) The count of the server profiles derived from the template.
usageCount number
(ReadOnly) The number of objects derived from a Template MO instance.
uuidAddressType string
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuidPools ServerProfileTemplateUuidPool[]
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts ServerProfileTemplateVersionContext[]
(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.
action str
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
action_params Sequence[ServerProfileTemplateActionParamArgs]
This complex property has following sub-properties:
additional_properties str
ancestors Sequence[ServerProfileTemplateAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
config_contexts Sequence[ServerProfileTemplateConfigContextArgs]
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
config_results Sequence[ServerProfileTemplateConfigResultArgs]
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
create_time str
(ReadOnly) The time when this managed object was created.
deployed_policies Sequence[str]
(Array of schema.TypeString) -
description str
Description of the profile.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
enable_override bool
When enabled, the configuration of the derived instances may override the template configuration.
management_mode str
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
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 profile instance or profile template.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations Sequence[ServerProfileTemplateOrganizationArgs]
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[ServerProfileTemplateParentArgs]
(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[ServerProfileTemplatePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policy_buckets Sequence[ServerProfileTemplatePolicyBucketArgs]
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removed_policies Sequence[str]
(Array of schema.TypeString) -
scheduled_actions Sequence[ServerProfileTemplateScheduledActionArgs]
This complex property has following sub-properties:
server_profile_template_id str
shared_scope 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.
src_templates Sequence[ServerProfileTemplateSrcTemplateArgs]
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags Sequence[ServerProfileTemplateTagArgs]
This complex property has following sub-properties:
target_platform str
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
template_actions Sequence[ServerProfileTemplateTemplateActionArgs]
This complex property has following sub-properties:
type str
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
update_status str
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage float
(ReadOnly) The count of the server profiles derived from the template.
usage_count float
(ReadOnly) The number of objects derived from a Template MO instance.
uuid_address_type str
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuid_pools Sequence[ServerProfileTemplateUuidPoolArgs]
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
version_contexts Sequence[ServerProfileTemplateVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
action String
User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.
actionParams List<Property Map>
This complex property has following sub-properties:
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
configContexts List<Property Map>
The configuration state and results of the last configuration operation. This complex property has following sub-properties:
configResults List<Property Map>
(ReadOnly) A reference to a serverConfigResult resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
deployedPolicies List<String>
(Array of schema.TypeString) -
description String
Description of the profile.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
enableOverride Boolean
When enabled, the configuration of the derived instances may override the template configuration.
managementMode String
(ReadOnly) The management mode of the server.* IntersightStandalone - Intersight Standalone mode of operation.* Intersight - Intersight managed mode of operation.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the profile instance or profile template.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<Property Map>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
policyBuckets List<Property Map>
An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
removedPolicies List<String>
(Array of schema.TypeString) -
scheduledActions List<Property Map>
This complex property has following sub-properties:
serverProfileTemplateId String
sharedScope 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.
srcTemplates List<Property Map>
A reference to a policyAbstractProfile resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
tags List<Property Map>
This complex property has following sub-properties:
targetPlatform String
The platform for which the server profile is applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight.* Standalone - Servers which are operating in standalone mode i.e. not connected to a Fabric Interconnected.* FIAttached - Servers which are connected to a Fabric Interconnect that is managed by Intersight.
templateActions List<Property Map>
This complex property has following sub-properties:
type String
Defines the type of the profile. Accepted values are instance or template.* instance - The profile defines the configuration for a specific instance of a target.
updateStatus String
(ReadOnly) The template sync status with all derived objects.* None - The Enum value represents that the object is not attached to any template.* OK - The Enum value represents that the object values are in sync with attached template.* Scheduled - The Enum value represents that the object sync from attached template is scheduled from template.* InProgress - The Enum value represents that the object sync with the attached template is in progress.* OutOfSync - The Enum value represents that the object values are not in sync with attached template.
usage Number
(ReadOnly) The count of the server profiles derived from the template.
usageCount Number
(ReadOnly) The number of objects derived from a Template MO instance.
uuidAddressType String
UUID address allocation type selected to assign an UUID address for the server.* NONE - The user did not assign any UUID address.* STATIC - The user assigns a static UUID address.* POOL - The user selects a pool from which the address will be leased.
uuidPools List<Property Map>
A reference to a uuidpoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

Supporting Types

ServerProfileTemplateActionParam
, ServerProfileTemplateActionParamArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value.
AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value.
additionalProperties This property is required. string
classId This property is required. string
name This property is required. string
The action parameter identifier.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. string
The action parameter value.
additional_properties This property is required. str
class_id This property is required. str
name This property is required. str
The action parameter identifier.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. str
The action parameter value.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value.

ServerProfileTemplateAncestor
, ServerProfileTemplateAncestorArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplateConfigContext
, ServerProfileTemplateConfigContextArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
ConfigState This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
ConfigStateSummary This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
ConfigType This property is required. string
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
ControlAction This property is required. string
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
ErrorState This property is required. string
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
InconsistencyReasons This property is required. List<string>
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OperState This property is required. string
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
AdditionalProperties This property is required. string
ClassId This property is required. string
ConfigState This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
ConfigStateSummary This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
ConfigType This property is required. string
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
ControlAction This property is required. string
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
ErrorState This property is required. string
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
InconsistencyReasons This property is required. []string
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OperState This property is required. string
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additionalProperties This property is required. String
classId This property is required. String
configState This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
configStateSummary This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
configType This property is required. String
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
controlAction This property is required. String
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
errorState This property is required. String
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistencyReasons This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
operState This property is required. String
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additionalProperties This property is required. string
classId This property is required. string
configState This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
configStateSummary This property is required. string
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
configType This property is required. string
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
controlAction This property is required. string
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
errorState This property is required. string
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistencyReasons This property is required. string[]
(Array of schema.TypeString) -
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
operState This property is required. string
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additional_properties This property is required. str
class_id This property is required. str
config_state This property is required. str
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
config_state_summary This property is required. str
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
config_type This property is required. str
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
control_action This property is required. str
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
error_state This property is required. str
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistency_reasons This property is required. Sequence[str]
(Array of schema.TypeString) -
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
oper_state This property is required. str
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.
additionalProperties This property is required. String
classId This property is required. String
configState This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
configStateSummary This property is required. String
(ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, InConsistent, Validating, Configuring, Failed, Activating, UnConfiguring.* None - The default state is none.* Not-assigned - Server is not assigned to the profile.* Assigned - Server is assigned to the profile and the configurations are not yet deployed.* Preparing - Preparing to deploy the configuration.* Validating - Profile validation in progress.* Configuring - Profile deploy operation is in progress.* UnConfiguring - Server is unassigned and config cleanup is in progress.* Analyzing - Profile changes are being analyzed.* Activating - Configuration is being activated at the endpoint.* Inconsistent - Profile is inconsistent with the endpoint configuration.* Associated - The profile configuration has been applied to the endpoint and no inconsistencies have been detected.* Failed - The last action on the profile has failed.* Not-complete - Config import operation on the profile is not complete.* Waiting-for-resource - Waiting for the resource to be allocated for the profile.* Partially-deployed - The profile configuration has been applied on a subset of endpoints.
configType This property is required. String
(ReadOnly) The type of configuration running on the profile. Since profile deployments can configure multiple different settings, configType indicates which type of configuration is currently in progress.
controlAction This property is required. String
System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
errorState This property is required. String
Indicates a profile's error state. Values -- Validation-error (Static validation error), Pre-config-error (Runtime validation error), Config-error (Runtime configuration error).
inconsistencyReasons This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
operState This property is required. String
(ReadOnly) Combined state (configState, and operational state of the associated physical resource) to indicate the current state of the profile. Values -- n/a, Power-off, Pending-changes, Configuring, Ok, Failed.

ServerProfileTemplateConfigResult
, ServerProfileTemplateConfigResultArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplateOrganization
, ServerProfileTemplateOrganizationArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplateParent
, ServerProfileTemplateParentArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplatePermissionResource
, ServerProfileTemplatePermissionResourceArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplatePolicyBucket
, ServerProfileTemplatePolicyBucketArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplateScheduledAction
, ServerProfileTemplateScheduledActionArgs

Action This property is required. string
Name of the action to be performed on the profile.
AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ProceedOnReboot This property is required. bool
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
Action This property is required. string
Name of the action to be performed on the profile.
AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ProceedOnReboot This property is required. bool
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. String
Name of the action to be performed on the profile.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceedOnReboot This property is required. Boolean
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. string
Name of the action to be performed on the profile.
additionalProperties This property is required. string
classId This property is required. string
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceedOnReboot This property is required. boolean
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. str
Name of the action to be performed on the profile.
additional_properties This property is required. str
class_id This property is required. str
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceed_on_reboot This property is required. bool
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
action This property is required. String
Name of the action to be performed on the profile.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
proceedOnReboot This property is required. Boolean
ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.

ServerProfileTemplateSrcTemplate
, ServerProfileTemplateSrcTemplateArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplateTag
, ServerProfileTemplateTagArgs

AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.
additionalProperties This property is required. string
key This property is required. string
The string representation of a tag key.
value This property is required. string
The string representation of a tag value.
additional_properties This property is required. str
key This property is required. str
The string representation of a tag key.
value This property is required. str
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.

ServerProfileTemplateTemplateAction
, ServerProfileTemplateTemplateActionArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Params This property is required. List<ServerProfileTemplateTemplateActionParam>
This complex property has following sub-properties:
Type This property is required. string
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Params This property is required. []ServerProfileTemplateTemplateActionParam
This complex property has following sub-properties:
Type This property is required. string
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. List<ServerProfileTemplateTemplateActionParam>
This complex property has following sub-properties:
type This property is required. String
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additionalProperties This property is required. string
classId This property is required. string
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. ServerProfileTemplateTemplateActionParam[]
This complex property has following sub-properties:
type This property is required. string
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additional_properties This property is required. str
class_id This property is required. str
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. Sequence[ServerProfileTemplateTemplateActionParam]
This complex property has following sub-properties:
type This property is required. str
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
params This property is required. List<Property Map>
This complex property has following sub-properties:
type This property is required. String
The action type to be executed.* Sync - The action to merge values from the template to its derived objects.* Deploy - The action to execute deploy action on all the objects derived from the template that is mainly applicable for the various profile types.* Detach - The action to detach the current derived object from its attached template.* Attach - The action to attach the current object to the specified template.

ServerProfileTemplateTemplateActionParam
, ServerProfileTemplateTemplateActionParamArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
AdditionalProperties This property is required. string
ClassId This property is required. string
Name This property is required. string
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
Value This property is required. string
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additionalProperties This property is required. string
classId This property is required. string
name This property is required. string
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. string
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additional_properties This property is required. str
class_id This property is required. str
name This property is required. str
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. str
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.
additionalProperties This property is required. String
classId This property is required. String
name This property is required. String
The action parameter identifier. The supported values are SyncType and SyncTimer for the template sync action.* None - The default parameter that implies that no action parameter is required for the template action.* SyncType - The parameter that describes the type of sync action such as SyncOne or SyncFailed supported on any template or derived object.* SyncTimer - The parameter for the initial delay in seconds after which the sync action must be executed. The supported range is from 0 to 60 seconds.* OverriddenList - The parameter applicable in attach operation indicating the configurations that must override the template configurations.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
value This property is required. String
The action parameter value is based on the action parameter type. Supported action parameters and their values are-a) Name - SyncType, Supported Values - SyncFailed, SyncOne.b) Name - SyncTimer, Supported Values - 0 to 60 seconds.c) Name - OverriddenList, Supported Values - Comma Separated list of overridable configurations.

ServerProfileTemplateUuidPool
, ServerProfileTemplateUuidPoolArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplateVersionContext
, ServerProfileTemplateVersionContextArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. List<ServerProfileTemplateVersionContextInterestedMo>
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. List<ServerProfileTemplateVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. []ServerProfileTemplateVersionContextInterestedMo
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. []ServerProfileTemplateVersionContextRefMo
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<ServerProfileTemplateVersionContextInterestedMo>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<ServerProfileTemplateVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. String
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. string
classId This property is required. string
interestedMos This property is required. ServerProfileTemplateVersionContextInterestedMo[]
This complex property has following sub-properties:
markedForDeletion This property is required. boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. ServerProfileTemplateVersionContextRefMo[]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. 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 This property is required. str
class_id This property is required. str
interested_mos This property is required. Sequence[ServerProfileTemplateVersionContextInterestedMo]
This complex property has following sub-properties:
marked_for_deletion This property is required. bool
(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 This property is required. str
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ref_mos This property is required. Sequence[ServerProfileTemplateVersionContextRefMo]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. str
(ReadOnly) The time this versioned Managed Object was created.
version_type This property is required. str
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<Property Map>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<Property Map>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. 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.

ServerProfileTemplateVersionContextInterestedMo
, ServerProfileTemplateVersionContextInterestedMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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'.

ServerProfileTemplateVersionContextRefMo
, ServerProfileTemplateVersionContextRefMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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 This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. 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_server_profile_template can be imported using the Moid of the object, e.g.

$ pulumi import intersight:index/serverProfileTemplate:ServerProfileTemplate example 1234567890987654321abcde
Copy

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.