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)
.classId("string")
.domainName("string")
.objectType("string")
.slotId(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:
- Account
Moid 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.
- Action
Params List<ServerProfile Action Param> - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Server
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Servers 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:
- Associated
Server 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:
- Associated
Servers 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:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Config
Change 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:
- Config
Change List<ServerDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes 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:
- Config
Contexts List<ServerProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results 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:
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Deploy
Status 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. - Deployed
Policies List<string> - (Array of schema.TypeString) -
- Deployed
Switches 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.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Internal
Reservation List<ServerReferences Profile Internal Reservation Reference> - 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 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:
- Management
Mode string - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Server
Profile 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:
- Overridden
Lists List<string> - (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Server
Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<ServerProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pmc
Deployed 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.
- Policy
Buckets List<ServerProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies List<string> - (Array of schema.TypeString) -
- Reservation
References List<ServerProfile Reservation Reference> - This complex property has following sub-properties:
- Resource
Leases 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:
- Running
Workflows List<ServerProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions List<ServerProfile Scheduled Action> - This complex property has following sub-properties:
- Server
Assignment 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. - Server
Pools 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:
- Server
Pre 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.
- Server
Pre 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:
- Server
Profile 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.
- Src
Templates 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:
- Static
Uuid stringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- List<Server
Profile Tag> - This complex property has following sub-properties:
- Target
Platform 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. - Template
Actions List<ServerProfile Template Action> - This complex property has following sub-properties:
- Template
Sync List<ServerErrors Profile Template Sync Error> - This complex property has following sub-properties:
- Template
Sync 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. - User
Label 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.
- Uuid
Address 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. - Uuid
Leases 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:
- Uuid
Pools 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:
- Version
Contexts List<ServerProfile Version Context> - (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.
- Account
Moid 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.
- Action
Params []ServerProfile Action Param Args - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Server
Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Servers []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 []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 []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 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.
- Config
Change []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 []ServerDetails Profile Config Change Detail Args - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes []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 []ServerProfile Config Context Args - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results []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 string - (ReadOnly) The time when this managed object was created.
- Deploy
Status 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. - Deployed
Policies []string - (Array of schema.TypeString) -
- Deployed
Switches 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.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Internal
Reservation []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 []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 string - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Server
Profile 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 []string - (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Server
Profile 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 []ServerProfile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pmc
Deployed 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.
- Policy
Buckets []ServerProfile Policy Bucket Args - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies []string - (Array of schema.TypeString) -
- Reservation
References []ServerProfile Reservation Reference Args - This complex property has following sub-properties:
- Resource
Leases []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 []ServerProfile Running Workflow Args - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions []ServerProfile Scheduled Action Args - This complex property has following sub-properties:
- Server
Assignment 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. - Server
Pools []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 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.
- Server
Pre []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 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.
- Src
Templates []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 stringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- []Server
Profile Tag Args - This complex property has following sub-properties:
- Target
Platform 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. - Template
Actions []ServerProfile Template Action Args - This complex property has following sub-properties:
- Template
Sync []ServerErrors Profile Template Sync Error Args - This complex property has following sub-properties:
- Template
Sync 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. - User
Label 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.
- Uuid
Address 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. - Uuid
Leases []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 []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 []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.
- account
Moid 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.
- action
Params List<ServerProfile Action Param> - This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Server
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Servers 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:
- associated
Server 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:
- associated
Servers 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:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config
Change 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:
- config
Change List<ServerDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts List<ServerProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time String - (ReadOnly) The time when this managed object was created.
- deploy
Status 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. - deployed
Policies List<String> - (Array of schema.TypeString) -
- deployed
Switches 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.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- internal
Reservation List<ServerReferences Profile Internal Reservation Reference> - This complex property has following sub-properties:
- is
Pmc BooleanDeployed Secure Passphrase Set - (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased
Servers 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:
- management
Mode String - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Server
Profile 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:
- overridden
Lists List<String> - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Server
Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<ServerProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc
Deployed 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.
- policy
Buckets List<ServerProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- reservation
References List<ServerProfile Reservation Reference> - This complex property has following sub-properties:
- resource
Leases 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:
- running
Workflows List<ServerProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<ServerProfile Scheduled Action> - This complex property has following sub-properties:
- server
Assignment 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. - server
Pools 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:
- server
Pre 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.
- server
Pre 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:
- server
Profile 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.
- src
Templates 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:
- static
Uuid StringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- List<Server
Profile Tag> - This complex property has following sub-properties:
- target
Platform 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. - template
Actions List<ServerProfile Template Action> - This complex property has following sub-properties:
- template
Sync List<ServerErrors Profile Template Sync Error> - This complex property has following sub-properties:
- template
Sync 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. - user
Label 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.
- uuid
Address 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. - uuid
Leases 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:
- uuid
Pools 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:
- version
Contexts List<ServerProfile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For BooleanCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params ServerProfile Action Param[] - This complex property has following sub-properties:
- additional
Properties string - ancestors
Server
Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Servers 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:
- associated
Server 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:
- associated
Servers 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:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config
Change ServerContexts Profile Config Change Context[] - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change ServerDetails Profile Config Change Detail[] - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts ServerProfile Config Context[] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time string - (ReadOnly) The time when this managed object was created.
- deploy
Status 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. - deployed
Policies string[] - (Array of schema.TypeString) -
- deployed
Switches 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.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- internal
Reservation ServerReferences Profile Internal Reservation Reference[] - This complex property has following sub-properties:
- is
Pmc booleanDeployed Secure Passphrase Set - (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased
Servers 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:
- management
Mode string - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the profile instance or profile template.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Server
Profile 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:
- overridden
Lists string[] - (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Server
Profile Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources ServerProfile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc
Deployed 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.
- policy
Buckets ServerProfile Policy Bucket[] - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies string[] - (Array of schema.TypeString) -
- reservation
References ServerProfile Reservation Reference[] - This complex property has following sub-properties:
- resource
Leases 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:
- running
Workflows ServerProfile Running Workflow[] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions ServerProfile Scheduled Action[] - This complex property has following sub-properties:
- server
Assignment 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. - server
Pools 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:
- server
Pre 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.
- server
Pre 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:
- server
Profile 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.
- src
Templates 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:
- static
Uuid stringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- Server
Profile Tag[] - This complex property has following sub-properties:
- target
Platform 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. - template
Actions ServerProfile Template Action[] - This complex property has following sub-properties:
- template
Sync ServerErrors Profile Template Sync Error[] - This complex property has following sub-properties:
- template
Sync 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. - user
Label 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.
- uuid
Address 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. - uuid
Leases 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:
- uuid
Pools 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:
- version
Contexts ServerProfile Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For 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[Server
Profile 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[Server
Profile 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[Server
Profile 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[Server
Profile 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.
- account
Moid 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.
- action
Params List<Property Map> - This complex property has following sub-properties:
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Servers 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:
- associated
Server 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:
- associated
Servers 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:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config
Change List<Property Map>Contexts - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change List<Property Map>Details - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts List<Property Map> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time String - (ReadOnly) The time when this managed object was created.
- deploy
Status 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. - deployed
Policies List<String> - (Array of schema.TypeString) -
- deployed
Switches 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.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- internal
Reservation List<Property Map>References - This complex property has following sub-properties:
- is
Pmc BooleanDeployed Secure Passphrase Set - (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased
Servers 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:
- management
Mode String - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overridden
Lists 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc
Deployed 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.
- policy
Buckets List<Property Map> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- reservation
References List<Property Map> - This complex property has following sub-properties:
- resource
Leases 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:
- running
Workflows List<Property Map> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<Property Map> - This complex property has following sub-properties:
- server
Assignment 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. - server
Pools 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:
- server
Pre 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.
- server
Pre List<Property Map>Assign By Slots - Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- server
Profile 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.
- src
Templates 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:
- static
Uuid 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:
- target
Platform 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. - template
Actions List<Property Map> - This complex property has following sub-properties:
- template
Sync List<Property Map>Errors - This complex property has following sub-properties:
- template
Sync 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. - user
Label 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.
- uuid
Address 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. - uuid
Leases 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:
- uuid
Pools 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:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For 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) -> ServerProfile
func 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.
- Account
Moid 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.
- Action
Params List<ServerProfile Action Param> - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Server
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Servers 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:
- Associated
Server 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:
- Associated
Servers 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:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Config
Change 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:
- Config
Change List<ServerDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes 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:
- Config
Contexts List<ServerProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results 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:
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Deploy
Status 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. - Deployed
Policies List<string> - (Array of schema.TypeString) -
- Deployed
Switches 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.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Internal
Reservation List<ServerReferences Profile Internal Reservation Reference> - 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 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:
- Management
Mode string - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Server
Profile 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:
- Overridden
Lists List<string> - (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Server
Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<ServerProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pmc
Deployed 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.
- Policy
Buckets List<ServerProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies List<string> - (Array of schema.TypeString) -
- Reservation
References List<ServerProfile Reservation Reference> - This complex property has following sub-properties:
- Resource
Leases 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:
- Running
Workflows List<ServerProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions List<ServerProfile Scheduled Action> - This complex property has following sub-properties:
- Server
Assignment 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. - Server
Pools 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:
- Server
Pre 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.
- Server
Pre 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:
- Server
Profile 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.
- Src
Templates 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:
- Static
Uuid stringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- List<Server
Profile Tag> - This complex property has following sub-properties:
- Target
Platform 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. - Template
Actions List<ServerProfile Template Action> - This complex property has following sub-properties:
- Template
Sync List<ServerErrors Profile Template Sync Error> - This complex property has following sub-properties:
- Template
Sync 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. - User
Label 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.
- Uuid
Address 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. - Uuid
Leases 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:
- Uuid
Pools 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:
- Version
Contexts List<ServerProfile Version Context> - (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.
- Account
Moid 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.
- Action
Params []ServerProfile Action Param Args - This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Server
Profile Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Assigned
Servers []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 []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 []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 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.
- Config
Change []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 []ServerDetails Profile Config Change Detail Args - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- Config
Changes []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 []ServerProfile Config Context Args - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- Config
Results []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 string - (ReadOnly) The time when this managed object was created.
- Deploy
Status 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. - Deployed
Policies []string - (Array of schema.TypeString) -
- Deployed
Switches 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.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Internal
Reservation []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 []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 string - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the profile instance or profile template.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Server
Profile 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 []string - (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Server
Profile 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 []ServerProfile Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Pmc
Deployed 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.
- Policy
Buckets []ServerProfile Policy Bucket Args - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- Removed
Policies []string - (Array of schema.TypeString) -
- Reservation
References []ServerProfile Reservation Reference Args - This complex property has following sub-properties:
- Resource
Leases []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 []ServerProfile Running Workflow Args - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- Scheduled
Actions []ServerProfile Scheduled Action Args - This complex property has following sub-properties:
- Server
Assignment 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. - Server
Pools []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 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.
- Server
Pre []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 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.
- Src
Templates []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 stringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- []Server
Profile Tag Args - This complex property has following sub-properties:
- Target
Platform 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. - Template
Actions []ServerProfile Template Action Args - This complex property has following sub-properties:
- Template
Sync []ServerErrors Profile Template Sync Error Args - This complex property has following sub-properties:
- Template
Sync 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. - User
Label 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.
- Uuid
Address 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. - Uuid
Leases []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 []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 []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.
- account
Moid 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.
- action
Params List<ServerProfile Action Param> - This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Server
Profile Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Servers 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:
- associated
Server 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:
- associated
Servers 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:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config
Change 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:
- config
Change List<ServerDetails Profile Config Change Detail> - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts List<ServerProfile Config Context> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time String - (ReadOnly) The time when this managed object was created.
- deploy
Status 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. - deployed
Policies List<String> - (Array of schema.TypeString) -
- deployed
Switches 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.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- internal
Reservation List<ServerReferences Profile Internal Reservation Reference> - This complex property has following sub-properties:
- is
Pmc BooleanDeployed Secure Passphrase Set - (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased
Servers 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:
- management
Mode String - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Server
Profile 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:
- overridden
Lists List<String> - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Server
Profile Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<ServerProfile Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc
Deployed 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.
- policy
Buckets List<ServerProfile Policy Bucket> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- reservation
References List<ServerProfile Reservation Reference> - This complex property has following sub-properties:
- resource
Leases 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:
- running
Workflows List<ServerProfile Running Workflow> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<ServerProfile Scheduled Action> - This complex property has following sub-properties:
- server
Assignment 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. - server
Pools 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:
- server
Pre 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.
- server
Pre 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:
- server
Profile 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.
- src
Templates 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:
- static
Uuid StringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- List<Server
Profile Tag> - This complex property has following sub-properties:
- target
Platform 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. - template
Actions List<ServerProfile Template Action> - This complex property has following sub-properties:
- template
Sync List<ServerErrors Profile Template Sync Error> - This complex property has following sub-properties:
- template
Sync 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. - user
Label 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.
- uuid
Address 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. - uuid
Leases 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:
- uuid
Pools 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:
- version
Contexts List<ServerProfile Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For BooleanCompletion - This model object can trigger workflows. Use this option to wait for all running workflows to reach a complete state.
- account
Moid 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.
- action
Params ServerProfile Action Param[] - This complex property has following sub-properties:
- additional
Properties string - ancestors
Server
Profile Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Servers 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:
- associated
Server 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:
- associated
Servers 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:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config
Change ServerContexts Profile Config Change Context[] - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change ServerDetails Profile Config Change Detail[] - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts ServerProfile Config Context[] - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time string - (ReadOnly) The time when this managed object was created.
- deploy
Status 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. - deployed
Policies string[] - (Array of schema.TypeString) -
- deployed
Switches 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.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- internal
Reservation ServerReferences Profile Internal Reservation Reference[] - This complex property has following sub-properties:
- is
Pmc booleanDeployed Secure Passphrase Set - (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased
Servers 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:
- management
Mode string - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the profile instance or profile template.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Server
Profile 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:
- overridden
Lists string[] - (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Server
Profile Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources ServerProfile Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc
Deployed 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.
- policy
Buckets ServerProfile Policy Bucket[] - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies string[] - (Array of schema.TypeString) -
- reservation
References ServerProfile Reservation Reference[] - This complex property has following sub-properties:
- resource
Leases 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:
- running
Workflows ServerProfile Running Workflow[] - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions ServerProfile Scheduled Action[] - This complex property has following sub-properties:
- server
Assignment 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. - server
Pools 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:
- server
Pre 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.
- server
Pre 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:
- server
Profile 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.
- src
Templates 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:
- static
Uuid stringAddress - The UUID address for the server must include UUID prefix xxxxxxxx-xxxx-xxxx along with the UUID suffix of format xxxx-xxxxxxxxxxxx.
- Server
Profile Tag[] - This complex property has following sub-properties:
- target
Platform 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. - template
Actions ServerProfile Template Action[] - This complex property has following sub-properties:
- template
Sync ServerErrors Profile Template Sync Error[] - This complex property has following sub-properties:
- template
Sync 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. - user
Label 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.
- uuid
Address 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. - uuid
Leases 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:
- uuid
Pools 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:
- version
Contexts ServerProfile Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For 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[Server
Profile 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[Server
Profile 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[Server
Profile 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[Server
Profile 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.
- account
Moid 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.
- action
Params List<Property Map> - This complex property has following sub-properties:
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- assigned
Servers 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:
- associated
Server 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:
- associated
Servers 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:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- config
Change List<Property Map>Contexts - (ReadOnly) The configuration change state and results of the last change operation. This complex property has following sub-properties:
- config
Change List<Property Map>Details - (ReadOnly) An array of relationships to serverConfigChangeDetail resources. This complex property has following sub-properties:
- config
Changes 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:
- config
Contexts List<Property Map> - The configuration state and results of the last configuration operation. This complex property has following sub-properties:
- config
Results 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:
- create
Time String - (ReadOnly) The time when this managed object was created.
- deploy
Status 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. - deployed
Policies List<String> - (Array of schema.TypeString) -
- deployed
Switches 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.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- internal
Reservation List<Property Map>References - This complex property has following sub-properties:
- is
Pmc BooleanDeployed Secure Passphrase Set - (ReadOnly) Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.
- leased
Servers 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:
- management
Mode String - (ReadOnly) The management mode of the server.*
IntersightStandalone
- Intersight Standalone mode of operation.*Intersight
- Intersight managed mode of operation. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the profile instance or profile template.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- overridden
Lists 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- pmc
Deployed 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.
- policy
Buckets List<Property Map> - An array of relationships to policyAbstractPolicy resources. This complex property has following sub-properties:
- removed
Policies List<String> - (Array of schema.TypeString) -
- reservation
References List<Property Map> - This complex property has following sub-properties:
- resource
Leases 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:
- running
Workflows List<Property Map> - (ReadOnly) An array of relationships to workflowWorkflowInfo resources. This complex property has following sub-properties:
- scheduled
Actions List<Property Map> - This complex property has following sub-properties:
- server
Assignment 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. - server
Pools 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:
- server
Pre 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.
- server
Pre List<Property Map>Assign By Slots - Server profile is pre-assigned to a server using slot. This complex property has following sub-properties:
- server
Profile 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.
- src
Templates 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:
- static
Uuid 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:
- target
Platform 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. - template
Actions List<Property Map> - This complex property has following sub-properties:
- template
Sync List<Property Map>Errors - This complex property has following sub-properties:
- template
Sync 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. - user
Label 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.
- uuid
Address 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. - uuid
Leases 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:
- uuid
Pools 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:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- wait
For 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
- Additional
Properties string - Class
Id string - Name string
- The action parameter identifier.
- Object
Type 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 string - Class
Id string - Name string
- The action parameter identifier.
- Object
Type 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 String - class
Id String - name String
- The action parameter identifier.
- object
Type 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 string - class
Id string - name string
- The action parameter identifier.
- object
Type 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.
- additional
Properties String - class
Id String - name String
- The action parameter identifier.
- object
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileAssignedServer, ServerProfileAssignedServerArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileAssociatedServer, ServerProfileAssociatedServerArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileAssociatedServerPool, ServerProfileAssociatedServerPoolArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileConfigChange, ServerProfileConfigChangeArgs
- Additional
Properties string - Changes List<string>
- (Array of schema.TypeString) -
- Class
Id string - Disruptions List<string>
- (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Disruptions List<ServerProfile Config Change Policy Disruption> - This complex property has following sub-properties:
- Additional
Properties string - Changes []string
- (Array of schema.TypeString) -
- Class
Id string - Disruptions []string
- (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Disruptions []ServerProfile Config Change Policy Disruption - This complex property has following sub-properties:
- additional
Properties String - changes List<String>
- (Array of schema.TypeString) -
- class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Disruptions List<ServerProfile Config Change Policy Disruption> - This complex property has following sub-properties:
- additional
Properties string - changes string[]
- (Array of schema.TypeString) -
- class
Id string - disruptions string[]
- (Array of schema.TypeString) -
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Disruptions 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:
- additional
Properties String - changes List<String>
- (Array of schema.TypeString) -
- class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Disruptions List<Property Map> - This complex property has following sub-properties:
ServerProfileConfigChangeContext, ServerProfileConfigChangeContextArgs
- Additional
Properties string - Class
Id string - Config
Change stringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- Config
Change 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. - Initial
Config 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:
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Additional
Properties string - Class
Id string - Config
Change stringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- Config
Change 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. - Initial
Config []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 string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties String - class
Id String - config
Change StringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- config
Change 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. - initial
Config 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:
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties string - class
Id string - config
Change stringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- config
Change 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. - initial
Config 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 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.
- additional
Properties String - class
Id String - config
Change StringError - (ReadOnly) Indicates reason for failure state of configChangeState.
- config
Change 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. - initial
Config 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:
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ServerProfileConfigChangeContextInitialConfigContext, ServerProfileConfigChangeContextInitialConfigContextArgs
- Additional
Properties string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State 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. - Config
Type 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 List<string> - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State 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. - Config
Type 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 []string - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State 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. - config
Type 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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 string - class
Id string - config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State 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. - config
Type 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.
- control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State string - 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 string[] - (Array of schema.TypeString) -
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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.
- additional
Properties String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State 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. - config
Type 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileConfigChangePolicyDisruption, ServerProfileConfigChangePolicyDisruptionArgs
- Additional
Properties string - Class
Id string - Disruptions List<string>
- (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 string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Name string - Name of the policy that, when modified, causes the disruption.
- Policy
Pending 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.
- Required
By List<string>Policies - (Array of schema.TypeString) -
- Additional
Properties string - Class
Id string - Disruptions []string
- (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 string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Policy
Name string - Name of the policy that, when modified, causes the disruption.
- Policy
Pending 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.
- Required
By []stringPolicies - (Array of schema.TypeString) -
- additional
Properties String - class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- is
Only BooleanRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Name String - Name of the policy that, when modified, causes the disruption.
- policy
Pending 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.
- required
By List<String>Policies - (Array of schema.TypeString) -
- additional
Properties string - class
Id string - disruptions string[]
- (Array of schema.TypeString) -
- is
Only booleanRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Name string - Name of the policy that, when modified, causes the disruption.
- policy
Pending 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.
- required
By 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) -
- additional
Properties String - class
Id String - disruptions List<String>
- (Array of schema.TypeString) -
- is
Only BooleanRequired By Other Policies - The current policy has to be redeployed only because there are other policy changes that require this.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- policy
Name String - Name of the policy that, when modified, causes the disruption.
- policy
Pending 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.
- required
By List<String>Policies - (Array of schema.TypeString) -
ServerProfileConfigContext, ServerProfileConfigContextArgs
- Additional
Properties string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State 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. - Config
Type 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 List<string> - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 string - Class
Id string - Config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- Config
State 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. - Config
Type 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.
- Control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- Error
State string - 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 []string - (Array of schema.TypeString) -
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Oper
State 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 String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State 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. - config
Type 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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 string - class
Id string - config
State string - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State 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. - config
Type 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.
- control
Action string - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State string - 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 string[] - (Array of schema.TypeString) -
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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.
- additional
Properties String - class
Id String - config
State String - (ReadOnly) Indicates a profile's configuration deploying state. Values -- Assigned, Not-assigned, Associated, Pending-changes, Out-of-sync, Validating, Configuring, Failed.
- config
State 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. - config
Type 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.
- control
Action String - System action to trigger the appropriate workflow. Values -- No_op, ConfigChange, Deploy, Unbind.
- error
State String - 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 List<String> - (Array of schema.TypeString) -
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- oper
State 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileInternalReservationReference, ServerProfileInternalReservationReferenceArgs
- Additional
Properties 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 - Class
Id string - Object
Type 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.
- Reservation
Moid string - The moid of the reservation object.
- Additional
Properties 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 - Class
Id string - Object
Type 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.
- Reservation
Moid string - The moid of the reservation object.
- additional
Properties 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 - class
Id String - object
Type 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.
- reservation
Moid String - The moid of the reservation object.
- additional
Properties 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 - class
Id string - object
Type 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.
- reservation
Moid 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.
- additional
Properties 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 - class
Id String - object
Type 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.
- reservation
Moid String - The moid of the reservation object.
ServerProfileLeasedServer, ServerProfileLeasedServerArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileOrganization, ServerProfileOrganizationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileParent, ServerProfileParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfilePermissionResource, ServerProfilePermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfilePolicyBucket, ServerProfilePolicyBucketArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileReservationReference, ServerProfileReservationReferenceArgs
- Additional
Properties 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 - Class
Id string - Object
Type 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.
- Reservation
Moid string - The moid of the reservation object.
- Additional
Properties 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 - Class
Id string - Object
Type 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.
- Reservation
Moid string - The moid of the reservation object.
- additional
Properties 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 - class
Id String - object
Type 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.
- reservation
Moid String - The moid of the reservation object.
- additional
Properties 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 - class
Id string - object
Type 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.
- reservation
Moid 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.
- additional
Properties 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 - class
Id String - object
Type 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.
- reservation
Moid String - The moid of the reservation object.
ServerProfileResourceLease, ServerProfileResourceLeaseArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileRunningWorkflow, ServerProfileRunningWorkflowArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileScheduledAction, ServerProfileScheduledActionArgs
- Action string
- Name of the action to be performed on the profile.
- Action
Qualifiers 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:
- Additional
Properties string - Class
Id string - Object
Type string - 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.
- Action
Qualifiers []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 string - Class
Id string - Object
Type string - 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.
- action
Qualifiers 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:
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed
On 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.
- action
Qualifiers 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 string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed
On 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.
- action
Qualifiers 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:
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- proceed
On BooleanReboot - ProceedOnReboot can be used to acknowledge server reboot while triggering deploy/activate.
ServerProfileScheduledActionActionQualifier, ServerProfileScheduledActionActionQualifierArgs
- Additional
Properties string - Class
Id string - Object
Type 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 string - Class
Id string - Object
Type 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 String - class
Id String - object
Type 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 string - class
Id string - object
Type 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.
- additional
Properties String - class
Id String - object
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileServerPreAssignBySlot, ServerProfileServerPreAssignBySlotArgs
- Additional
Properties string - Chassis
Id double - Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- Class
Id string - Domain
Name 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Slot
Id double - Slot-id of the server that would be assigned to this pre-assigned server profile.
- Additional
Properties string - Chassis
Id float64 - Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- Class
Id string - Domain
Name 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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Slot
Id float64 - Slot-id of the server that would be assigned to this pre-assigned server profile.
- additional
Properties String - chassis
Id Double - Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- class
Id String - domain
Name 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- slot
Id Double - Slot-id of the server that would be assigned to this pre-assigned server profile.
- additional
Properties string - chassis
Id number - Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- class
Id string - domain
Name 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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- slot
Id 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.
- additional
Properties String - chassis
Id Number - Chassis-id of the slot that would be assigned to this pre-assigned server profile.
- class
Id String - domain
Name 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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- slot
Id Number - Slot-id of the server that would be assigned to this pre-assigned server profile.
ServerProfileSrcTemplate, ServerProfileSrcTemplateArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileTag, ServerProfileTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
ServerProfileTemplateAction, ServerProfileTemplateActionArgs
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
List<Server
Profile 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 string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Params
[]Server
Profile 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 String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
List<Server
Profile 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 string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- params
Server
Profile 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[Server
Profile 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.
- additional
Properties String - class
Id String - object
Type 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
- Additional
Properties string - Class
Id string - Name string
- The action parameter identifier.
- Object
Type 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 string - Class
Id string - Name string
- The action parameter identifier.
- Object
Type 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 String - class
Id String - name String
- The action parameter identifier.
- object
Type 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 string - class
Id string - name string
- The action parameter identifier.
- object
Type 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.
- additional
Properties String - class
Id String - name String
- The action parameter identifier.
- object
Type 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
- Additional
Properties string - Class
Id string - Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- Object
Type 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 string - Class
Id string - Message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- Object
Type 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 String - class
Id String - message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object
Type 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 string - class
Id string - message string
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object
Type 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.
- additional
Properties String - class
Id String - message String
- (ReadOnly) The localized message based on the locale setting of the user's context providing the error description.
- object
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileUuidPool, ServerProfileUuidPoolArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileVersionContext, ServerProfileVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<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.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []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.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<ServerProfile Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<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.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos ServerProfile Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos 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.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[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.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
ServerProfileVersionContextInterestedMo, ServerProfileVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ServerProfileVersionContextRefMo, ServerProfileVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_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
intersight
Terraform Provider.