intersight.ServerProfile
Explore with Pulumi AI
A profile 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 server1 = new intersight.ServerProfile("server1", {
    action: "No-op",
    tags: [{
        key: "server",
        value: "demo",
    }],
    organizations: [{
        objectType: "organization.Organization",
        moid: organization,
    }],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
organization = config.require("organization")
server1 = intersight.ServerProfile("server1",
    action="No-op",
    tags=[{
        "key": "server",
        "value": "demo",
    }],
    organizations=[{
        "object_type": "organization.Organization",
        "moid": organization,
    }])
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		organization := cfg.Require("organization")
		_, err := intersight.NewServerProfile(ctx, "server1", &intersight.ServerProfileArgs{
			Action: pulumi.String("No-op"),
			Tags: intersight.ServerProfileTagArray{
				&intersight.ServerProfileTagArgs{
					Key:   pulumi.String("server"),
					Value: pulumi.String("demo"),
				},
			},
			Organizations: intersight.ServerProfileOrganizationArray{
				&intersight.ServerProfileOrganizationArgs{
					ObjectType: pulumi.String("organization.Organization"),
					Moid:       pulumi.String(organization),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var organization = config.Require("organization");
    var server1 = new Intersight.ServerProfile("server1", new()
    {
        Action = "No-op",
        Tags = new[]
        {
            new Intersight.Inputs.ServerProfileTagArgs
            {
                Key = "server",
                Value = "demo",
            },
        },
        Organizations = new[]
        {
            new Intersight.Inputs.ServerProfileOrganizationArgs
            {
                ObjectType = "organization.Organization",
                Moid = organization,
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.ServerProfile;
import com.pulumi.intersight.ServerProfileArgs;
import com.pulumi.intersight.inputs.ServerProfileTagArgs;
import com.pulumi.intersight.inputs.ServerProfileOrganizationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var organization = config.get("organization");
        var server1 = new ServerProfile("server1", ServerProfileArgs.builder()
            .action("No-op")
            .tags(ServerProfileTagArgs.builder()
                .key("server")
                .value("demo")
                .build())
            .organizations(ServerProfileOrganizationArgs.builder()
                .objectType("organization.Organization")
                .moid(organization)
                .build())
            .build());
    }
}
configuration:
  organization:
    type: string
resources:
  server1:
    type: intersight:ServerProfile
    properties:
      action: No-op
      tags:
        - key: server
          value: demo
      organizations:
        - objectType: organization.Organization
          moid: ${organization}
Allowed Types in AdditionalProperties
fcpool.ReservationReference
The reference to the reservation object.
- consumer_name:(string) The consumer name for which the reserved fc pool would be used.
- consumer_type:(string) The consumer type for which the reserved fc pool would be used.*- Vhba- FC reservation would be used by Vhba.*- WWNN- FC reservation would be used by WWNN.
ippool.ReservationReference
The reference to the reservation object.
- consumer_name:(string) The consumer name for which the reserved IP would be used.
- consumer_type:(string) The consumer type for which the reserved IP would be used.*- OutofbandIpv4-Access- IP reservation would be used for out of band management.*- InbandIpv4-Access- IP reservation would be used for inband management.*- InbandIpv6-Access- IP reservation would be used for inband management.*- ISCSI- IP reservation would be used for ISCSI management.
iqnpool.ReservationReference
The reference to the reservation object.
macpool.ReservationReference
The reference to the reservation object.
- consumer_name:(string) The consumer name for which the reserved MAC would be used.
- consumer_type:(string) The consumer type for which the reserved MAC would be used.*- Vnic- MAC reservation would be used by VNIC.
uuidpool.ReservationReference
The reference to the reservation object.
fcpool.ReservationReference
The reference to the reservation object.
- consumer_name:(string) The consumer name for which the reserved fc pool would be used.
- consumer_type:(string) The consumer type for which the reserved fc pool would be used.*- Vhba- FC reservation would be used by Vhba.*- WWNN- FC reservation would be used by WWNN.
ippool.ReservationReference
The reference to the reservation object.
- consumer_name:(string) The consumer name for which the reserved IP would be used.
- consumer_type:(string) The consumer type for which the reserved IP would be used.*- OutofbandIpv4-Access- IP reservation would be used for out of band management.*- InbandIpv4-Access- IP reservation would be used for inband management.*- InbandIpv6-Access- IP reservation would be used for inband management.*- ISCSI- IP reservation would be used for ISCSI management.
iqnpool.ReservationReference
The reference to the reservation object.
macpool.ReservationReference
The reference to the reservation object.
- consumer_name:(string) The consumer name for which the reserved MAC would be used.
- consumer_type:(string) The consumer type for which the reserved MAC would be used.*- Vnic- MAC reservation would be used by VNIC.
uuidpool.ReservationReference
The reference to the reservation object.
Create ServerProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerProfile(name: string, args?: ServerProfileArgs, opts?: CustomResourceOptions);@overload
def ServerProfile(resource_name: str,
                  args: Optional[ServerProfileArgs] = None,
                  opts: Optional[ResourceOptions] = None)
@overload
def ServerProfile(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  account_moid: Optional[str] = None,
                  action: Optional[str] = None,
                  action_params: Optional[Sequence[ServerProfileActionParamArgs]] = None,
                  additional_properties: Optional[str] = None,
                  ancestors: Optional[Sequence[ServerProfileAncestorArgs]] = None,
                  assigned_servers: Optional[Sequence[ServerProfileAssignedServerArgs]] = None,
                  associated_server_pools: Optional[Sequence[ServerProfileAssociatedServerPoolArgs]] = None,
                  associated_servers: Optional[Sequence[ServerProfileAssociatedServerArgs]] = None,
                  class_id: Optional[str] = None,
                  config_change_contexts: Optional[Sequence[ServerProfileConfigChangeContextArgs]] = None,
                  config_change_details: Optional[Sequence[ServerProfileConfigChangeDetailArgs]] = None,
                  config_changes: Optional[Sequence[ServerProfileConfigChangeArgs]] = None,
                  config_contexts: Optional[Sequence[ServerProfileConfigContextArgs]] = None,
                  config_results: Optional[Sequence[ServerProfileConfigResultArgs]] = None,
                  create_time: Optional[str] = None,
                  deploy_status: Optional[str] = None,
                  deployed_policies: Optional[Sequence[str]] = None,
                  deployed_switches: Optional[str] = None,
                  description: Optional[str] = None,
                  domain_group_moid: Optional[str] = None,
                  internal_reservation_references: Optional[Sequence[ServerProfileInternalReservationReferenceArgs]] = None,
                  is_pmc_deployed_secure_passphrase_set: Optional[bool] = None,
                  leased_servers: Optional[Sequence[ServerProfileLeasedServerArgs]] = 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[ServerProfileOrganizationArgs]] = None,
                  overridden_lists: Optional[Sequence[str]] = None,
                  owners: Optional[Sequence[str]] = None,
                  parents: Optional[Sequence[ServerProfileParentArgs]] = None,
                  permission_resources: Optional[Sequence[ServerProfilePermissionResourceArgs]] = None,
                  pmc_deployed_secure_passphrase: Optional[str] = None,
                  policy_buckets: Optional[Sequence[ServerProfilePolicyBucketArgs]] = None,
                  removed_policies: Optional[Sequence[str]] = None,
                  reservation_references: Optional[Sequence[ServerProfileReservationReferenceArgs]] = None,
                  resource_leases: Optional[Sequence[ServerProfileResourceLeaseArgs]] = None,
                  running_workflows: Optional[Sequence[ServerProfileRunningWorkflowArgs]] = None,
                  scheduled_actions: Optional[Sequence[ServerProfileScheduledActionArgs]] = None,
                  server_assignment_mode: Optional[str] = None,
                  server_pools: Optional[Sequence[ServerProfileServerPoolArgs]] = None,
                  server_pre_assign_by_serial: Optional[str] = None,
                  server_pre_assign_by_slots: Optional[Sequence[ServerProfileServerPreAssignBySlotArgs]] = None,
                  server_profile_id: Optional[str] = None,
                  shared_scope: Optional[str] = None,
                  src_templates: Optional[Sequence[ServerProfileSrcTemplateArgs]] = None,
                  static_uuid_address: Optional[str] = None,
                  tags: Optional[Sequence[ServerProfileTagArgs]] = None,
                  target_platform: Optional[str] = None,
                  template_actions: Optional[Sequence[ServerProfileTemplateActionArgs]] = None,
                  template_sync_errors: Optional[Sequence[ServerProfileTemplateSyncErrorArgs]] = None,
                  template_sync_status: Optional[str] = None,
                  type: Optional[str] = None,
                  user_label: Optional[str] = None,
                  uuid: Optional[str] = None,
                  uuid_address_type: Optional[str] = None,
                  uuid_leases: Optional[Sequence[ServerProfileUuidLeaseArgs]] = None,
                  uuid_pools: Optional[Sequence[ServerProfileUuidPoolArgs]] = None,
                  version_contexts: Optional[Sequence[ServerProfileVersionContextArgs]] = None,
                  wait_for_completion: Optional[bool] = None)func NewServerProfile(ctx *Context, name string, args *ServerProfileArgs, opts ...ResourceOption) (*ServerProfile, error)public ServerProfile(string name, ServerProfileArgs? args = null, CustomResourceOptions? opts = null)
public ServerProfile(String name, ServerProfileArgs args)
public ServerProfile(String name, ServerProfileArgs args, CustomResourceOptions options)
type: intersight:ServerProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServerProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServerProfileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServerProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerProfileArgs
- 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 serverProfileResource = new Intersight.ServerProfile("serverProfileResource", new()
{
    AccountMoid = "string",
    Action = "string",
    ActionParams = new[]
    {
        new Intersight.Inputs.ServerProfileActionParamArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Name = "string",
            ObjectType = "string",
            Value = "string",
        },
    },
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.ServerProfileAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    AssignedServers = new[]
    {
        new Intersight.Inputs.ServerProfileAssignedServerArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    AssociatedServerPools = new[]
    {
        new Intersight.Inputs.ServerProfileAssociatedServerPoolArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    AssociatedServers = new[]
    {
        new Intersight.Inputs.ServerProfileAssociatedServerArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ClassId = "string",
    ConfigChangeContexts = new[]
    {
        new Intersight.Inputs.ServerProfileConfigChangeContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ConfigChangeError = "string",
            ConfigChangeState = "string",
            InitialConfigContexts = new[]
            {
                new Intersight.Inputs.ServerProfileConfigChangeContextInitialConfigContextArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    ConfigState = "string",
                    ConfigStateSummary = "string",
                    ConfigType = "string",
                    ControlAction = "string",
                    ErrorState = "string",
                    InconsistencyReasons = new[]
                    {
                        "string",
                    },
                    ObjectType = "string",
                    OperState = "string",
                },
            },
            ObjectType = "string",
        },
    },
    ConfigChangeDetails = new[]
    {
        new Intersight.Inputs.ServerProfileConfigChangeDetailArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ConfigChanges = new[]
    {
        new Intersight.Inputs.ServerProfileConfigChangeArgs
        {
            AdditionalProperties = "string",
            Changes = new[]
            {
                "string",
            },
            ClassId = "string",
            Disruptions = new[]
            {
                "string",
            },
            ObjectType = "string",
            PolicyDisruptions = new[]
            {
                new Intersight.Inputs.ServerProfileConfigChangePolicyDisruptionArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Disruptions = new[]
                    {
                        "string",
                    },
                    IsOnlyRequiredByOtherPolicies = false,
                    ObjectType = "string",
                    PolicyName = "string",
                    PolicyPendingAction = "string",
                    RequiredByPolicies = new[]
                    {
                        "string",
                    },
                },
            },
        },
    },
    ConfigContexts = new[]
    {
        new Intersight.Inputs.ServerProfileConfigContextArgs
        {
            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.ServerProfileConfigResultArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    CreateTime = "string",
    DeployStatus = "string",
    DeployedPolicies = new[]
    {
        "string",
    },
    DeployedSwitches = "string",
    Description = "string",
    DomainGroupMoid = "string",
    InternalReservationReferences = new[]
    {
        new Intersight.Inputs.ServerProfileInternalReservationReferenceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            ReservationMoid = "string",
        },
    },
    IsPmcDeployedSecurePassphraseSet = false,
    LeasedServers = new[]
    {
        new Intersight.Inputs.ServerProfileLeasedServerArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ManagementMode = "string",
    ModTime = "string",
    Moid = "string",
    Name = "string",
    ObjectType = "string",
    Organizations = new[]
    {
        new Intersight.Inputs.ServerProfileOrganizationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    OverriddenLists = new[]
    {
        "string",
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.ServerProfileParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.ServerProfilePermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PmcDeployedSecurePassphrase = "string",
    PolicyBuckets = new[]
    {
        new Intersight.Inputs.ServerProfilePolicyBucketArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    RemovedPolicies = new[]
    {
        "string",
    },
    ReservationReferences = new[]
    {
        new Intersight.Inputs.ServerProfileReservationReferenceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            ReservationMoid = "string",
        },
    },
    ResourceLeases = new[]
    {
        new Intersight.Inputs.ServerProfileResourceLeaseArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    RunningWorkflows = new[]
    {
        new Intersight.Inputs.ServerProfileRunningWorkflowArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ScheduledActions = new[]
    {
        new Intersight.Inputs.ServerProfileScheduledActionArgs
        {
            Action = "string",
            ActionQualifiers = new[]
            {
                new Intersight.Inputs.ServerProfileScheduledActionActionQualifierArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    ObjectType = "string",
                },
            },
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            ProceedOnReboot = false,
        },
    },
    ServerAssignmentMode = "string",
    ServerPools = new[]
    {
        new Intersight.Inputs.ServerProfileServerPoolArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ServerPreAssignBySerial = "string",
    ServerPreAssignBySlots = new[]
    {
        new Intersight.Inputs.ServerProfileServerPreAssignBySlotArgs
        {
            AdditionalProperties = "string",
            ChassisId = 0,
            ClassId = "string",
            DomainName = "string",
            ObjectType = "string",
            SlotId = 0,
        },
    },
    ServerProfileId = "string",
    SharedScope = "string",
    SrcTemplates = new[]
    {
        new Intersight.Inputs.ServerProfileSrcTemplateArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    StaticUuidAddress = "string",
    Tags = new[]
    {
        new Intersight.Inputs.ServerProfileTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    TargetPlatform = "string",
    TemplateActions = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateActionArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
            Params = new[]
            {
                new Intersight.Inputs.ServerProfileTemplateActionParamArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Value = "string",
                },
            },
            Type = "string",
        },
    },
    TemplateSyncErrors = new[]
    {
        new Intersight.Inputs.ServerProfileTemplateSyncErrorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Message = "string",
            ObjectType = "string",
            Type = "string",
        },
    },
    TemplateSyncStatus = "string",
    Type = "string",
    UserLabel = "string",
    Uuid = "string",
    UuidAddressType = "string",
    UuidLeases = new[]
    {
        new Intersight.Inputs.ServerProfileUuidLeaseArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    UuidPools = new[]
    {
        new Intersight.Inputs.ServerProfileUuidPoolArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    VersionContexts = new[]
    {
        new Intersight.Inputs.ServerProfileVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.ServerProfileVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.ServerProfileVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
    WaitForCompletion = false,
});
example, err := intersight.NewServerProfile(ctx, "serverProfileResource", &intersight.ServerProfileArgs{
	AccountMoid: pulumi.String("string"),
	Action:      pulumi.String("string"),
	ActionParams: intersight.ServerProfileActionParamArray{
		&intersight.ServerProfileActionParamArgs{
			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: intersight.ServerProfileAncestorArray{
		&intersight.ServerProfileAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	AssignedServers: intersight.ServerProfileAssignedServerArray{
		&intersight.ServerProfileAssignedServerArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	AssociatedServerPools: intersight.ServerProfileAssociatedServerPoolArray{
		&intersight.ServerProfileAssociatedServerPoolArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	AssociatedServers: intersight.ServerProfileAssociatedServerArray{
		&intersight.ServerProfileAssociatedServerArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ClassId: pulumi.String("string"),
	ConfigChangeContexts: intersight.ServerProfileConfigChangeContextArray{
		&intersight.ServerProfileConfigChangeContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ConfigChangeError:    pulumi.String("string"),
			ConfigChangeState:    pulumi.String("string"),
			InitialConfigContexts: intersight.ServerProfileConfigChangeContextInitialConfigContextArray{
				&intersight.ServerProfileConfigChangeContextInitialConfigContextArgs{
					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"),
				},
			},
			ObjectType: pulumi.String("string"),
		},
	},
	ConfigChangeDetails: intersight.ServerProfileConfigChangeDetailArray{
		&intersight.ServerProfileConfigChangeDetailArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ConfigChanges: intersight.ServerProfileConfigChangeArray{
		&intersight.ServerProfileConfigChangeArgs{
			AdditionalProperties: pulumi.String("string"),
			Changes: pulumi.StringArray{
				pulumi.String("string"),
			},
			ClassId: pulumi.String("string"),
			Disruptions: pulumi.StringArray{
				pulumi.String("string"),
			},
			ObjectType: pulumi.String("string"),
			PolicyDisruptions: intersight.ServerProfileConfigChangePolicyDisruptionArray{
				&intersight.ServerProfileConfigChangePolicyDisruptionArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Disruptions: pulumi.StringArray{
						pulumi.String("string"),
					},
					IsOnlyRequiredByOtherPolicies: pulumi.Bool(false),
					ObjectType:                    pulumi.String("string"),
					PolicyName:                    pulumi.String("string"),
					PolicyPendingAction:           pulumi.String("string"),
					RequiredByPolicies: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
		},
	},
	ConfigContexts: intersight.ServerProfileConfigContextArray{
		&intersight.ServerProfileConfigContextArgs{
			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: intersight.ServerProfileConfigResultArray{
		&intersight.ServerProfileConfigResultArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	CreateTime:   pulumi.String("string"),
	DeployStatus: pulumi.String("string"),
	DeployedPolicies: pulumi.StringArray{
		pulumi.String("string"),
	},
	DeployedSwitches: pulumi.String("string"),
	Description:      pulumi.String("string"),
	DomainGroupMoid:  pulumi.String("string"),
	InternalReservationReferences: intersight.ServerProfileInternalReservationReferenceArray{
		&intersight.ServerProfileInternalReservationReferenceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			ReservationMoid:      pulumi.String("string"),
		},
	},
	IsPmcDeployedSecurePassphraseSet: pulumi.Bool(false),
	LeasedServers: intersight.ServerProfileLeasedServerArray{
		&intersight.ServerProfileLeasedServerArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ManagementMode: pulumi.String("string"),
	ModTime:        pulumi.String("string"),
	Moid:           pulumi.String("string"),
	Name:           pulumi.String("string"),
	ObjectType:     pulumi.String("string"),
	Organizations: intersight.ServerProfileOrganizationArray{
		&intersight.ServerProfileOrganizationArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	OverriddenLists: pulumi.StringArray{
		pulumi.String("string"),
	},
	Owners: pulumi.StringArray{
		pulumi.String("string"),
	},
	Parents: intersight.ServerProfileParentArray{
		&intersight.ServerProfileParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.ServerProfilePermissionResourceArray{
		&intersight.ServerProfilePermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PmcDeployedSecurePassphrase: pulumi.String("string"),
	PolicyBuckets: intersight.ServerProfilePolicyBucketArray{
		&intersight.ServerProfilePolicyBucketArgs{
			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"),
	},
	ReservationReferences: intersight.ServerProfileReservationReferenceArray{
		&intersight.ServerProfileReservationReferenceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			ReservationMoid:      pulumi.String("string"),
		},
	},
	ResourceLeases: intersight.ServerProfileResourceLeaseArray{
		&intersight.ServerProfileResourceLeaseArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	RunningWorkflows: intersight.ServerProfileRunningWorkflowArray{
		&intersight.ServerProfileRunningWorkflowArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ScheduledActions: intersight.ServerProfileScheduledActionArray{
		&intersight.ServerProfileScheduledActionArgs{
			Action: pulumi.String("string"),
			ActionQualifiers: intersight.ServerProfileScheduledActionActionQualifierArray{
				&intersight.ServerProfileScheduledActionActionQualifierArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
				},
			},
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			ProceedOnReboot:      pulumi.Bool(false),
		},
	},
	ServerAssignmentMode: pulumi.String("string"),
	ServerPools: intersight.ServerProfileServerPoolArray{
		&intersight.ServerProfileServerPoolArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ServerPreAssignBySerial: pulumi.String("string"),
	ServerPreAssignBySlots: intersight.ServerProfileServerPreAssignBySlotArray{
		&intersight.ServerProfileServerPreAssignBySlotArgs{
			AdditionalProperties: pulumi.String("string"),
			ChassisId:            pulumi.Float64(0),
			ClassId:              pulumi.String("string"),
			DomainName:           pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			SlotId:               pulumi.Float64(0),
		},
	},
	ServerProfileId: pulumi.String("string"),
	SharedScope:     pulumi.String("string"),
	SrcTemplates: intersight.ServerProfileSrcTemplateArray{
		&intersight.ServerProfileSrcTemplateArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	StaticUuidAddress: pulumi.String("string"),
	Tags: intersight.ServerProfileTagArray{
		&intersight.ServerProfileTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	TargetPlatform: pulumi.String("string"),
	TemplateActions: intersight.ServerProfileTemplateActionArray{
		&intersight.ServerProfileTemplateActionArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Params: intersight.ServerProfileTemplateActionParamArray{
				&intersight.ServerProfileTemplateActionParamArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Name:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Value:                pulumi.String("string"),
				},
			},
			Type: pulumi.String("string"),
		},
	},
	TemplateSyncErrors: intersight.ServerProfileTemplateSyncErrorArray{
		&intersight.ServerProfileTemplateSyncErrorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Message:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Type:                 pulumi.String("string"),
		},
	},
	TemplateSyncStatus: pulumi.String("string"),
	Type:               pulumi.String("string"),
	UserLabel:          pulumi.String("string"),
	Uuid:               pulumi.String("string"),
	UuidAddressType:    pulumi.String("string"),
	UuidLeases: intersight.ServerProfileUuidLeaseArray{
		&intersight.ServerProfileUuidLeaseArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	UuidPools: intersight.ServerProfileUuidPoolArray{
		&intersight.ServerProfileUuidPoolArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	VersionContexts: intersight.ServerProfileVersionContextArray{
		&intersight.ServerProfileVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.ServerProfileVersionContextInterestedMoArray{
				&intersight.ServerProfileVersionContextInterestedMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			MarkedForDeletion: pulumi.Bool(false),
			NrVersion:         pulumi.String("string"),
			ObjectType:        pulumi.String("string"),
			RefMos: intersight.ServerProfileVersionContextRefMoArray{
				&intersight.ServerProfileVersionContextRefMoArgs{
					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"),
		},
	},
	WaitForCompletion: pulumi.Bool(false),
})
var serverProfileResource = new ServerProfile("serverProfileResource", ServerProfileArgs.builder()
    .accountMoid("string")
    .action("string")
    .actionParams(ServerProfileActionParamArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .name("string")
        .objectType("string")
        .value("string")
        .build())
    .additionalProperties("string")
    .ancestors(ServerProfileAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .assignedServers(ServerProfileAssignedServerArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .associatedServerPools(ServerProfileAssociatedServerPoolArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .associatedServers(ServerProfileAssociatedServerArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .classId("string")
    .configChangeContexts(ServerProfileConfigChangeContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .configChangeError("string")
        .configChangeState("string")
        .initialConfigContexts(ServerProfileConfigChangeContextInitialConfigContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .configState("string")
            .configStateSummary("string")
            .configType("string")
            .controlAction("string")
            .errorState("string")
            .inconsistencyReasons("string")
            .objectType("string")
            .operState("string")
            .build())
        .objectType("string")
        .build())
    .configChangeDetails(ServerProfileConfigChangeDetailArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .configChanges(ServerProfileConfigChangeArgs.builder()
        .additionalProperties("string")
        .changes("string")
        .classId("string")
        .disruptions("string")
        .objectType("string")
        .policyDisruptions(ServerProfileConfigChangePolicyDisruptionArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .disruptions("string")
            .isOnlyRequiredByOtherPolicies(false)
            .objectType("string")
            .policyName("string")
            .policyPendingAction("string")
            .requiredByPolicies("string")
            .build())
        .build())
    .configContexts(ServerProfileConfigContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .configState("string")
        .configStateSummary("string")
        .configType("string")
        .controlAction("string")
        .errorState("string")
        .inconsistencyReasons("string")
        .objectType("string")
        .operState("string")
        .build())
    .configResults(ServerProfileConfigResultArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .createTime("string")
    .deployStatus("string")
    .deployedPolicies("string")
    .deployedSwitches("string")
    .description("string")
    .domainGroupMoid("string")
    .internalReservationReferences(ServerProfileInternalReservationReferenceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .reservationMoid("string")
        .build())
    .isPmcDeployedSecurePassphraseSet(false)
    .leasedServers(ServerProfileLeasedServerArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .managementMode("string")
    .modTime("string")
    .moid("string")
    .name("string")
    .objectType("string")
    .organizations(ServerProfileOrganizationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .overriddenLists("string")
    .owners("string")
    .parents(ServerProfileParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(ServerProfilePermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .pmcDeployedSecurePassphrase("string")
    .policyBuckets(ServerProfilePolicyBucketArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .removedPolicies("string")
    .reservationReferences(ServerProfileReservationReferenceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .reservationMoid("string")
        .build())
    .resourceLeases(ServerProfileResourceLeaseArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .runningWorkflows(ServerProfileRunningWorkflowArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .scheduledActions(ServerProfileScheduledActionArgs.builder()
        .action("string")
        .actionQualifiers(ServerProfileScheduledActionActionQualifierArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .objectType("string")
            .build())
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .proceedOnReboot(false)
        .build())
    .serverAssignmentMode("string")
    .serverPools(ServerProfileServerPoolArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .serverPreAssignBySerial("string")
    .serverPreAssignBySlots(ServerProfileServerPreAssignBySlotArgs.builder()
        .additionalProperties("string")
        .chassisId(0.0)
        .classId("string")
        .domainName("string")
        .objectType("string")
        .slotId(0.0)
        .build())
    .serverProfileId("string")
    .sharedScope("string")
    .srcTemplates(ServerProfileSrcTemplateArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .staticUuidAddress("string")
    .tags(ServerProfileTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .targetPlatform("string")
    .templateActions(ServerProfileTemplateActionArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .params(ServerProfileTemplateActionParamArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .value("string")
            .build())
        .type("string")
        .build())
    .templateSyncErrors(ServerProfileTemplateSyncErrorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .message("string")
        .objectType("string")
        .type("string")
        .build())
    .templateSyncStatus("string")
    .type("string")
    .userLabel("string")
    .uuid("string")
    .uuidAddressType("string")
    .uuidLeases(ServerProfileUuidLeaseArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .uuidPools(ServerProfileUuidPoolArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .versionContexts(ServerProfileVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(ServerProfileVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(ServerProfileVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .waitForCompletion(false)
    .build());
server_profile_resource = intersight.ServerProfile("serverProfileResource",
    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",
    }],
    assigned_servers=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    associated_server_pools=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    associated_servers=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    class_id="string",
    config_change_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "config_change_error": "string",
        "config_change_state": "string",
        "initial_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",
        }],
        "object_type": "string",
    }],
    config_change_details=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    config_changes=[{
        "additional_properties": "string",
        "changes": ["string"],
        "class_id": "string",
        "disruptions": ["string"],
        "object_type": "string",
        "policy_disruptions": [{
            "additional_properties": "string",
            "class_id": "string",
            "disruptions": ["string"],
            "is_only_required_by_other_policies": False,
            "object_type": "string",
            "policy_name": "string",
            "policy_pending_action": "string",
            "required_by_policies": ["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",
    deploy_status="string",
    deployed_policies=["string"],
    deployed_switches="string",
    description="string",
    domain_group_moid="string",
    internal_reservation_references=[{
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "reservation_moid": "string",
    }],
    is_pmc_deployed_secure_passphrase_set=False,
    leased_servers=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    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",
    }],
    overridden_lists=["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",
    }],
    pmc_deployed_secure_passphrase="string",
    policy_buckets=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    removed_policies=["string"],
    reservation_references=[{
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "reservation_moid": "string",
    }],
    resource_leases=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    running_workflows=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    scheduled_actions=[{
        "action": "string",
        "action_qualifiers": [{
            "additional_properties": "string",
            "class_id": "string",
            "object_type": "string",
        }],
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
        "proceed_on_reboot": False,
    }],
    server_assignment_mode="string",
    server_pools=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    server_pre_assign_by_serial="string",
    server_pre_assign_by_slots=[{
        "additional_properties": "string",
        "chassis_id": 0,
        "class_id": "string",
        "domain_name": "string",
        "object_type": "string",
        "slot_id": 0,
    }],
    server_profile_id="string",
    shared_scope="string",
    src_templates=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    static_uuid_address="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",
    }],
    template_sync_errors=[{
        "additional_properties": "string",
        "class_id": "string",
        "message": "string",
        "object_type": "string",
        "type": "string",
    }],
    template_sync_status="string",
    type="string",
    user_label="string",
    uuid="string",
    uuid_address_type="string",
    uuid_leases=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "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",
    }],
    wait_for_completion=False)
const serverProfileResource = new intersight.ServerProfile("serverProfileResource", {
    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",
    }],
    assignedServers: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    associatedServerPools: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    associatedServers: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    classId: "string",
    configChangeContexts: [{
        additionalProperties: "string",
        classId: "string",
        configChangeError: "string",
        configChangeState: "string",
        initialConfigContexts: [{
            additionalProperties: "string",
            classId: "string",
            configState: "string",
            configStateSummary: "string",
            configType: "string",
            controlAction: "string",
            errorState: "string",
            inconsistencyReasons: ["string"],
            objectType: "string",
            operState: "string",
        }],
        objectType: "string",
    }],
    configChangeDetails: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    configChanges: [{
        additionalProperties: "string",
        changes: ["string"],
        classId: "string",
        disruptions: ["string"],
        objectType: "string",
        policyDisruptions: [{
            additionalProperties: "string",
            classId: "string",
            disruptions: ["string"],
            isOnlyRequiredByOtherPolicies: false,
            objectType: "string",
            policyName: "string",
            policyPendingAction: "string",
            requiredByPolicies: ["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",
    deployStatus: "string",
    deployedPolicies: ["string"],
    deployedSwitches: "string",
    description: "string",
    domainGroupMoid: "string",
    internalReservationReferences: [{
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        reservationMoid: "string",
    }],
    isPmcDeployedSecurePassphraseSet: false,
    leasedServers: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    managementMode: "string",
    modTime: "string",
    moid: "string",
    name: "string",
    objectType: "string",
    organizations: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    overriddenLists: ["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",
    }],
    pmcDeployedSecurePassphrase: "string",
    policyBuckets: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    removedPolicies: ["string"],
    reservationReferences: [{
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        reservationMoid: "string",
    }],
    resourceLeases: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    runningWorkflows: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    scheduledActions: [{
        action: "string",
        actionQualifiers: [{
            additionalProperties: "string",
            classId: "string",
            objectType: "string",
        }],
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
        proceedOnReboot: false,
    }],
    serverAssignmentMode: "string",
    serverPools: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    serverPreAssignBySerial: "string",
    serverPreAssignBySlots: [{
        additionalProperties: "string",
        chassisId: 0,
        classId: "string",
        domainName: "string",
        objectType: "string",
        slotId: 0,
    }],
    serverProfileId: "string",
    sharedScope: "string",
    srcTemplates: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    staticUuidAddress: "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",
    }],
    templateSyncErrors: [{
        additionalProperties: "string",
        classId: "string",
        message: "string",
        objectType: "string",
        type: "string",
    }],
    templateSyncStatus: "string",
    type: "string",
    userLabel: "string",
    uuid: "string",
    uuidAddressType: "string",
    uuidLeases: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "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",
    }],
    waitForCompletion: false,
});
type: intersight:ServerProfile
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
    assignedServers:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    associatedServerPools:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    associatedServers:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    classId: string
    configChangeContexts:
        - additionalProperties: string
          classId: string
          configChangeError: string
          configChangeState: string
          initialConfigContexts:
            - additionalProperties: string
              classId: string
              configState: string
              configStateSummary: string
              configType: string
              controlAction: string
              errorState: string
              inconsistencyReasons:
                - string
              objectType: string
              operState: string
          objectType: string
    configChangeDetails:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    configChanges:
        - additionalProperties: string
          changes:
            - string
          classId: string
          disruptions:
            - string
          objectType: string
          policyDisruptions:
            - additionalProperties: string
              classId: string
              disruptions:
                - string
              isOnlyRequiredByOtherPolicies: false
              objectType: string
              policyName: string
              policyPendingAction: string
              requiredByPolicies:
                - 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
    deployStatus: string
    deployedPolicies:
        - string
    deployedSwitches: string
    description: string
    domainGroupMoid: string
    internalReservationReferences:
        - additionalProperties: string
          classId: string
          objectType: string
          reservationMoid: string
    isPmcDeployedSecurePassphraseSet: false
    leasedServers:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    managementMode: string
    modTime: string
    moid: string
    name: string
    objectType: string
    organizations:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    overriddenLists:
        - 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
    pmcDeployedSecurePassphrase: string
    policyBuckets:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    removedPolicies:
        - string
    reservationReferences:
        - additionalProperties: string
          classId: string
          objectType: string
          reservationMoid: string
    resourceLeases:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    runningWorkflows:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    scheduledActions:
        - action: string
          actionQualifiers:
            - additionalProperties: string
              classId: string
              objectType: string
          additionalProperties: string
          classId: string
          objectType: string
          proceedOnReboot: false
    serverAssignmentMode: string
    serverPools:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    serverPreAssignBySerial: string
    serverPreAssignBySlots:
        - additionalProperties: string
          chassisId: 0
          classId: string
          domainName: string
          objectType: string
          slotId: 0
    serverProfileId: string
    sharedScope: string
    srcTemplates:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    staticUuidAddress: 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
    templateSyncErrors:
        - additionalProperties: string
          classId: string
          message: string
          objectType: string
          type: string
    templateSyncStatus: string
    type: string
    userLabel: string
    uuid: string
    uuidAddressType: string
    uuidLeases:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: 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
    waitForCompletion: false
ServerProfile 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 ServerProfile 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<ServerProfile Action Param> 
- This complex property has following sub-properties:
- AdditionalProperties string
- Ancestors
List<ServerProfile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- AssignedServers List<ServerProfile Assigned Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServer List<ServerPools Profile Associated Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServers List<ServerProfile Associated Server> 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- ConfigChange List<ServerContexts Profile Config Change Context> 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- ConfigChange List<ServerDetails Profile Config Change Detail> 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- ConfigChanges List<ServerProfile Config Change> 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- ConfigContexts List<ServerProfile Config Context> 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- ConfigResults List<ServerProfile Config Result> 
- (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.
- DeployStatus string
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- DeployedPolicies List<string>
- (Array of schema.TypeString) -
- DeployedSwitches string
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- InternalReservation List<ServerReferences Profile Internal Reservation Reference> 
- This complex property has following sub-properties:
- IsPmc boolDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- LeasedServers List<ServerProfile Leased Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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<ServerProfile Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OverriddenLists List<string>
- (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<ServerProfile Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources List<ServerProfile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PmcDeployed stringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- PolicyBuckets List<ServerProfile Policy Bucket> 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- RemovedPolicies List<string>
- (Array of schema.TypeString) -
- ReservationReferences List<ServerProfile Reservation Reference> 
- This complex property has following sub-properties:
- ResourceLeases List<ServerProfile Resource Lease> 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- RunningWorkflows List<ServerProfile Running Workflow> 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- ScheduledActions List<ServerProfile Scheduled Action> 
- This complex property has following sub-properties:
- ServerAssignment stringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- ServerPools List<ServerProfile Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ServerPre stringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- ServerPre List<ServerAssign By Slots Profile Server Pre Assign By Slot> 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- ServerProfile stringId 
- 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<ServerProfile Src Template> 
- 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:
- StaticUuid stringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
List<ServerProfile Tag> 
- 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<ServerProfile Template Action> 
- This complex property has following sub-properties:
- TemplateSync List<ServerErrors Profile Template Sync Error> 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- UserLabel string
- User label assigned to the server profile.
- Uuid string
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- UuidAddress stringType 
- 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.
- UuidLeases List<ServerProfile Uuid Lease> 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- UuidPools List<ServerProfile Uuid Pool> 
- 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<ServerProfile Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- WaitFor boolCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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 []ServerProfile Action Param Args 
- This complex property has following sub-properties:
- AdditionalProperties string
- Ancestors
[]ServerProfile Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- AssignedServers []ServerProfile Assigned Server Args 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServer []ServerPools Profile Associated Server Pool Args 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServers []ServerProfile Associated Server Args 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- ConfigChange []ServerContexts Profile Config Change Context Args 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- ConfigChange []ServerDetails Profile Config Change Detail Args 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- ConfigChanges []ServerProfile Config Change Args 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- ConfigContexts []ServerProfile Config Context Args 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- ConfigResults []ServerProfile Config Result Args 
- (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.
- DeployStatus string
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- DeployedPolicies []string
- (Array of schema.TypeString) -
- DeployedSwitches string
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- InternalReservation []ServerReferences Profile Internal Reservation Reference Args 
- This complex property has following sub-properties:
- IsPmc boolDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- LeasedServers []ServerProfile Leased Server Args 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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
[]ServerProfile Organization Args 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OverriddenLists []string
- (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]ServerProfile Parent Args 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources []ServerProfile Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PmcDeployed stringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- PolicyBuckets []ServerProfile Policy Bucket Args 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- RemovedPolicies []string
- (Array of schema.TypeString) -
- ReservationReferences []ServerProfile Reservation Reference Args 
- This complex property has following sub-properties:
- ResourceLeases []ServerProfile Resource Lease Args 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- RunningWorkflows []ServerProfile Running Workflow Args 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- ScheduledActions []ServerProfile Scheduled Action Args 
- This complex property has following sub-properties:
- ServerAssignment stringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- ServerPools []ServerProfile Server Pool Args 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ServerPre stringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- ServerPre []ServerAssign By Slots Profile Server Pre Assign By Slot Args 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- ServerProfile stringId 
- 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 []ServerProfile Src Template Args 
- 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:
- StaticUuid stringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
[]ServerProfile Tag Args 
- 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 []ServerProfile Template Action Args 
- This complex property has following sub-properties:
- TemplateSync []ServerErrors Profile Template Sync Error Args 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- UserLabel string
- User label assigned to the server profile.
- Uuid string
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- UuidAddress stringType 
- 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.
- UuidLeases []ServerProfile Uuid Lease Args 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- UuidPools []ServerProfile Uuid Pool Args 
- 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 []ServerProfile Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- WaitFor boolCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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<ServerProfile Action Param> 
- This complex property has following sub-properties:
- additionalProperties String
- ancestors
List<ServerProfile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assignedServers List<ServerProfile Assigned Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServer List<ServerPools Profile Associated Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServers List<ServerProfile Associated Server> 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- configChange List<ServerContexts Profile Config Change Context> 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- configChange List<ServerDetails Profile Config Change Detail> 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- configChanges List<ServerProfile Config Change> 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- configContexts List<ServerProfile Config Context> 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- configResults List<ServerProfile Config Result> 
- (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.
- deployStatus String
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployedPolicies List<String>
- (Array of schema.TypeString) -
- deployedSwitches String
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internalReservation List<ServerReferences Profile Internal Reservation Reference> 
- This complex property has following sub-properties:
- isPmc BooleanDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leasedServers List<ServerProfile Leased Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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<ServerProfile Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overriddenLists List<String>
- (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<ServerProfile Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<ServerProfile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmcDeployed StringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- policyBuckets List<ServerProfile Policy Bucket> 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removedPolicies List<String>
- (Array of schema.TypeString) -
- reservationReferences List<ServerProfile Reservation Reference> 
- This complex property has following sub-properties:
- resourceLeases List<ServerProfile Resource Lease> 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- runningWorkflows List<ServerProfile Running Workflow> 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduledActions List<ServerProfile Scheduled Action> 
- This complex property has following sub-properties:
- serverAssignment StringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- serverPools List<ServerProfile Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- serverPre StringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- serverPre List<ServerAssign By Slots Profile Server Pre Assign By Slot> 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- serverProfile StringId 
- 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<ServerProfile Src Template> 
- 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:
- staticUuid StringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
List<ServerProfile Tag> 
- 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<ServerProfile Template Action> 
- This complex property has following sub-properties:
- templateSync List<ServerErrors Profile Template Sync Error> 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- userLabel String
- User label assigned to the server profile.
- uuid String
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuidAddress StringType 
- 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.
- uuidLeases List<ServerProfile Uuid Lease> 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- uuidPools List<ServerProfile Uuid Pool> 
- 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<ServerProfile Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- waitFor BooleanCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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 ServerProfile Action Param[] 
- This complex property has following sub-properties:
- additionalProperties string
- ancestors
ServerProfile Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assignedServers ServerProfile Assigned Server[] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServer ServerPools Profile Associated Server Pool[] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServers ServerProfile Associated Server[] 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- configChange ServerContexts Profile Config Change Context[] 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- configChange ServerDetails Profile Config Change Detail[] 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- configChanges ServerProfile Config Change[] 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- configContexts ServerProfile Config Context[] 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- configResults ServerProfile Config Result[] 
- (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.
- deployStatus string
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployedPolicies string[]
- (Array of schema.TypeString) -
- deployedSwitches string
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description string
- Description of the profile.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internalReservation ServerReferences Profile Internal Reservation Reference[] 
- This complex property has following sub-properties:
- isPmc booleanDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leasedServers ServerProfile Leased Server[] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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
ServerProfile Organization[] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overriddenLists string[]
- (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
ServerProfile Parent[] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources ServerProfile Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmcDeployed stringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- policyBuckets ServerProfile Policy Bucket[] 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removedPolicies string[]
- (Array of schema.TypeString) -
- reservationReferences ServerProfile Reservation Reference[] 
- This complex property has following sub-properties:
- resourceLeases ServerProfile Resource Lease[] 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- runningWorkflows ServerProfile Running Workflow[] 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduledActions ServerProfile Scheduled Action[] 
- This complex property has following sub-properties:
- serverAssignment stringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- serverPools ServerProfile Server Pool[] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- serverPre stringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- serverPre ServerAssign By Slots Profile Server Pre Assign By Slot[] 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- serverProfile stringId 
- 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 ServerProfile Src Template[] 
- 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:
- staticUuid stringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
ServerProfile Tag[] 
- 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 ServerProfile Template Action[] 
- This complex property has following sub-properties:
- templateSync ServerErrors Profile Template Sync Error[] 
- This complex property has following sub-properties:
- templateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- userLabel string
- User label assigned to the server profile.
- uuid string
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuidAddress stringType 
- 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.
- uuidLeases ServerProfile Uuid Lease[] 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- uuidPools ServerProfile Uuid Pool[] 
- 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 ServerProfile Version Context[] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- waitFor booleanCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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[ServerProfile Action Param Args] 
- This complex property has following sub-properties:
- additional_properties str
- ancestors
Sequence[ServerProfile Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned_servers Sequence[ServerProfile Assigned Server Args] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated_server_ Sequence[Serverpools Profile Associated Server Pool Args] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated_servers Sequence[ServerProfile Associated Server Args] 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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_change_ Sequence[Servercontexts Profile Config Change Context Args] 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config_change_ Sequence[Serverdetails Profile Config Change Detail Args] 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config_changes Sequence[ServerProfile Config Change Args] 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config_contexts Sequence[ServerProfile Config Context Args] 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config_results Sequence[ServerProfile Config Result Args] 
- (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.
- deploy_status str
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployed_policies Sequence[str]
- (Array of schema.TypeString) -
- deployed_switches str
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description str
- Description of the profile.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internal_reservation_ Sequence[Serverreferences Profile Internal Reservation Reference Args] 
- This complex property has following sub-properties:
- is_pmc_ booldeployed_ secure_ passphrase_ set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased_servers Sequence[ServerProfile Leased Server Args] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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[ServerProfile Organization Args] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overridden_lists Sequence[str]
- (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[ServerProfile Parent Args] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_resources Sequence[ServerProfile Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc_deployed_ strsecure_ passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- policy_buckets Sequence[ServerProfile Policy Bucket Args] 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed_policies Sequence[str]
- (Array of schema.TypeString) -
- reservation_references Sequence[ServerProfile Reservation Reference Args] 
- This complex property has following sub-properties:
- resource_leases Sequence[ServerProfile Resource Lease Args] 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- running_workflows Sequence[ServerProfile Running Workflow Args] 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled_actions Sequence[ServerProfile Scheduled Action Args] 
- This complex property has following sub-properties:
- server_assignment_ strmode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- server_pools Sequence[ServerProfile Server Pool Args] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- server_pre_ strassign_ by_ serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- server_pre_ Sequence[Serverassign_ by_ slots Profile Server Pre Assign By Slot Args] 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- server_profile_ strid 
- 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[ServerProfile Src Template Args] 
- 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:
- static_uuid_ straddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
Sequence[ServerProfile Tag Args] 
- 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[ServerProfile Template Action Args] 
- This complex property has following sub-properties:
- template_sync_ Sequence[Servererrors Profile Template Sync Error Args] 
- This complex property has following sub-properties:
- template_sync_ strstatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- user_label str
- User label assigned to the server profile.
- uuid str
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuid_address_ strtype 
- 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_leases Sequence[ServerProfile Uuid Lease Args] 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- uuid_pools Sequence[ServerProfile Uuid Pool Args] 
- 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[ServerProfile Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait_for_ boolcompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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:
- assignedServers List<Property Map>
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServer List<Property Map>Pools 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServers List<Property Map>
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- configChange List<Property Map>Contexts 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- configChange List<Property Map>Details 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- configChanges List<Property Map>
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- 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.
- deployStatus String
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployedPolicies List<String>
- (Array of schema.TypeString) -
- deployedSwitches String
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internalReservation List<Property Map>References 
- This complex property has following sub-properties:
- isPmc BooleanDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leasedServers List<Property Map>
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- overriddenLists List<String>
- (Array of schema.TypeString) -
- 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:
- pmcDeployed StringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- 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) -
- reservationReferences List<Property Map>
- This complex property has following sub-properties:
- resourceLeases List<Property Map>
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- runningWorkflows List<Property Map>
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduledActions List<Property Map>
- This complex property has following sub-properties:
- serverAssignment StringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- serverPools List<Property Map>
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- serverPre StringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- serverPre List<Property Map>Assign By Slots 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- serverProfile StringId 
- 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:
- staticUuid StringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 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:
- templateSync List<Property Map>Errors 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- userLabel String
- User label assigned to the server profile.
- uuid String
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuidAddress StringType 
- 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.
- uuidLeases List<Property Map>
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- waitFor BooleanCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerProfile 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 ServerProfile Resource
Get an existing ServerProfile 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?: ServerProfileState, opts?: CustomResourceOptions): ServerProfile@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[ServerProfileActionParamArgs]] = None,
        additional_properties: Optional[str] = None,
        ancestors: Optional[Sequence[ServerProfileAncestorArgs]] = None,
        assigned_servers: Optional[Sequence[ServerProfileAssignedServerArgs]] = None,
        associated_server_pools: Optional[Sequence[ServerProfileAssociatedServerPoolArgs]] = None,
        associated_servers: Optional[Sequence[ServerProfileAssociatedServerArgs]] = None,
        class_id: Optional[str] = None,
        config_change_contexts: Optional[Sequence[ServerProfileConfigChangeContextArgs]] = None,
        config_change_details: Optional[Sequence[ServerProfileConfigChangeDetailArgs]] = None,
        config_changes: Optional[Sequence[ServerProfileConfigChangeArgs]] = None,
        config_contexts: Optional[Sequence[ServerProfileConfigContextArgs]] = None,
        config_results: Optional[Sequence[ServerProfileConfigResultArgs]] = None,
        create_time: Optional[str] = None,
        deploy_status: Optional[str] = None,
        deployed_policies: Optional[Sequence[str]] = None,
        deployed_switches: Optional[str] = None,
        description: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        internal_reservation_references: Optional[Sequence[ServerProfileInternalReservationReferenceArgs]] = None,
        is_pmc_deployed_secure_passphrase_set: Optional[bool] = None,
        leased_servers: Optional[Sequence[ServerProfileLeasedServerArgs]] = 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[ServerProfileOrganizationArgs]] = None,
        overridden_lists: Optional[Sequence[str]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[ServerProfileParentArgs]] = None,
        permission_resources: Optional[Sequence[ServerProfilePermissionResourceArgs]] = None,
        pmc_deployed_secure_passphrase: Optional[str] = None,
        policy_buckets: Optional[Sequence[ServerProfilePolicyBucketArgs]] = None,
        removed_policies: Optional[Sequence[str]] = None,
        reservation_references: Optional[Sequence[ServerProfileReservationReferenceArgs]] = None,
        resource_leases: Optional[Sequence[ServerProfileResourceLeaseArgs]] = None,
        running_workflows: Optional[Sequence[ServerProfileRunningWorkflowArgs]] = None,
        scheduled_actions: Optional[Sequence[ServerProfileScheduledActionArgs]] = None,
        server_assignment_mode: Optional[str] = None,
        server_pools: Optional[Sequence[ServerProfileServerPoolArgs]] = None,
        server_pre_assign_by_serial: Optional[str] = None,
        server_pre_assign_by_slots: Optional[Sequence[ServerProfileServerPreAssignBySlotArgs]] = None,
        server_profile_id: Optional[str] = None,
        shared_scope: Optional[str] = None,
        src_templates: Optional[Sequence[ServerProfileSrcTemplateArgs]] = None,
        static_uuid_address: Optional[str] = None,
        tags: Optional[Sequence[ServerProfileTagArgs]] = None,
        target_platform: Optional[str] = None,
        template_actions: Optional[Sequence[ServerProfileTemplateActionArgs]] = None,
        template_sync_errors: Optional[Sequence[ServerProfileTemplateSyncErrorArgs]] = None,
        template_sync_status: Optional[str] = None,
        type: Optional[str] = None,
        user_label: Optional[str] = None,
        uuid: Optional[str] = None,
        uuid_address_type: Optional[str] = None,
        uuid_leases: Optional[Sequence[ServerProfileUuidLeaseArgs]] = None,
        uuid_pools: Optional[Sequence[ServerProfileUuidPoolArgs]] = None,
        version_contexts: Optional[Sequence[ServerProfileVersionContextArgs]] = None,
        wait_for_completion: Optional[bool] = None) -> ServerProfilefunc GetServerProfile(ctx *Context, name string, id IDInput, state *ServerProfileState, opts ...ResourceOption) (*ServerProfile, error)public static ServerProfile Get(string name, Input<string> id, ServerProfileState? state, CustomResourceOptions? opts = null)public static ServerProfile get(String name, Output<String> id, ServerProfileState state, CustomResourceOptions options)resources:  _:    type: intersight:ServerProfile    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- 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<ServerProfile Action Param> 
- This complex property has following sub-properties:
- AdditionalProperties string
- Ancestors
List<ServerProfile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- AssignedServers List<ServerProfile Assigned Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServer List<ServerPools Profile Associated Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServers List<ServerProfile Associated Server> 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- ConfigChange List<ServerContexts Profile Config Change Context> 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- ConfigChange List<ServerDetails Profile Config Change Detail> 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- ConfigChanges List<ServerProfile Config Change> 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- ConfigContexts List<ServerProfile Config Context> 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- ConfigResults List<ServerProfile Config Result> 
- (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.
- DeployStatus string
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- DeployedPolicies List<string>
- (Array of schema.TypeString) -
- DeployedSwitches string
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- InternalReservation List<ServerReferences Profile Internal Reservation Reference> 
- This complex property has following sub-properties:
- IsPmc boolDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- LeasedServers List<ServerProfile Leased Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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<ServerProfile Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OverriddenLists List<string>
- (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<ServerProfile Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources List<ServerProfile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PmcDeployed stringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- PolicyBuckets List<ServerProfile Policy Bucket> 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- RemovedPolicies List<string>
- (Array of schema.TypeString) -
- ReservationReferences List<ServerProfile Reservation Reference> 
- This complex property has following sub-properties:
- ResourceLeases List<ServerProfile Resource Lease> 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- RunningWorkflows List<ServerProfile Running Workflow> 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- ScheduledActions List<ServerProfile Scheduled Action> 
- This complex property has following sub-properties:
- ServerAssignment stringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- ServerPools List<ServerProfile Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ServerPre stringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- ServerPre List<ServerAssign By Slots Profile Server Pre Assign By Slot> 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- ServerProfile stringId 
- 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<ServerProfile Src Template> 
- 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:
- StaticUuid stringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
List<ServerProfile Tag> 
- 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<ServerProfile Template Action> 
- This complex property has following sub-properties:
- TemplateSync List<ServerErrors Profile Template Sync Error> 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- UserLabel string
- User label assigned to the server profile.
- Uuid string
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- UuidAddress stringType 
- 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.
- UuidLeases List<ServerProfile Uuid Lease> 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- UuidPools List<ServerProfile Uuid Pool> 
- 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<ServerProfile Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- WaitFor boolCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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 []ServerProfile Action Param Args 
- This complex property has following sub-properties:
- AdditionalProperties string
- Ancestors
[]ServerProfile Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- AssignedServers []ServerProfile Assigned Server Args 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServer []ServerPools Profile Associated Server Pool Args 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- AssociatedServers []ServerProfile Associated Server Args 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- ConfigChange []ServerContexts Profile Config Change Context Args 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- ConfigChange []ServerDetails Profile Config Change Detail Args 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- ConfigChanges []ServerProfile Config Change Args 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- ConfigContexts []ServerProfile Config Context Args 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- ConfigResults []ServerProfile Config Result Args 
- (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.
- DeployStatus string
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- DeployedPolicies []string
- (Array of schema.TypeString) -
- DeployedSwitches string
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- Description string
- Description of the profile.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- InternalReservation []ServerReferences Profile Internal Reservation Reference Args 
- This complex property has following sub-properties:
- IsPmc boolDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- LeasedServers []ServerProfile Leased Server Args 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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
[]ServerProfile Organization Args 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OverriddenLists []string
- (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]ServerProfile Parent Args 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources []ServerProfile Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- PmcDeployed stringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- PolicyBuckets []ServerProfile Policy Bucket Args 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- RemovedPolicies []string
- (Array of schema.TypeString) -
- ReservationReferences []ServerProfile Reservation Reference Args 
- This complex property has following sub-properties:
- ResourceLeases []ServerProfile Resource Lease Args 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- RunningWorkflows []ServerProfile Running Workflow Args 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- ScheduledActions []ServerProfile Scheduled Action Args 
- This complex property has following sub-properties:
- ServerAssignment stringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- ServerPools []ServerProfile Server Pool Args 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- ServerPre stringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- ServerPre []ServerAssign By Slots Profile Server Pre Assign By Slot Args 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- ServerProfile stringId 
- 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 []ServerProfile Src Template Args 
- 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:
- StaticUuid stringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
[]ServerProfile Tag Args 
- 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 []ServerProfile Template Action Args 
- This complex property has following sub-properties:
- TemplateSync []ServerErrors Profile Template Sync Error Args 
- This complex property has following sub-properties:
- TemplateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- UserLabel string
- User label assigned to the server profile.
- Uuid string
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- UuidAddress stringType 
- 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.
- UuidLeases []ServerProfile Uuid Lease Args 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- UuidPools []ServerProfile Uuid Pool Args 
- 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 []ServerProfile Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- WaitFor boolCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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<ServerProfile Action Param> 
- This complex property has following sub-properties:
- additionalProperties String
- ancestors
List<ServerProfile Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assignedServers List<ServerProfile Assigned Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServer List<ServerPools Profile Associated Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServers List<ServerProfile Associated Server> 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- configChange List<ServerContexts Profile Config Change Context> 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- configChange List<ServerDetails Profile Config Change Detail> 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- configChanges List<ServerProfile Config Change> 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- configContexts List<ServerProfile Config Context> 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- configResults List<ServerProfile Config Result> 
- (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.
- deployStatus String
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployedPolicies List<String>
- (Array of schema.TypeString) -
- deployedSwitches String
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internalReservation List<ServerReferences Profile Internal Reservation Reference> 
- This complex property has following sub-properties:
- isPmc BooleanDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leasedServers List<ServerProfile Leased Server> 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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<ServerProfile Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overriddenLists List<String>
- (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<ServerProfile Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<ServerProfile Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmcDeployed StringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- policyBuckets List<ServerProfile Policy Bucket> 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removedPolicies List<String>
- (Array of schema.TypeString) -
- reservationReferences List<ServerProfile Reservation Reference> 
- This complex property has following sub-properties:
- resourceLeases List<ServerProfile Resource Lease> 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- runningWorkflows List<ServerProfile Running Workflow> 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduledActions List<ServerProfile Scheduled Action> 
- This complex property has following sub-properties:
- serverAssignment StringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- serverPools List<ServerProfile Server Pool> 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- serverPre StringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- serverPre List<ServerAssign By Slots Profile Server Pre Assign By Slot> 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- serverProfile StringId 
- 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<ServerProfile Src Template> 
- 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:
- staticUuid StringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
List<ServerProfile Tag> 
- 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<ServerProfile Template Action> 
- This complex property has following sub-properties:
- templateSync List<ServerErrors Profile Template Sync Error> 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- userLabel String
- User label assigned to the server profile.
- uuid String
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuidAddress StringType 
- 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.
- uuidLeases List<ServerProfile Uuid Lease> 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- uuidPools List<ServerProfile Uuid Pool> 
- 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<ServerProfile Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- waitFor BooleanCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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 ServerProfile Action Param[] 
- This complex property has following sub-properties:
- additionalProperties string
- ancestors
ServerProfile Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assignedServers ServerProfile Assigned Server[] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServer ServerPools Profile Associated Server Pool[] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServers ServerProfile Associated Server[] 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- configChange ServerContexts Profile Config Change Context[] 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- configChange ServerDetails Profile Config Change Detail[] 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- configChanges ServerProfile Config Change[] 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- configContexts ServerProfile Config Context[] 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- configResults ServerProfile Config Result[] 
- (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.
- deployStatus string
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployedPolicies string[]
- (Array of schema.TypeString) -
- deployedSwitches string
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description string
- Description of the profile.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internalReservation ServerReferences Profile Internal Reservation Reference[] 
- This complex property has following sub-properties:
- isPmc booleanDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leasedServers ServerProfile Leased Server[] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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
ServerProfile Organization[] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overriddenLists string[]
- (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
ServerProfile Parent[] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources ServerProfile Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmcDeployed stringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- policyBuckets ServerProfile Policy Bucket[] 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removedPolicies string[]
- (Array of schema.TypeString) -
- reservationReferences ServerProfile Reservation Reference[] 
- This complex property has following sub-properties:
- resourceLeases ServerProfile Resource Lease[] 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- runningWorkflows ServerProfile Running Workflow[] 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduledActions ServerProfile Scheduled Action[] 
- This complex property has following sub-properties:
- serverAssignment stringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- serverPools ServerProfile Server Pool[] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- serverPre stringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- serverPre ServerAssign By Slots Profile Server Pre Assign By Slot[] 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- serverProfile stringId 
- 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 ServerProfile Src Template[] 
- 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:
- staticUuid stringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
ServerProfile Tag[] 
- 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 ServerProfile Template Action[] 
- This complex property has following sub-properties:
- templateSync ServerErrors Profile Template Sync Error[] 
- This complex property has following sub-properties:
- templateSync stringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- userLabel string
- User label assigned to the server profile.
- uuid string
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuidAddress stringType 
- 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.
- uuidLeases ServerProfile Uuid Lease[] 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- uuidPools ServerProfile Uuid Pool[] 
- 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 ServerProfile Version Context[] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- waitFor booleanCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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[ServerProfile Action Param Args] 
- This complex property has following sub-properties:
- additional_properties str
- ancestors
Sequence[ServerProfile Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned_servers Sequence[ServerProfile Assigned Server Args] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated_server_ Sequence[Serverpools Profile Associated Server Pool Args] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associated_servers Sequence[ServerProfile Associated Server Args] 
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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_change_ Sequence[Servercontexts Profile Config Change Context Args] 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config_change_ Sequence[Serverdetails Profile Config Change Detail Args] 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config_changes Sequence[ServerProfile Config Change Args] 
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- config_contexts Sequence[ServerProfile Config Context Args] 
- The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config_results Sequence[ServerProfile Config Result Args] 
- (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.
- deploy_status str
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployed_policies Sequence[str]
- (Array of schema.TypeString) -
- deployed_switches str
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description str
- Description of the profile.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internal_reservation_ Sequence[Serverreferences Profile Internal Reservation Reference Args] 
- This complex property has following sub-properties:
- is_pmc_ booldeployed_ secure_ passphrase_ set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased_servers Sequence[ServerProfile Leased Server Args] 
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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[ServerProfile Organization Args] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overridden_lists Sequence[str]
- (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[ServerProfile Parent Args] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_resources Sequence[ServerProfile Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc_deployed_ strsecure_ passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- policy_buckets Sequence[ServerProfile Policy Bucket Args] 
- An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed_policies Sequence[str]
- (Array of schema.TypeString) -
- reservation_references Sequence[ServerProfile Reservation Reference Args] 
- This complex property has following sub-properties:
- resource_leases Sequence[ServerProfile Resource Lease Args] 
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- running_workflows Sequence[ServerProfile Running Workflow Args] 
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled_actions Sequence[ServerProfile Scheduled Action Args] 
- This complex property has following sub-properties:
- server_assignment_ strmode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- server_pools Sequence[ServerProfile Server Pool Args] 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- server_pre_ strassign_ by_ serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- server_pre_ Sequence[Serverassign_ by_ slots Profile Server Pre Assign By Slot Args] 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- server_profile_ strid 
- 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[ServerProfile Src Template Args] 
- 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:
- static_uuid_ straddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 
Sequence[ServerProfile Tag Args] 
- 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[ServerProfile Template Action Args] 
- This complex property has following sub-properties:
- template_sync_ Sequence[Servererrors Profile Template Sync Error Args] 
- This complex property has following sub-properties:
- template_sync_ strstatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- user_label str
- User label assigned to the server profile.
- uuid str
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuid_address_ strtype 
- 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_leases Sequence[ServerProfile Uuid Lease Args] 
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- uuid_pools Sequence[ServerProfile Uuid Pool Args] 
- 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[ServerProfile Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait_for_ boolcompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- 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:
- assignedServers List<Property Map>
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServer List<Property Map>Pools 
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- associatedServers List<Property Map>
- (ReadOnly) A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. 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.
- configChange List<Property Map>Contexts 
- (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- configChange List<Property Map>Details 
- (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- configChanges List<Property Map>
- (ReadOnly) Pending configuration changes at the summary level. Detail changes are saved in configChangeDetails as a separate object. This complex property has following sub-properties:
- 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.
- deployStatus String
- (ReadOnly) The status of the server profile indicating if deployment has been initiated on both fabric interconnects or not.* None- Switch profiles not deployed on either of the switches.*Complete- Both switch profiles of the cluster profile are deployed.*Partial- Only one of the switch profiles of the cluster profile is deployed.
- deployedPolicies List<String>
- (Array of schema.TypeString) -
- deployedSwitches String
- (ReadOnly) The property which determines if the deployment should be skipped on any of the Fabric Interconnects. It is set based on the state of a fabric interconnect to Intersight before the deployment of the server proile begins.* None- Server profile configuration not deployed on either of the fabric interconnects.*AB- Server profile configuration deployed on both fabric interconnects.*A- Server profile configuration deployed on fabric interconnect A only.*B- Server profile configuration deployed on fabric interconnect B only.
- description String
- Description of the profile.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- internalReservation List<Property Map>References 
- This complex property has following sub-properties:
- isPmc BooleanDeployed Secure Passphrase Set 
- (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leasedServers List<Property Map>
- A reference to a computePhysical resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- overriddenLists List<String>
- (Array of schema.TypeString) -
- 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:
- pmcDeployed StringSecure Passphrase 
- Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.
- 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) -
- reservationReferences List<Property Map>
- This complex property has following sub-properties:
- resourceLeases List<Property Map>
- (ReadOnly) A reference to a resourcepoolLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- runningWorkflows List<Property Map>
- (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduledActions List<Property Map>
- This complex property has following sub-properties:
- serverAssignment StringMode 
- Source of the server assigned to the Server Profile. Values can be Static, Pool or None. Static is used if a server is attached directly to a Server Profile. Pool is used if a resource pool is attached to a Server Profile. None is used if no server or resource pool is attached to a Server Profile. Slot or Serial pre-assignment is also considered to be None as it is different form of Assign Later.* None- No server is assigned to the server profile.*Static- Server is directly assigned to server profile using assign server.*Pool- Server is assigned from a resource pool.
- serverPools List<Property Map>
- A reference to a resourcepoolPool resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- serverPre StringAssign By Serial 
- Serial number of the server that would be assigned to this pre-assigned Server Profile. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It cannot be more than 20 characters.
- serverPre List<Property Map>Assign By Slots 
- Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- serverProfile StringId 
- 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:
- staticUuid StringAddress 
- The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- 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:
- templateSync List<Property Map>Errors 
- This complex property has following sub-properties:
- templateSync StringStatus 
- (ReadOnly) The sync status of the current MO wrt the attached Template MO.* 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.
- 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.
- userLabel String
- User label assigned to the server profile.
- uuid String
- (ReadOnly) The UUID address that is assigned to the server based on the UUID pool.
- uuidAddress StringType 
- 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.
- uuidLeases List<Property Map>
- (ReadOnly) A reference to a uuidpoolUuidLease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- 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:
- waitFor BooleanCompletion 
- This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
Supporting Types
ServerProfileActionParam, ServerProfileActionParamArgs        
- AdditionalProperties string
- ClassId string
- Name string
- The action parameter identifier.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value.
- AdditionalProperties string
- ClassId string
- Name string
- The action parameter identifier.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value.
- additionalProperties String
- classId String
- name String
- The action parameter identifier.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value.
- additionalProperties string
- classId string
- name string
- The action parameter identifier.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The action parameter value.
- additional_properties str
- class_id str
- name str
- The action parameter identifier.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The action parameter value.
- additionalProperties String
- classId String
- name String
- The action parameter identifier.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value.
ServerProfileAncestor, ServerProfileAncestorArgs      
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileAssignedServer, ServerProfileAssignedServerArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileAssociatedServer, ServerProfileAssociatedServerArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileAssociatedServerPool, ServerProfileAssociatedServerPoolArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileConfigChange, ServerProfileConfigChangeArgs        
- AdditionalProperties string
- Changes List<string>
- (Array of schema.TypeString) -
- ClassId string
- Disruptions List<string>
- (Array of schema.TypeString) -
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PolicyDisruptions List<ServerProfile Config Change Policy Disruption> 
- This complex property has following sub-properties:
- AdditionalProperties string
- Changes []string
- (Array of schema.TypeString) -
- ClassId string
- Disruptions []string
- (Array of schema.TypeString) -
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PolicyDisruptions []ServerProfile Config Change Policy Disruption 
- This complex property has following sub-properties:
- additionalProperties String
- changes List<String>
- (Array of schema.TypeString) -
- classId String
- disruptions List<String>
- (Array of schema.TypeString) -
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policyDisruptions List<ServerProfile Config Change Policy Disruption> 
- This complex property has following sub-properties:
- additionalProperties string
- changes string[]
- (Array of schema.TypeString) -
- classId string
- disruptions string[]
- (Array of schema.TypeString) -
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policyDisruptions ServerProfile Config Change Policy Disruption[] 
- This complex property has following sub-properties:
- additional_properties str
- changes Sequence[str]
- (Array of schema.TypeString) -
- class_id str
- disruptions Sequence[str]
- (Array of schema.TypeString) -
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy_disruptions Sequence[ServerProfile Config Change Policy Disruption] 
- This complex property has following sub-properties:
- additionalProperties String
- changes List<String>
- (Array of schema.TypeString) -
- classId String
- disruptions List<String>
- (Array of schema.TypeString) -
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policyDisruptions List<Property Map>
- This complex property has following sub-properties:
ServerProfileConfigChangeContext, ServerProfileConfigChangeContextArgs          
- AdditionalProperties string
- ClassId string
- ConfigChange stringError 
- (ReadOnly) Indicates reason for failure state of configChangeState.
- ConfigChange stringState 
- (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok- Config change state represents Validation for change/drift is successful or is not applicable.*Validating-change- Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).*Validating-drift- Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).*Change-failed- Config change state represents there is internal error in calculating policy change.*Drift-failed- Config change state represents there is internal error in calculating endpoint configuraion drift.
- InitialConfig List<ServerContexts Profile Config Change Context Initial Config Context> 
- (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. This complex property has following sub-properties:
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- AdditionalProperties string
- ClassId string
- ConfigChange stringError 
- (ReadOnly) Indicates reason for failure state of configChangeState.
- ConfigChange stringState 
- (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok- Config change state represents Validation for change/drift is successful or is not applicable.*Validating-change- Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).*Validating-drift- Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).*Change-failed- Config change state represents there is internal error in calculating policy change.*Drift-failed- Config change state represents there is internal error in calculating endpoint configuraion drift.
- InitialConfig []ServerContexts Profile Config Change Context Initial Config Context 
- (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. This complex property has following sub-properties:
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additionalProperties String
- classId String
- configChange StringError 
- (ReadOnly) Indicates reason for failure state of configChangeState.
- configChange StringState 
- (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok- Config change state represents Validation for change/drift is successful or is not applicable.*Validating-change- Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).*Validating-drift- Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).*Change-failed- Config change state represents there is internal error in calculating policy change.*Drift-failed- Config change state represents there is internal error in calculating endpoint configuraion drift.
- initialConfig List<ServerContexts Profile Config Change Context Initial Config Context> 
- (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. This complex property has following sub-properties:
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additionalProperties string
- classId string
- configChange stringError 
- (ReadOnly) Indicates reason for failure state of configChangeState.
- configChange stringState 
- (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok- Config change state represents Validation for change/drift is successful or is not applicable.*Validating-change- Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).*Validating-drift- Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).*Change-failed- Config change state represents there is internal error in calculating policy change.*Drift-failed- Config change state represents there is internal error in calculating endpoint configuraion drift.
- initialConfig ServerContexts Profile Config Change Context Initial Config Context[] 
- (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. This complex property has following sub-properties:
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional_properties str
- class_id str
- config_change_ strerror 
- (ReadOnly) Indicates reason for failure state of configChangeState.
- config_change_ strstate 
- (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok- Config change state represents Validation for change/drift is successful or is not applicable.*Validating-change- Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).*Validating-drift- Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).*Change-failed- Config change state represents there is internal error in calculating policy change.*Drift-failed- Config change state represents there is internal error in calculating endpoint configuraion drift.
- initial_config_ Sequence[Servercontexts Profile Config Change Context Initial Config Context] 
- (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. This complex property has following sub-properties:
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additionalProperties String
- classId String
- configChange StringError 
- (ReadOnly) Indicates reason for failure state of configChangeState.
- configChange StringState 
- (ReadOnly) Indicates a profile's configuration change state. Used for tracking pending-changes and out-of-synch states.* Ok- Config change state represents Validation for change/drift is successful or is not applicable.*Validating-change- Config change state represents policy changes are being validated. This state starts when policy is changed and becomes different from deployed changes (Pending-changes).*Validating-drift- Config change state represents endpoint configuration changes are being validated. This state starts when endpoint is changed and endpoint configuration becomes different from policy configured changes (Out-of-sync).*Change-failed- Config change state represents there is internal error in calculating policy change.*Drift-failed- Config change state represents there is internal error in calculating endpoint configuraion drift.
- initialConfig List<Property Map>Contexts 
- (ReadOnly) Stores initial Configuration state. Used for reverting back to initial state of ConfigContext in case of validation failure. This complex property has following sub-properties:
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ServerProfileConfigChangeContextInitialConfigContext, ServerProfileConfigChangeContextInitialConfigContextArgs                
- AdditionalProperties string
- ClassId string
- ConfigState string
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- ConfigState stringSummary 
- (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 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 string
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- ErrorState 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 List<string>
- (Array of schema.TypeString) -
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- OperState 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 string
- ClassId string
- ConfigState string
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- ConfigState stringSummary 
- (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 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 string
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- ErrorState 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 []string
- (Array of schema.TypeString) -
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- OperState 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 String
- classId String
- configState String
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- configState StringSummary 
- (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 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 String
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- errorState 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 List<String>
- (Array of schema.TypeString) -
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operState 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 string
- classId string
- configState string
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- configState stringSummary 
- (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 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 string
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- errorState 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 string[]
- (Array of schema.TypeString) -
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operState 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 str
- class_id str
- config_state str
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config_state_ strsummary 
- (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 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 str
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error_state 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 Sequence[str]
- (Array of schema.TypeString) -
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper_state 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 String
- classId String
- configState String
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- configState StringSummary 
- (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 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 String
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- errorState 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 List<String>
- (Array of schema.TypeString) -
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operState 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.
ServerProfileConfigChangeDetail, ServerProfileConfigChangeDetailArgs          
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileConfigChangePolicyDisruption, ServerProfileConfigChangePolicyDisruptionArgs            
- AdditionalProperties string
- ClassId string
- Disruptions List<string>
- (Array of schema.TypeString) -
- IsOnly boolRequired By Other Policies 
- The current policy has to be redeployed only because there are other policy changes that require this.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PolicyName string
- Name of the policy that, when modified, causes the disruption.
- PolicyPending stringAction 
- Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- RequiredBy List<string>Policies 
- (Array of schema.TypeString) -
- AdditionalProperties string
- ClassId string
- Disruptions []string
- (Array of schema.TypeString) -
- IsOnly boolRequired By Other Policies 
- The current policy has to be redeployed only because there are other policy changes that require this.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- PolicyName string
- Name of the policy that, when modified, causes the disruption.
- PolicyPending stringAction 
- Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- RequiredBy []stringPolicies 
- (Array of schema.TypeString) -
- additionalProperties String
- classId String
- disruptions List<String>
- (Array of schema.TypeString) -
- isOnly BooleanRequired By Other Policies 
- The current policy has to be redeployed only because there are other policy changes that require this.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policyName String
- Name of the policy that, when modified, causes the disruption.
- policyPending StringAction 
- Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- requiredBy List<String>Policies 
- (Array of schema.TypeString) -
- additionalProperties string
- classId string
- disruptions string[]
- (Array of schema.TypeString) -
- isOnly booleanRequired By Other Policies 
- The current policy has to be redeployed only because there are other policy changes that require this.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policyName string
- Name of the policy that, when modified, causes the disruption.
- policyPending stringAction 
- Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- requiredBy string[]Policies 
- (Array of schema.TypeString) -
- additional_properties str
- class_id str
- disruptions Sequence[str]
- (Array of schema.TypeString) -
- is_only_ boolrequired_ by_ other_ policies 
- The current policy has to be redeployed only because there are other policy changes that require this.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy_name str
- Name of the policy that, when modified, causes the disruption.
- policy_pending_ straction 
- Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- required_by_ Sequence[str]policies 
- (Array of schema.TypeString) -
- additionalProperties String
- classId String
- disruptions List<String>
- (Array of schema.TypeString) -
- isOnly BooleanRequired By Other Policies 
- The current policy has to be redeployed only because there are other policy changes that require this.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policyName String
- Name of the policy that, when modified, causes the disruption.
- policyPending StringAction 
- Name of the action which is pending on this policy. Example, if policy is not yet activated we mark this field as not-activated. Currently we support two actions, not-deployed and not-activated.
- requiredBy List<String>Policies 
- (Array of schema.TypeString) -
ServerProfileConfigContext, ServerProfileConfigContextArgs        
- AdditionalProperties string
- ClassId string
- ConfigState string
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- ConfigState stringSummary 
- (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 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 string
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- ErrorState 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 List<string>
- (Array of schema.TypeString) -
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- OperState 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 string
- ClassId string
- ConfigState string
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- ConfigState stringSummary 
- (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 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 string
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- ErrorState 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 []string
- (Array of schema.TypeString) -
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- OperState 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 String
- classId String
- configState String
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- configState StringSummary 
- (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 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 String
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- errorState 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 List<String>
- (Array of schema.TypeString) -
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operState 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 string
- classId string
- configState string
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- configState stringSummary 
- (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 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 string
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- errorState 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 string[]
- (Array of schema.TypeString) -
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operState 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 str
- class_id str
- config_state str
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config_state_ strsummary 
- (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 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 str
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error_state 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 Sequence[str]
- (Array of schema.TypeString) -
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper_state 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 String
- classId String
- configState String
- (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- configState StringSummary 
- (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 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 String
- System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- errorState 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 List<String>
- (Array of schema.TypeString) -
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operState 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.
ServerProfileConfigResult, ServerProfileConfigResultArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileInternalReservationReference, ServerProfileInternalReservationReferenceArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- ReservationMoid string
- The moid of the reservation object.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- ReservationMoid string
- The moid of the reservation object.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservationMoid String
- The moid of the reservation object.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- classId string
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservationMoid string
- The moid of the reservation object.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- class_id str
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservation_moid str
- The moid of the reservation object.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservationMoid String
- The moid of the reservation object.
ServerProfileLeasedServer, ServerProfileLeasedServerArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileOrganization, ServerProfileOrganizationArgs      
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileParent, ServerProfileParentArgs      
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfilePermissionResource, ServerProfilePermissionResourceArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfilePolicyBucket, ServerProfilePolicyBucketArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileReservationReference, ServerProfileReservationReferenceArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- ReservationMoid string
- The moid of the reservation object.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- ReservationMoid string
- The moid of the reservation object.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservationMoid String
- The moid of the reservation object.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- classId string
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservationMoid string
- The moid of the reservation object.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- class_id str
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservation_moid str
- The moid of the reservation object.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: fcpool.ReservationReference ippool.ReservationReference iqnpool.ReservationReference macpool.ReservationReference uuidpool.ReservationReference
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- reservationMoid String
- The moid of the reservation object.
ServerProfileResourceLease, ServerProfileResourceLeaseArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileRunningWorkflow, ServerProfileRunningWorkflowArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileScheduledAction, ServerProfileScheduledActionArgs        
- Action string
- Name of the action to be performed on the profile.
- ActionQualifiers List<ServerProfile Scheduled Action Action Qualifier> 
- Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- AdditionalProperties string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ProceedOn boolReboot 
- ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- Action string
- Name of the action to be performed on the profile.
- ActionQualifiers []ServerProfile Scheduled Action Action Qualifier 
- Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- AdditionalProperties string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ProceedOn boolReboot 
- ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action String
- Name of the action to be performed on the profile.
- actionQualifiers List<ServerProfile Scheduled Action Action Qualifier> 
- Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additionalProperties String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceedOn BooleanReboot 
- ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action string
- Name of the action to be performed on the profile.
- actionQualifiers ServerProfile Scheduled Action Action Qualifier[] 
- Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additionalProperties string
- classId string
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceedOn booleanReboot 
- ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action str
- Name of the action to be performed on the profile.
- action_qualifiers Sequence[ServerProfile Scheduled Action Action Qualifier] 
- Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additional_properties str
- class_id str
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed_on_ boolreboot 
- ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
- action String
- Name of the action to be performed on the profile.
- actionQualifiers List<Property Map>
- Qualifiers to control the action being triggered. Action qualifiers are to be specified based on the type of disruptions that an action is to be restricted to. For example, trigger the 'Deploy' action to only perform network and management plane configurations. This complex property has following sub-properties:
- additionalProperties String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceedOn BooleanReboot 
- ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
ServerProfileScheduledActionActionQualifier, ServerProfileScheduledActionActionQualifierArgs            
- AdditionalProperties string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- AdditionalProperties string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties string
- classId string
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional_properties str
- class_id str
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
ServerProfileServerPool, ServerProfileServerPoolArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileServerPreAssignBySlot, ServerProfileServerPreAssignBySlotArgs              
- AdditionalProperties string
- ChassisId double
- Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- ClassId string
- DomainName string
- Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It can have underscores and hyphens.It cannot be more than 30 characters.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- SlotId double
- Slot-id of the server that would be assigned to this pre-assigned server profile.
- AdditionalProperties string
- ChassisId float64
- Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- ClassId string
- DomainName string
- Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It can have underscores and hyphens.It cannot be more than 30 characters.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- SlotId float64
- Slot-id of the server that would be assigned to this pre-assigned server profile.
- additionalProperties String
- chassisId Double
- Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- classId String
- domainName String
- Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It can have underscores and hyphens.It cannot be more than 30 characters.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- slotId Double
- Slot-id of the server that would be assigned to this pre-assigned server profile.
- additionalProperties string
- chassisId number
- Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- classId string
- domainName string
- Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It can have underscores and hyphens.It cannot be more than 30 characters.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- slotId number
- Slot-id of the server that would be assigned to this pre-assigned server profile.
- additional_properties str
- chassis_id float
- Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- class_id str
- domain_name str
- Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It can have underscores and hyphens.It cannot be more than 30 characters.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- slot_id float
- Slot-id of the server that would be assigned to this pre-assigned server profile.
- additionalProperties String
- chassisId Number
- Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- classId String
- domainName String
- Domain name of the Fabric Interconnect to which the chassis is or to be connected. It can be any string that adheres to the following constraints:It should start and end with an alphanumeric character.It can have underscores and hyphens.It cannot be more than 30 characters.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- slotId Number
- Slot-id of the server that would be assigned to this pre-assigned server profile.
ServerProfileSrcTemplate, ServerProfileSrcTemplateArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileTag, ServerProfileTagArgs      
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- AdditionalProperties string
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additionalProperties string
- key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_properties str
- key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additionalProperties String
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
ServerProfileTemplateAction, ServerProfileTemplateActionArgs        
- AdditionalProperties string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
List<ServerProfile Template Action Param> 
- This complex property has following sub-properties:
- Type 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 string
- ClassId string
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
[]ServerProfile Template Action Param 
- This complex property has following sub-properties:
- Type 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 String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
List<ServerProfile Template Action Param> 
- This complex property has following sub-properties:
- type 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 string
- classId string
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
ServerProfile Template Action Param[] 
- This complex property has following sub-properties:
- type 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 str
- class_id str
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
Sequence[ServerProfile Template Action Param] 
- This complex property has following sub-properties:
- type 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 String
- classId String
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params List<Property Map>
- This complex property has following sub-properties:
- type 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.
ServerProfileTemplateActionParam, ServerProfileTemplateActionParamArgs          
- AdditionalProperties string
- ClassId string
- Name string
- The action parameter identifier.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value.
- AdditionalProperties string
- ClassId string
- Name string
- The action parameter identifier.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The action parameter value.
- additionalProperties String
- classId String
- name String
- The action parameter identifier.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value.
- additionalProperties string
- classId string
- name string
- The action parameter identifier.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The action parameter value.
- additional_properties str
- class_id str
- name str
- The action parameter identifier.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The action parameter value.
- additionalProperties String
- classId String
- name String
- The action parameter identifier.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The action parameter value.
ServerProfileTemplateSyncError, ServerProfileTemplateSyncErrorArgs          
- AdditionalProperties string
- ClassId string
- Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Type string
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- AdditionalProperties string
- ClassId string
- Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Type string
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additionalProperties String
- classId String
- message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type String
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additionalProperties string
- classId string
- message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type string
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additional_properties str
- class_id str
- message str
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type str
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
- additionalProperties String
- classId String
- message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- type String
- (ReadOnly) The error type that indicates the point of failure.* Transient- Any error which is a runtime error due to some other action in progress on the derived object that is blocking the sync action. This error type is retriable.For example, when vNIC Template is updated, but the derived vNIC or vNICs are part of a LAN Connectivity policy associated with a profile being deployed to endpoint. In this scenario, the derived vNIC update displays this error.*Validation- When the template sync on the derived object fails due to an incorrect configuration, it displays a validation error. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails due to the policy attach errors.*User- Any configuration error due to incorrect or invalid input and that requires user intervention for correction, is displayed under this category. This error type is considered fatal and not retried.For example, when a new policy is attached to a server profile template, the sync to a derived server profile fails. This happens when the policyis not applicable to the server assigned to the server profile, such as the Power policy that is not applicable for UCS Rack servers.*Internal- Any application internal errors are displayed under this category. This error type is considered fatal and not retried.
ServerProfileUuidLease, ServerProfileUuidLeaseArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileUuidPool, ServerProfileUuidPoolArgs        
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileVersionContext, ServerProfileVersionContextArgs        
- AdditionalProperties string
- ClassId string
- InterestedMos List<ServerProfile Version Context Interested Mo> 
- This complex property has following sub-properties:
- MarkedFor boolDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos List<ServerProfile Version Context Ref Mo> 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- VersionType string
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- AdditionalProperties string
- ClassId string
- InterestedMos []ServerProfile Version Context Interested Mo 
- This complex property has following sub-properties:
- MarkedFor boolDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- NrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- ObjectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- RefMos []ServerProfile Version Context Ref Mo 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- VersionType string
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additionalProperties String
- classId String
- interestedMos List<ServerProfile Version Context Interested Mo> 
- This complex property has following sub-properties:
- markedFor BooleanDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos List<ServerProfile Version Context Ref Mo> 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- versionType String
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additionalProperties string
- classId string
- interestedMos ServerProfile Version Context Interested Mo[] 
- This complex property has following sub-properties:
- markedFor booleanDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nrVersion string
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType string
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos ServerProfile Version Context Ref Mo[] 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- versionType string
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additional_properties str
- class_id str
- interested_mos Sequence[ServerProfile Version Context Interested Mo] 
- This complex property has following sub-properties:
- marked_for_ booldeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_version str
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_mos Sequence[ServerProfile Version Context Ref Mo] 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_type str
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additionalProperties String
- classId String
- interestedMos List<Property Map>
- This complex property has following sub-properties:
- markedFor BooleanDeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nrVersion String
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- objectType String
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- refMos List<Property Map>
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- versionType String
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
ServerProfileVersionContextInterestedMo, ServerProfileVersionContextInterestedMoArgs            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileVersionContextRefMo, ServerProfileVersionContextRefMoArgs            
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- AdditionalProperties string
- ClassId string
- Moid string
- The Moid of the referenced REST resource.
- ObjectType string
- The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties string
- classId string
- moid string
- The Moid of the referenced REST resource.
- objectType string
- The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_properties str
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- classId String
- moid String
- The Moid of the referenced REST resource.
- objectType String
- The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_server_profile can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/serverProfile:ServerProfile example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the intersightTerraform Provider.