1. Packages
  2. Intersight Provider
  3. API Docs
  4. HyperflexHealthCheckDefinition
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

intersight.HyperflexHealthCheckDefinition

Explore with Pulumi AI

intersight logo
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

    HyperFlex health check definition metadata.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const hyperflexHealthCheckDefinition1 = new intersight.HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinition1", {
        category: "Cluster Resiliency Check",
        commonCauses: "Persistent drive on one of the nodes is in deny-list or unavailable.",
        description: "Number of Persistent Drive Failures Tolerable",
        internalName: "NumberOfPersistentDriveFailuresTolerable",
        resolution: "Check the status of the disk in HX Connect.",
        scriptExecutionMode: "ON_DEMAND",
        scriptExecutionOnComputeNodes: false,
        targetExecutionType: "EXECUTE_ON_LEADER_NODE",
        timeout: 0,
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    hyperflex_health_check_definition1 = intersight.HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinition1",
        category="Cluster Resiliency Check",
        common_causes="Persistent drive on one of the nodes is in deny-list or unavailable.",
        description="Number of Persistent Drive Failures Tolerable",
        internal_name="NumberOfPersistentDriveFailuresTolerable",
        resolution="Check the status of the disk in HX Connect.",
        script_execution_mode="ON_DEMAND",
        script_execution_on_compute_nodes=False,
        target_execution_type="EXECUTE_ON_LEADER_NODE",
        timeout=0)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := intersight.NewHyperflexHealthCheckDefinition(ctx, "hyperflexHealthCheckDefinition1", &intersight.HyperflexHealthCheckDefinitionArgs{
    			Category:                      pulumi.String("Cluster Resiliency Check"),
    			CommonCauses:                  pulumi.String("Persistent drive on one of the nodes is in deny-list or unavailable."),
    			Description:                   pulumi.String("Number of Persistent Drive Failures Tolerable"),
    			InternalName:                  pulumi.String("NumberOfPersistentDriveFailuresTolerable"),
    			Resolution:                    pulumi.String("Check the status of the disk in HX Connect."),
    			ScriptExecutionMode:           pulumi.String("ON_DEMAND"),
    			ScriptExecutionOnComputeNodes: pulumi.Bool(false),
    			TargetExecutionType:           pulumi.String("EXECUTE_ON_LEADER_NODE"),
    			Timeout:                       pulumi.Float64(0),
    		})
    		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 hyperflexHealthCheckDefinition1 = new Intersight.HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinition1", new()
        {
            Category = "Cluster Resiliency Check",
            CommonCauses = "Persistent drive on one of the nodes is in deny-list or unavailable.",
            Description = "Number of Persistent Drive Failures Tolerable",
            InternalName = "NumberOfPersistentDriveFailuresTolerable",
            Resolution = "Check the status of the disk in HX Connect.",
            ScriptExecutionMode = "ON_DEMAND",
            ScriptExecutionOnComputeNodes = false,
            TargetExecutionType = "EXECUTE_ON_LEADER_NODE",
            Timeout = 0,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.HyperflexHealthCheckDefinition;
    import com.pulumi.intersight.HyperflexHealthCheckDefinitionArgs;
    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) {
            var hyperflexHealthCheckDefinition1 = new HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinition1", HyperflexHealthCheckDefinitionArgs.builder()
                .category("Cluster Resiliency Check")
                .commonCauses("Persistent drive on one of the nodes is in deny-list or unavailable.")
                .description("Number of Persistent Drive Failures Tolerable")
                .internalName("NumberOfPersistentDriveFailuresTolerable")
                .resolution("Check the status of the disk in HX Connect.")
                .scriptExecutionMode("ON_DEMAND")
                .scriptExecutionOnComputeNodes(false)
                .targetExecutionType("EXECUTE_ON_LEADER_NODE")
                .timeout(0)
                .build());
    
        }
    }
    
    resources:
      hyperflexHealthCheckDefinition1:
        type: intersight:HyperflexHealthCheckDefinition
        properties:
          category: Cluster Resiliency Check
          commonCauses: Persistent drive on one of the nodes is in deny-list or unavailable.
          description: Number of Persistent Drive Failures Tolerable
          internalName: NumberOfPersistentDriveFailuresTolerable
          resolution: Check the status of the disk in HX Connect.
          scriptExecutionMode: ON_DEMAND
          scriptExecutionOnComputeNodes: false
          targetExecutionType: EXECUTE_ON_LEADER_NODE
          timeout: 0
    

    Create HyperflexHealthCheckDefinition Resource

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

    Constructor syntax

    new HyperflexHealthCheckDefinition(name: string, args?: HyperflexHealthCheckDefinitionArgs, opts?: CustomResourceOptions);
    @overload
    def HyperflexHealthCheckDefinition(resource_name: str,
                                       args: Optional[HyperflexHealthCheckDefinitionArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def HyperflexHealthCheckDefinition(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       account_moid: Optional[str] = None,
                                       additional_properties: Optional[str] = None,
                                       ancestors: Optional[Sequence[HyperflexHealthCheckDefinitionAncestorArgs]] = None,
                                       category: Optional[str] = None,
                                       class_id: Optional[str] = None,
                                       common_causes: Optional[str] = None,
                                       configuration: Optional[str] = None,
                                       create_time: Optional[str] = None,
                                       default_health_check_script_infos: Optional[Sequence[HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs]] = None,
                                       description: Optional[str] = None,
                                       domain_group_moid: Optional[str] = None,
                                       health_check_script_infos: Optional[Sequence[HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs]] = None,
                                       health_impact: Optional[str] = None,
                                       hyperflex_health_check_definition_id: Optional[str] = None,
                                       internal_name: Optional[str] = None,
                                       minimum_hyper_flex_version: Optional[str] = None,
                                       mod_time: Optional[str] = None,
                                       moid: Optional[str] = None,
                                       name: Optional[str] = None,
                                       object_type: Optional[str] = None,
                                       owners: Optional[Sequence[str]] = None,
                                       parents: Optional[Sequence[HyperflexHealthCheckDefinitionParentArgs]] = None,
                                       permission_resources: Optional[Sequence[HyperflexHealthCheckDefinitionPermissionResourceArgs]] = None,
                                       reference: Optional[str] = None,
                                       resolution: Optional[str] = None,
                                       script_execution_mode: Optional[str] = None,
                                       script_execution_on_compute_nodes: Optional[bool] = None,
                                       shared_scope: Optional[str] = None,
                                       supported_hypervisor_type: Optional[str] = None,
                                       tags: Optional[Sequence[HyperflexHealthCheckDefinitionTagArgs]] = None,
                                       target_execution_type: Optional[str] = None,
                                       timeout: Optional[float] = None,
                                       unsupported_hyper_flex_versions: Optional[Sequence[str]] = None,
                                       version_contexts: Optional[Sequence[HyperflexHealthCheckDefinitionVersionContextArgs]] = None)
    func NewHyperflexHealthCheckDefinition(ctx *Context, name string, args *HyperflexHealthCheckDefinitionArgs, opts ...ResourceOption) (*HyperflexHealthCheckDefinition, error)
    public HyperflexHealthCheckDefinition(string name, HyperflexHealthCheckDefinitionArgs? args = null, CustomResourceOptions? opts = null)
    public HyperflexHealthCheckDefinition(String name, HyperflexHealthCheckDefinitionArgs args)
    public HyperflexHealthCheckDefinition(String name, HyperflexHealthCheckDefinitionArgs args, CustomResourceOptions options)
    
    type: intersight:HyperflexHealthCheckDefinition
    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 HyperflexHealthCheckDefinitionArgs
    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 HyperflexHealthCheckDefinitionArgs
    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 HyperflexHealthCheckDefinitionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HyperflexHealthCheckDefinitionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HyperflexHealthCheckDefinitionArgs
    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 hyperflexHealthCheckDefinitionResource = new Intersight.HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinitionResource", new()
    {
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.HyperflexHealthCheckDefinitionAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Category = "string",
        ClassId = "string",
        CommonCauses = "string",
        Configuration = "string",
        CreateTime = "string",
        DefaultHealthCheckScriptInfos = new[]
        {
            new Intersight.Inputs.HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs
            {
                AdditionalProperties = "string",
                AggregateScriptName = "string",
                ClassId = "string",
                HyperflexVersion = "string",
                NrVersion = "string",
                ObjectType = "string",
                ScriptExecuteLocation = "string",
                ScriptInput = "string",
                ScriptName = "string",
            },
        },
        Description = "string",
        DomainGroupMoid = "string",
        HealthCheckScriptInfos = new[]
        {
            new Intersight.Inputs.HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs
            {
                AdditionalProperties = "string",
                AggregateScriptName = "string",
                ClassId = "string",
                HyperflexVersion = "string",
                NrVersion = "string",
                ObjectType = "string",
                ScriptExecuteLocation = "string",
                ScriptInput = "string",
                ScriptName = "string",
            },
        },
        HealthImpact = "string",
        HyperflexHealthCheckDefinitionId = "string",
        InternalName = "string",
        MinimumHyperFlexVersion = "string",
        ModTime = "string",
        Moid = "string",
        Name = "string",
        ObjectType = "string",
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.HyperflexHealthCheckDefinitionParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.HyperflexHealthCheckDefinitionPermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Reference = "string",
        Resolution = "string",
        ScriptExecutionMode = "string",
        ScriptExecutionOnComputeNodes = false,
        SharedScope = "string",
        SupportedHypervisorType = "string",
        Tags = new[]
        {
            new Intersight.Inputs.HyperflexHealthCheckDefinitionTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        TargetExecutionType = "string",
        Timeout = 0,
        UnsupportedHyperFlexVersions = new[]
        {
            "string",
        },
        VersionContexts = new[]
        {
            new Intersight.Inputs.HyperflexHealthCheckDefinitionVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.HyperflexHealthCheckDefinitionVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.HyperflexHealthCheckDefinitionVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
    });
    
    example, err := intersight.NewHyperflexHealthCheckDefinition(ctx, "hyperflexHealthCheckDefinitionResource", &intersight.HyperflexHealthCheckDefinitionArgs{
    	AccountMoid:          pulumi.String("string"),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.HyperflexHealthCheckDefinitionAncestorArray{
    		&intersight.HyperflexHealthCheckDefinitionAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Category:      pulumi.String("string"),
    	ClassId:       pulumi.String("string"),
    	CommonCauses:  pulumi.String("string"),
    	Configuration: pulumi.String("string"),
    	CreateTime:    pulumi.String("string"),
    	DefaultHealthCheckScriptInfos: intersight.HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArray{
    		&intersight.HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs{
    			AdditionalProperties:  pulumi.String("string"),
    			AggregateScriptName:   pulumi.String("string"),
    			ClassId:               pulumi.String("string"),
    			HyperflexVersion:      pulumi.String("string"),
    			NrVersion:             pulumi.String("string"),
    			ObjectType:            pulumi.String("string"),
    			ScriptExecuteLocation: pulumi.String("string"),
    			ScriptInput:           pulumi.String("string"),
    			ScriptName:            pulumi.String("string"),
    		},
    	},
    	Description:     pulumi.String("string"),
    	DomainGroupMoid: pulumi.String("string"),
    	HealthCheckScriptInfos: intersight.HyperflexHealthCheckDefinitionHealthCheckScriptInfoArray{
    		&intersight.HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs{
    			AdditionalProperties:  pulumi.String("string"),
    			AggregateScriptName:   pulumi.String("string"),
    			ClassId:               pulumi.String("string"),
    			HyperflexVersion:      pulumi.String("string"),
    			NrVersion:             pulumi.String("string"),
    			ObjectType:            pulumi.String("string"),
    			ScriptExecuteLocation: pulumi.String("string"),
    			ScriptInput:           pulumi.String("string"),
    			ScriptName:            pulumi.String("string"),
    		},
    	},
    	HealthImpact:                     pulumi.String("string"),
    	HyperflexHealthCheckDefinitionId: pulumi.String("string"),
    	InternalName:                     pulumi.String("string"),
    	MinimumHyperFlexVersion:          pulumi.String("string"),
    	ModTime:                          pulumi.String("string"),
    	Moid:                             pulumi.String("string"),
    	Name:                             pulumi.String("string"),
    	ObjectType:                       pulumi.String("string"),
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.HyperflexHealthCheckDefinitionParentArray{
    		&intersight.HyperflexHealthCheckDefinitionParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.HyperflexHealthCheckDefinitionPermissionResourceArray{
    		&intersight.HyperflexHealthCheckDefinitionPermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Reference:                     pulumi.String("string"),
    	Resolution:                    pulumi.String("string"),
    	ScriptExecutionMode:           pulumi.String("string"),
    	ScriptExecutionOnComputeNodes: pulumi.Bool(false),
    	SharedScope:                   pulumi.String("string"),
    	SupportedHypervisorType:       pulumi.String("string"),
    	Tags: intersight.HyperflexHealthCheckDefinitionTagArray{
    		&intersight.HyperflexHealthCheckDefinitionTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	TargetExecutionType: pulumi.String("string"),
    	Timeout:             pulumi.Float64(0),
    	UnsupportedHyperFlexVersions: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	VersionContexts: intersight.HyperflexHealthCheckDefinitionVersionContextArray{
    		&intersight.HyperflexHealthCheckDefinitionVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.HyperflexHealthCheckDefinitionVersionContextInterestedMoArray{
    				&intersight.HyperflexHealthCheckDefinitionVersionContextInterestedMoArgs{
    					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.HyperflexHealthCheckDefinitionVersionContextRefMoArray{
    				&intersight.HyperflexHealthCheckDefinitionVersionContextRefMoArgs{
    					AdditionalProperties: pulumi.String("string"),
    					ClassId:              pulumi.String("string"),
    					Moid:                 pulumi.String("string"),
    					ObjectType:           pulumi.String("string"),
    					Selector:             pulumi.String("string"),
    				},
    			},
    			Timestamp:   pulumi.String("string"),
    			VersionType: pulumi.String("string"),
    		},
    	},
    })
    
    var hyperflexHealthCheckDefinitionResource = new HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinitionResource", HyperflexHealthCheckDefinitionArgs.builder()
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(HyperflexHealthCheckDefinitionAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .category("string")
        .classId("string")
        .commonCauses("string")
        .configuration("string")
        .createTime("string")
        .defaultHealthCheckScriptInfos(HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs.builder()
            .additionalProperties("string")
            .aggregateScriptName("string")
            .classId("string")
            .hyperflexVersion("string")
            .nrVersion("string")
            .objectType("string")
            .scriptExecuteLocation("string")
            .scriptInput("string")
            .scriptName("string")
            .build())
        .description("string")
        .domainGroupMoid("string")
        .healthCheckScriptInfos(HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs.builder()
            .additionalProperties("string")
            .aggregateScriptName("string")
            .classId("string")
            .hyperflexVersion("string")
            .nrVersion("string")
            .objectType("string")
            .scriptExecuteLocation("string")
            .scriptInput("string")
            .scriptName("string")
            .build())
        .healthImpact("string")
        .hyperflexHealthCheckDefinitionId("string")
        .internalName("string")
        .minimumHyperFlexVersion("string")
        .modTime("string")
        .moid("string")
        .name("string")
        .objectType("string")
        .owners("string")
        .parents(HyperflexHealthCheckDefinitionParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(HyperflexHealthCheckDefinitionPermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .reference("string")
        .resolution("string")
        .scriptExecutionMode("string")
        .scriptExecutionOnComputeNodes(false)
        .sharedScope("string")
        .supportedHypervisorType("string")
        .tags(HyperflexHealthCheckDefinitionTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .targetExecutionType("string")
        .timeout(0)
        .unsupportedHyperFlexVersions("string")
        .versionContexts(HyperflexHealthCheckDefinitionVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(HyperflexHealthCheckDefinitionVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(HyperflexHealthCheckDefinitionVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .build());
    
    hyperflex_health_check_definition_resource = intersight.HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinitionResource",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        category="string",
        class_id="string",
        common_causes="string",
        configuration="string",
        create_time="string",
        default_health_check_script_infos=[{
            "additional_properties": "string",
            "aggregate_script_name": "string",
            "class_id": "string",
            "hyperflex_version": "string",
            "nr_version": "string",
            "object_type": "string",
            "script_execute_location": "string",
            "script_input": "string",
            "script_name": "string",
        }],
        description="string",
        domain_group_moid="string",
        health_check_script_infos=[{
            "additional_properties": "string",
            "aggregate_script_name": "string",
            "class_id": "string",
            "hyperflex_version": "string",
            "nr_version": "string",
            "object_type": "string",
            "script_execute_location": "string",
            "script_input": "string",
            "script_name": "string",
        }],
        health_impact="string",
        hyperflex_health_check_definition_id="string",
        internal_name="string",
        minimum_hyper_flex_version="string",
        mod_time="string",
        moid="string",
        name="string",
        object_type="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",
        }],
        reference="string",
        resolution="string",
        script_execution_mode="string",
        script_execution_on_compute_nodes=False,
        shared_scope="string",
        supported_hypervisor_type="string",
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        target_execution_type="string",
        timeout=0,
        unsupported_hyper_flex_versions=["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",
        }])
    
    const hyperflexHealthCheckDefinitionResource = new intersight.HyperflexHealthCheckDefinition("hyperflexHealthCheckDefinitionResource", {
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        category: "string",
        classId: "string",
        commonCauses: "string",
        configuration: "string",
        createTime: "string",
        defaultHealthCheckScriptInfos: [{
            additionalProperties: "string",
            aggregateScriptName: "string",
            classId: "string",
            hyperflexVersion: "string",
            nrVersion: "string",
            objectType: "string",
            scriptExecuteLocation: "string",
            scriptInput: "string",
            scriptName: "string",
        }],
        description: "string",
        domainGroupMoid: "string",
        healthCheckScriptInfos: [{
            additionalProperties: "string",
            aggregateScriptName: "string",
            classId: "string",
            hyperflexVersion: "string",
            nrVersion: "string",
            objectType: "string",
            scriptExecuteLocation: "string",
            scriptInput: "string",
            scriptName: "string",
        }],
        healthImpact: "string",
        hyperflexHealthCheckDefinitionId: "string",
        internalName: "string",
        minimumHyperFlexVersion: "string",
        modTime: "string",
        moid: "string",
        name: "string",
        objectType: "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",
        }],
        reference: "string",
        resolution: "string",
        scriptExecutionMode: "string",
        scriptExecutionOnComputeNodes: false,
        sharedScope: "string",
        supportedHypervisorType: "string",
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        targetExecutionType: "string",
        timeout: 0,
        unsupportedHyperFlexVersions: ["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",
        }],
    });
    
    type: intersight:HyperflexHealthCheckDefinition
    properties:
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        category: string
        classId: string
        commonCauses: string
        configuration: string
        createTime: string
        defaultHealthCheckScriptInfos:
            - additionalProperties: string
              aggregateScriptName: string
              classId: string
              hyperflexVersion: string
              nrVersion: string
              objectType: string
              scriptExecuteLocation: string
              scriptInput: string
              scriptName: string
        description: string
        domainGroupMoid: string
        healthCheckScriptInfos:
            - additionalProperties: string
              aggregateScriptName: string
              classId: string
              hyperflexVersion: string
              nrVersion: string
              objectType: string
              scriptExecuteLocation: string
              scriptInput: string
              scriptName: string
        healthImpact: string
        hyperflexHealthCheckDefinitionId: string
        internalName: string
        minimumHyperFlexVersion: string
        modTime: string
        moid: string
        name: string
        objectType: 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
        reference: string
        resolution: string
        scriptExecutionMode: string
        scriptExecutionOnComputeNodes: false
        sharedScope: string
        supportedHypervisorType: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        targetExecutionType: string
        timeout: 0
        unsupportedHyperFlexVersions:
            - 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
    

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

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<HyperflexHealthCheckDefinitionAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Category string
    Category that the health check belongs to.
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CommonCauses string
    Static information detailing the common causes for the health check failure.
    Configuration string
    Execution configuration fo the health check script.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultHealthCheckScriptInfos List<HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfo>
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    Description string
    Description of the health check definition.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    HealthCheckScriptInfos List<HyperflexHealthCheckDefinitionHealthCheckScriptInfo>
    This complex property has following sub-properties:
    HealthImpact string
    Static information detailing the health impact of the health check failure.
    HyperflexHealthCheckDefinitionId string
    InternalName string
    Internal name of the health check definition.
    MinimumHyperFlexVersion string
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<HyperflexHealthCheckDefinitionParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources List<HyperflexHealthCheckDefinitionPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Reference string
    Static information containing additional reference for the health check.
    Resolution string
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    ScriptExecutionMode string
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    ScriptExecutionOnComputeNodes bool
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    SupportedHypervisorType string
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    Tags List<HyperflexHealthCheckDefinitionTag>
    This complex property has following sub-properties:
    TargetExecutionType string
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    Timeout double
    Health check script execution timeout.
    UnsupportedHyperFlexVersions List<string>
    (Array of schema.TypeString) -
    VersionContexts List<HyperflexHealthCheckDefinitionVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []HyperflexHealthCheckDefinitionAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Category string
    Category that the health check belongs to.
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CommonCauses string
    Static information detailing the common causes for the health check failure.
    Configuration string
    Execution configuration fo the health check script.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultHealthCheckScriptInfos []HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    Description string
    Description of the health check definition.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    HealthCheckScriptInfos []HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs
    This complex property has following sub-properties:
    HealthImpact string
    Static information detailing the health impact of the health check failure.
    HyperflexHealthCheckDefinitionId string
    InternalName string
    Internal name of the health check definition.
    MinimumHyperFlexVersion string
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []HyperflexHealthCheckDefinitionParentArgs
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources []HyperflexHealthCheckDefinitionPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Reference string
    Static information containing additional reference for the health check.
    Resolution string
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    ScriptExecutionMode string
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    ScriptExecutionOnComputeNodes bool
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    SupportedHypervisorType string
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    Tags []HyperflexHealthCheckDefinitionTagArgs
    This complex property has following sub-properties:
    TargetExecutionType string
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    Timeout float64
    Health check script execution timeout.
    UnsupportedHyperFlexVersions []string
    (Array of schema.TypeString) -
    VersionContexts []HyperflexHealthCheckDefinitionVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<HyperflexHealthCheckDefinitionAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category String
    Category that the health check belongs to.
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    commonCauses String
    Static information detailing the common causes for the health check failure.
    configuration String
    Execution configuration fo the health check script.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultHealthCheckScriptInfos List<HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfo>
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description String
    Description of the health check definition.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    healthCheckScriptInfos List<HyperflexHealthCheckDefinitionHealthCheckScriptInfo>
    This complex property has following sub-properties:
    healthImpact String
    Static information detailing the health impact of the health check failure.
    hyperflexHealthCheckDefinitionId String
    internalName String
    Internal name of the health check definition.
    minimumHyperFlexVersion String
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<HyperflexHealthCheckDefinitionParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<HyperflexHealthCheckDefinitionPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference String
    Static information containing additional reference for the health check.
    resolution String
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    scriptExecutionMode String
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    scriptExecutionOnComputeNodes Boolean
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supportedHypervisorType String
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags List<HyperflexHealthCheckDefinitionTag>
    This complex property has following sub-properties:
    targetExecutionType String
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout Double
    Health check script execution timeout.
    unsupportedHyperFlexVersions List<String>
    (Array of schema.TypeString) -
    versionContexts List<HyperflexHealthCheckDefinitionVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors HyperflexHealthCheckDefinitionAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category string
    Category that the health check belongs to.
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    commonCauses string
    Static information detailing the common causes for the health check failure.
    configuration string
    Execution configuration fo the health check script.
    createTime string
    (ReadOnly) The time when this managed object was created.
    defaultHealthCheckScriptInfos HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfo[]
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description string
    Description of the health check definition.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    healthCheckScriptInfos HyperflexHealthCheckDefinitionHealthCheckScriptInfo[]
    This complex property has following sub-properties:
    healthImpact string
    Static information detailing the health impact of the health check failure.
    hyperflexHealthCheckDefinitionId string
    internalName string
    Internal name of the health check definition.
    minimumHyperFlexVersion string
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the health check definition.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents HyperflexHealthCheckDefinitionParent[]
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources HyperflexHealthCheckDefinitionPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference string
    Static information containing additional reference for the health check.
    resolution string
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    scriptExecutionMode string
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    scriptExecutionOnComputeNodes boolean
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supportedHypervisorType string
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags HyperflexHealthCheckDefinitionTag[]
    This complex property has following sub-properties:
    targetExecutionType string
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout number
    Health check script execution timeout.
    unsupportedHyperFlexVersions string[]
    (Array of schema.TypeString) -
    versionContexts HyperflexHealthCheckDefinitionVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[HyperflexHealthCheckDefinitionAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category str
    Category that the health check belongs to.
    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.
    common_causes str
    Static information detailing the common causes for the health check failure.
    configuration str
    Execution configuration fo the health check script.
    create_time str
    (ReadOnly) The time when this managed object was created.
    default_health_check_script_infos Sequence[HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs]
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description str
    Description of the health check definition.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    health_check_script_infos Sequence[HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs]
    This complex property has following sub-properties:
    health_impact str
    Static information detailing the health impact of the health check failure.
    hyperflex_health_check_definition_id str
    internal_name str
    Internal name of the health check definition.
    minimum_hyper_flex_version str
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    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 health check definition.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[HyperflexHealthCheckDefinitionParentArgs]
    (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[HyperflexHealthCheckDefinitionPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference str
    Static information containing additional reference for the health check.
    resolution str
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    script_execution_mode str
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    script_execution_on_compute_nodes bool
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supported_hypervisor_type str
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags Sequence[HyperflexHealthCheckDefinitionTagArgs]
    This complex property has following sub-properties:
    target_execution_type str
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout float
    Health check script execution timeout.
    unsupported_hyper_flex_versions Sequence[str]
    (Array of schema.TypeString) -
    version_contexts Sequence[HyperflexHealthCheckDefinitionVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category String
    Category that the health check belongs to.
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    commonCauses String
    Static information detailing the common causes for the health check failure.
    configuration String
    Execution configuration fo the health check script.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultHealthCheckScriptInfos List<Property Map>
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description String
    Description of the health check definition.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    healthCheckScriptInfos List<Property Map>
    This complex property has following sub-properties:
    healthImpact String
    Static information detailing the health impact of the health check failure.
    hyperflexHealthCheckDefinitionId String
    internalName String
    Internal name of the health check definition.
    minimumHyperFlexVersion String
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference String
    Static information containing additional reference for the health check.
    resolution String
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    scriptExecutionMode String
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    scriptExecutionOnComputeNodes Boolean
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supportedHypervisorType String
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags List<Property Map>
    This complex property has following sub-properties:
    targetExecutionType String
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout Number
    Health check script execution timeout.
    unsupportedHyperFlexVersions List<String>
    (Array of schema.TypeString) -
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Outputs

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

    Get an existing HyperflexHealthCheckDefinition 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?: HyperflexHealthCheckDefinitionState, opts?: CustomResourceOptions): HyperflexHealthCheckDefinition
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_moid: Optional[str] = None,
            additional_properties: Optional[str] = None,
            ancestors: Optional[Sequence[HyperflexHealthCheckDefinitionAncestorArgs]] = None,
            category: Optional[str] = None,
            class_id: Optional[str] = None,
            common_causes: Optional[str] = None,
            configuration: Optional[str] = None,
            create_time: Optional[str] = None,
            default_health_check_script_infos: Optional[Sequence[HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs]] = None,
            description: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            health_check_script_infos: Optional[Sequence[HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs]] = None,
            health_impact: Optional[str] = None,
            hyperflex_health_check_definition_id: Optional[str] = None,
            internal_name: Optional[str] = None,
            minimum_hyper_flex_version: Optional[str] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            object_type: Optional[str] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[HyperflexHealthCheckDefinitionParentArgs]] = None,
            permission_resources: Optional[Sequence[HyperflexHealthCheckDefinitionPermissionResourceArgs]] = None,
            reference: Optional[str] = None,
            resolution: Optional[str] = None,
            script_execution_mode: Optional[str] = None,
            script_execution_on_compute_nodes: Optional[bool] = None,
            shared_scope: Optional[str] = None,
            supported_hypervisor_type: Optional[str] = None,
            tags: Optional[Sequence[HyperflexHealthCheckDefinitionTagArgs]] = None,
            target_execution_type: Optional[str] = None,
            timeout: Optional[float] = None,
            unsupported_hyper_flex_versions: Optional[Sequence[str]] = None,
            version_contexts: Optional[Sequence[HyperflexHealthCheckDefinitionVersionContextArgs]] = None) -> HyperflexHealthCheckDefinition
    func GetHyperflexHealthCheckDefinition(ctx *Context, name string, id IDInput, state *HyperflexHealthCheckDefinitionState, opts ...ResourceOption) (*HyperflexHealthCheckDefinition, error)
    public static HyperflexHealthCheckDefinition Get(string name, Input<string> id, HyperflexHealthCheckDefinitionState? state, CustomResourceOptions? opts = null)
    public static HyperflexHealthCheckDefinition get(String name, Output<String> id, HyperflexHealthCheckDefinitionState state, CustomResourceOptions options)
    resources:  _:    type: intersight:HyperflexHealthCheckDefinition    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.
    The following state arguments are supported:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<HyperflexHealthCheckDefinitionAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Category string
    Category that the health check belongs to.
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CommonCauses string
    Static information detailing the common causes for the health check failure.
    Configuration string
    Execution configuration fo the health check script.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultHealthCheckScriptInfos List<HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfo>
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    Description string
    Description of the health check definition.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    HealthCheckScriptInfos List<HyperflexHealthCheckDefinitionHealthCheckScriptInfo>
    This complex property has following sub-properties:
    HealthImpact string
    Static information detailing the health impact of the health check failure.
    HyperflexHealthCheckDefinitionId string
    InternalName string
    Internal name of the health check definition.
    MinimumHyperFlexVersion string
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<HyperflexHealthCheckDefinitionParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources List<HyperflexHealthCheckDefinitionPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Reference string
    Static information containing additional reference for the health check.
    Resolution string
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    ScriptExecutionMode string
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    ScriptExecutionOnComputeNodes bool
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    SupportedHypervisorType string
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    Tags List<HyperflexHealthCheckDefinitionTag>
    This complex property has following sub-properties:
    TargetExecutionType string
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    Timeout double
    Health check script execution timeout.
    UnsupportedHyperFlexVersions List<string>
    (Array of schema.TypeString) -
    VersionContexts List<HyperflexHealthCheckDefinitionVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []HyperflexHealthCheckDefinitionAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Category string
    Category that the health check belongs to.
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CommonCauses string
    Static information detailing the common causes for the health check failure.
    Configuration string
    Execution configuration fo the health check script.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DefaultHealthCheckScriptInfos []HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    Description string
    Description of the health check definition.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    HealthCheckScriptInfos []HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs
    This complex property has following sub-properties:
    HealthImpact string
    Static information detailing the health impact of the health check failure.
    HyperflexHealthCheckDefinitionId string
    InternalName string
    Internal name of the health check definition.
    MinimumHyperFlexVersion string
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []HyperflexHealthCheckDefinitionParentArgs
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    PermissionResources []HyperflexHealthCheckDefinitionPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Reference string
    Static information containing additional reference for the health check.
    Resolution string
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    ScriptExecutionMode string
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    ScriptExecutionOnComputeNodes bool
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    SupportedHypervisorType string
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    Tags []HyperflexHealthCheckDefinitionTagArgs
    This complex property has following sub-properties:
    TargetExecutionType string
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    Timeout float64
    Health check script execution timeout.
    UnsupportedHyperFlexVersions []string
    (Array of schema.TypeString) -
    VersionContexts []HyperflexHealthCheckDefinitionVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<HyperflexHealthCheckDefinitionAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category String
    Category that the health check belongs to.
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    commonCauses String
    Static information detailing the common causes for the health check failure.
    configuration String
    Execution configuration fo the health check script.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultHealthCheckScriptInfos List<HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfo>
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description String
    Description of the health check definition.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    healthCheckScriptInfos List<HyperflexHealthCheckDefinitionHealthCheckScriptInfo>
    This complex property has following sub-properties:
    healthImpact String
    Static information detailing the health impact of the health check failure.
    hyperflexHealthCheckDefinitionId String
    internalName String
    Internal name of the health check definition.
    minimumHyperFlexVersion String
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<HyperflexHealthCheckDefinitionParent>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<HyperflexHealthCheckDefinitionPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference String
    Static information containing additional reference for the health check.
    resolution String
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    scriptExecutionMode String
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    scriptExecutionOnComputeNodes Boolean
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supportedHypervisorType String
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags List<HyperflexHealthCheckDefinitionTag>
    This complex property has following sub-properties:
    targetExecutionType String
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout Double
    Health check script execution timeout.
    unsupportedHyperFlexVersions List<String>
    (Array of schema.TypeString) -
    versionContexts List<HyperflexHealthCheckDefinitionVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors HyperflexHealthCheckDefinitionAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category string
    Category that the health check belongs to.
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    commonCauses string
    Static information detailing the common causes for the health check failure.
    configuration string
    Execution configuration fo the health check script.
    createTime string
    (ReadOnly) The time when this managed object was created.
    defaultHealthCheckScriptInfos HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfo[]
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description string
    Description of the health check definition.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    healthCheckScriptInfos HyperflexHealthCheckDefinitionHealthCheckScriptInfo[]
    This complex property has following sub-properties:
    healthImpact string
    Static information detailing the health impact of the health check failure.
    hyperflexHealthCheckDefinitionId string
    internalName string
    Internal name of the health check definition.
    minimumHyperFlexVersion string
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the health check definition.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents HyperflexHealthCheckDefinitionParent[]
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources HyperflexHealthCheckDefinitionPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference string
    Static information containing additional reference for the health check.
    resolution string
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    scriptExecutionMode string
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    scriptExecutionOnComputeNodes boolean
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supportedHypervisorType string
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags HyperflexHealthCheckDefinitionTag[]
    This complex property has following sub-properties:
    targetExecutionType string
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout number
    Health check script execution timeout.
    unsupportedHyperFlexVersions string[]
    (Array of schema.TypeString) -
    versionContexts HyperflexHealthCheckDefinitionVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[HyperflexHealthCheckDefinitionAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category str
    Category that the health check belongs to.
    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.
    common_causes str
    Static information detailing the common causes for the health check failure.
    configuration str
    Execution configuration fo the health check script.
    create_time str
    (ReadOnly) The time when this managed object was created.
    default_health_check_script_infos Sequence[HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs]
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description str
    Description of the health check definition.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    health_check_script_infos Sequence[HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs]
    This complex property has following sub-properties:
    health_impact str
    Static information detailing the health impact of the health check failure.
    hyperflex_health_check_definition_id str
    internal_name str
    Internal name of the health check definition.
    minimum_hyper_flex_version str
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    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 health check definition.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[HyperflexHealthCheckDefinitionParentArgs]
    (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[HyperflexHealthCheckDefinitionPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference str
    Static information containing additional reference for the health check.
    resolution str
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    script_execution_mode str
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    script_execution_on_compute_nodes bool
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supported_hypervisor_type str
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags Sequence[HyperflexHealthCheckDefinitionTagArgs]
    This complex property has following sub-properties:
    target_execution_type str
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout float
    Health check script execution timeout.
    unsupported_hyper_flex_versions Sequence[str]
    (Array of schema.TypeString) -
    version_contexts Sequence[HyperflexHealthCheckDefinitionVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    category String
    Category that the health check belongs to.
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    commonCauses String
    Static information detailing the common causes for the health check failure.
    configuration String
    Execution configuration fo the health check script.
    createTime String
    (ReadOnly) The time when this managed object was created.
    defaultHealthCheckScriptInfos List<Property Map>
    (ReadOnly) Default version Script info. This complex property has following sub-properties:
    description String
    Description of the health check definition.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    healthCheckScriptInfos List<Property Map>
    This complex property has following sub-properties:
    healthImpact String
    Static information detailing the health impact of the health check failure.
    hyperflexHealthCheckDefinitionId String
    internalName String
    Internal name of the health check definition.
    minimumHyperFlexVersion String
    Minimum HyperFlex version that the check is supported on. Defaults to version 3.0.1.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    reference String
    Static information containing additional reference for the health check.
    resolution String
    Static information detailing the possible remediation actions that can be taken to remedy the health check failure.
    scriptExecutionMode String
    Execution mode of the health script on the HyperFlex cluster.* ON_DEMAND - Execute the health check on-demand.* SCHEDULED - Execute the health check on a scheduled interval.
    scriptExecutionOnComputeNodes Boolean
    Indicates if the script needs to be executed on HyperFlex compute nodes. |Typically, scripts are only executed on the storage Nodes.
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    supportedHypervisorType String
    (ReadOnly) Hypervisor type that the Health Check is supported on (All, if it is hypervisor agnostic).* All - The Health Check is hypervisor-agnostic.* ESXi - The Health Check is supported only on Vmware ESXi hypervisor of any version.* HyperV - The Health Check is supported only on Microsoft HyperV hypervisor.
    tags List<Property Map>
    This complex property has following sub-properties:
    targetExecutionType String
    Indicates whether the health check is executed only on the leader node, or on all nodes in the HyperFlex cluster.* EXECUTE_ON_LEADER_NODE - Execute the health check script only on the HyperFlex cluster's leader node.* EXECUTE_ON_ALL_NODES - Execute health check on all nodes and aggregate the results.* EXECUTE_ON_ALL_NODES_AND_AGGREGATE - Execute the health check on all Nodes and perform custom aggregation.* EXECUTE_ON_CURRENT_NODE - The HyperFlex health check is executed on the node which receives the request.
    timeout Number
    Health check script execution timeout.
    unsupportedHyperFlexVersions List<String>
    (Array of schema.TypeString) -
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Supporting Types

    HyperflexHealthCheckDefinitionAncestor, HyperflexHealthCheckDefinitionAncestorArgs

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

    HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfo, HyperflexHealthCheckDefinitionDefaultHealthCheckScriptInfoArgs

    AdditionalProperties string
    AggregateScriptName string
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    ClassId string
    HyperflexVersion string
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    NrVersion string
    (ReadOnly) Version of the health check script associated with the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ScriptExecuteLocation string
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    ScriptInput string
    (ReadOnly) Input for the health check script execution.
    ScriptName string
    (ReadOnly) Name of the health check script to be executed.
    AdditionalProperties string
    AggregateScriptName string
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    ClassId string
    HyperflexVersion string
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    NrVersion string
    (ReadOnly) Version of the health check script associated with the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ScriptExecuteLocation string
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    ScriptInput string
    (ReadOnly) Input for the health check script execution.
    ScriptName string
    (ReadOnly) Name of the health check script to be executed.
    additionalProperties String
    aggregateScriptName String
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    classId String
    hyperflexVersion String
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nrVersion String
    (ReadOnly) Version of the health check script associated with the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    scriptExecuteLocation String
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    scriptInput String
    (ReadOnly) Input for the health check script execution.
    scriptName String
    (ReadOnly) Name of the health check script to be executed.
    additionalProperties string
    aggregateScriptName string
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    classId string
    hyperflexVersion string
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nrVersion string
    (ReadOnly) Version of the health check script associated with the health check definition.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    scriptExecuteLocation string
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    scriptInput string
    (ReadOnly) Input for the health check script execution.
    scriptName string
    (ReadOnly) Name of the health check script to be executed.
    additional_properties str
    aggregate_script_name str
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    class_id str
    hyperflex_version str
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nr_version str
    (ReadOnly) Version of the health check script associated with the health check definition.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    script_execute_location str
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    script_input str
    (ReadOnly) Input for the health check script execution.
    script_name str
    (ReadOnly) Name of the health check script to be executed.
    additionalProperties String
    aggregateScriptName String
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    classId String
    hyperflexVersion String
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nrVersion String
    (ReadOnly) Version of the health check script associated with the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    scriptExecuteLocation String
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    scriptInput String
    (ReadOnly) Input for the health check script execution.
    scriptName String
    (ReadOnly) Name of the health check script to be executed.

    HyperflexHealthCheckDefinitionHealthCheckScriptInfo, HyperflexHealthCheckDefinitionHealthCheckScriptInfoArgs

    AdditionalProperties string
    AggregateScriptName string
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    ClassId string
    HyperflexVersion string
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    NrVersion string
    (ReadOnly) Version of the health check script associated with the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ScriptExecuteLocation string
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    ScriptInput string
    (ReadOnly) Input for the health check script execution.
    ScriptName string
    (ReadOnly) Name of the health check script to be executed.
    AdditionalProperties string
    AggregateScriptName string
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    ClassId string
    HyperflexVersion string
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    NrVersion string
    (ReadOnly) Version of the health check script associated with the health check definition.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ScriptExecuteLocation string
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    ScriptInput string
    (ReadOnly) Input for the health check script execution.
    ScriptName string
    (ReadOnly) Name of the health check script to be executed.
    additionalProperties String
    aggregateScriptName String
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    classId String
    hyperflexVersion String
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nrVersion String
    (ReadOnly) Version of the health check script associated with the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    scriptExecuteLocation String
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    scriptInput String
    (ReadOnly) Input for the health check script execution.
    scriptName String
    (ReadOnly) Name of the health check script to be executed.
    additionalProperties string
    aggregateScriptName string
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    classId string
    hyperflexVersion string
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nrVersion string
    (ReadOnly) Version of the health check script associated with the health check definition.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    scriptExecuteLocation string
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    scriptInput string
    (ReadOnly) Input for the health check script execution.
    scriptName string
    (ReadOnly) Name of the health check script to be executed.
    additional_properties str
    aggregate_script_name str
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    class_id str
    hyperflex_version str
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nr_version str
    (ReadOnly) Version of the health check script associated with the health check definition.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    script_execute_location str
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    script_input str
    (ReadOnly) Input for the health check script execution.
    script_name str
    (ReadOnly) Name of the health check script to be executed.
    additionalProperties String
    aggregateScriptName String
    (ReadOnly) Health check aggregate script that runs in the HyperFlex Leader Node. |It aggregates the output of all HyperFlex nodes and provides the health check result.
    classId String
    hyperflexVersion String
    (ReadOnly) HyperFlex Data Platform version running on the target device.
    nrVersion String
    (ReadOnly) Version of the health check script associated with the health check definition.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    scriptExecuteLocation String
    (ReadOnly) Location of the health check script's execution on the HyperFlex device.
    scriptInput String
    (ReadOnly) Input for the health check script execution.
    scriptName String
    (ReadOnly) Name of the health check script to be executed.

    HyperflexHealthCheckDefinitionParent, HyperflexHealthCheckDefinitionParentArgs

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

    HyperflexHealthCheckDefinitionPermissionResource, HyperflexHealthCheckDefinitionPermissionResourceArgs

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

    HyperflexHealthCheckDefinitionTag, HyperflexHealthCheckDefinitionTagArgs

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

    HyperflexHealthCheckDefinitionVersionContext, HyperflexHealthCheckDefinitionVersionContextArgs

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

    HyperflexHealthCheckDefinitionVersionContextInterestedMo, HyperflexHealthCheckDefinitionVersionContextInterestedMoArgs

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

    HyperflexHealthCheckDefinitionVersionContextRefMo, HyperflexHealthCheckDefinitionVersionContextRefMoArgs

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

    Import

    intersight_hyperflex_health_check_definition can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/hyperflexHealthCheckDefinition:HyperflexHealthCheckDefinition 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.
    intersight logo
    intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet