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

intersight.HyperflexAppCatalog

Explore with Pulumi AI

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

    A catalog for managing application settings for HyperFlex cluster configuration service.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const config = new pulumi.Config();
    const hyperflexFeatureLimitInternal = config.require("hyperflexFeatureLimitInternal");
    const hyperflexHxdpVersion = config.require("hyperflexHxdpVersion");
    const hyperflexCapabilityInfo = config.require("hyperflexCapabilityInfo");
    const hclHyperflexSoftwareCompatibilityInfo = config.require("hclHyperflexSoftwareCompatibilityInfo");
    const hyperflexServerFirmwareVersion = config.require("hyperflexServerFirmwareVersion");
    const hyperflexServerModel = config.require("hyperflexServerModel");
    const hyperflexSoftwareDistributionEntry = config.require("hyperflexSoftwareDistributionEntry");
    const hyperflexAppCatalog1 = new intersight.HyperflexAppCatalog("hyperflexAppCatalog1", {
        featureLimitInternals: [{
            moid: hyperflexFeatureLimitInternal,
            objectType: "hyperflex.FeatureLimitInternal",
        }],
        hxdpVersions: [{
            classId: "hyperflex.HxdpVersion",
            objectType: "hyperflex.HxdpVersion",
            moid: hyperflexHxdpVersion,
        }],
        hyperflexCapabilityInfos: [{
            classId: "hyperflex.CapabilityInfo",
            objectType: "hyperflex.CapabilityInfo",
            moid: hyperflexCapabilityInfo,
        }],
        hyperflexSoftwareCompatibilityInfos: [{
            objectType: "hcl.HyperflexSoftwareCompatibilityInfo",
            classId: "hcl.HyperflexSoftwareCompatibilityInfo",
            moid: hclHyperflexSoftwareCompatibilityInfo,
        }],
        serverFirmwareVersions: [{
            moid: hyperflexServerFirmwareVersion,
            objectType: "hyperflex.ServerFirmwareVersion",
        }],
        serverModels: [{
            moid: hyperflexServerModel,
            objectType: "hyperflex.ServerModel",
        }],
        softwareDistributions: [{
            objectType: "hyperflex.SoftwareDistributionEntry",
            classId: "hyperflex.SoftwareDistributionEntry",
            moid: hyperflexSoftwareDistributionEntry,
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    config = pulumi.Config()
    hyperflex_feature_limit_internal = config.require("hyperflexFeatureLimitInternal")
    hyperflex_hxdp_version = config.require("hyperflexHxdpVersion")
    hyperflex_capability_info = config.require("hyperflexCapabilityInfo")
    hcl_hyperflex_software_compatibility_info = config.require("hclHyperflexSoftwareCompatibilityInfo")
    hyperflex_server_firmware_version = config.require("hyperflexServerFirmwareVersion")
    hyperflex_server_model = config.require("hyperflexServerModel")
    hyperflex_software_distribution_entry = config.require("hyperflexSoftwareDistributionEntry")
    hyperflex_app_catalog1 = intersight.HyperflexAppCatalog("hyperflexAppCatalog1",
        feature_limit_internals=[{
            "moid": hyperflex_feature_limit_internal,
            "object_type": "hyperflex.FeatureLimitInternal",
        }],
        hxdp_versions=[{
            "class_id": "hyperflex.HxdpVersion",
            "object_type": "hyperflex.HxdpVersion",
            "moid": hyperflex_hxdp_version,
        }],
        hyperflex_capability_infos=[{
            "class_id": "hyperflex.CapabilityInfo",
            "object_type": "hyperflex.CapabilityInfo",
            "moid": hyperflex_capability_info,
        }],
        hyperflex_software_compatibility_infos=[{
            "object_type": "hcl.HyperflexSoftwareCompatibilityInfo",
            "class_id": "hcl.HyperflexSoftwareCompatibilityInfo",
            "moid": hcl_hyperflex_software_compatibility_info,
        }],
        server_firmware_versions=[{
            "moid": hyperflex_server_firmware_version,
            "object_type": "hyperflex.ServerFirmwareVersion",
        }],
        server_models=[{
            "moid": hyperflex_server_model,
            "object_type": "hyperflex.ServerModel",
        }],
        software_distributions=[{
            "object_type": "hyperflex.SoftwareDistributionEntry",
            "class_id": "hyperflex.SoftwareDistributionEntry",
            "moid": hyperflex_software_distribution_entry,
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		hyperflexFeatureLimitInternal := cfg.Require("hyperflexFeatureLimitInternal")
    		hyperflexHxdpVersion := cfg.Require("hyperflexHxdpVersion")
    		hyperflexCapabilityInfo := cfg.Require("hyperflexCapabilityInfo")
    		hclHyperflexSoftwareCompatibilityInfo := cfg.Require("hclHyperflexSoftwareCompatibilityInfo")
    		hyperflexServerFirmwareVersion := cfg.Require("hyperflexServerFirmwareVersion")
    		hyperflexServerModel := cfg.Require("hyperflexServerModel")
    		hyperflexSoftwareDistributionEntry := cfg.Require("hyperflexSoftwareDistributionEntry")
    		_, err := intersight.NewHyperflexAppCatalog(ctx, "hyperflexAppCatalog1", &intersight.HyperflexAppCatalogArgs{
    			FeatureLimitInternals: intersight.HyperflexAppCatalogFeatureLimitInternalArray{
    				&intersight.HyperflexAppCatalogFeatureLimitInternalArgs{
    					Moid:       pulumi.String(hyperflexFeatureLimitInternal),
    					ObjectType: pulumi.String("hyperflex.FeatureLimitInternal"),
    				},
    			},
    			HxdpVersions: intersight.HyperflexAppCatalogHxdpVersionArray{
    				&intersight.HyperflexAppCatalogHxdpVersionArgs{
    					ClassId:    pulumi.String("hyperflex.HxdpVersion"),
    					ObjectType: pulumi.String("hyperflex.HxdpVersion"),
    					Moid:       pulumi.String(hyperflexHxdpVersion),
    				},
    			},
    			HyperflexCapabilityInfos: intersight.HyperflexAppCatalogHyperflexCapabilityInfoArray{
    				&intersight.HyperflexAppCatalogHyperflexCapabilityInfoArgs{
    					ClassId:    pulumi.String("hyperflex.CapabilityInfo"),
    					ObjectType: pulumi.String("hyperflex.CapabilityInfo"),
    					Moid:       pulumi.String(hyperflexCapabilityInfo),
    				},
    			},
    			HyperflexSoftwareCompatibilityInfos: intersight.HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArray{
    				&intersight.HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs{
    					ObjectType: pulumi.String("hcl.HyperflexSoftwareCompatibilityInfo"),
    					ClassId:    pulumi.String("hcl.HyperflexSoftwareCompatibilityInfo"),
    					Moid:       pulumi.String(hclHyperflexSoftwareCompatibilityInfo),
    				},
    			},
    			ServerFirmwareVersions: intersight.HyperflexAppCatalogServerFirmwareVersionArray{
    				&intersight.HyperflexAppCatalogServerFirmwareVersionArgs{
    					Moid:       pulumi.String(hyperflexServerFirmwareVersion),
    					ObjectType: pulumi.String("hyperflex.ServerFirmwareVersion"),
    				},
    			},
    			ServerModels: intersight.HyperflexAppCatalogServerModelArray{
    				&intersight.HyperflexAppCatalogServerModelArgs{
    					Moid:       pulumi.String(hyperflexServerModel),
    					ObjectType: pulumi.String("hyperflex.ServerModel"),
    				},
    			},
    			SoftwareDistributions: intersight.HyperflexAppCatalogSoftwareDistributionArray{
    				&intersight.HyperflexAppCatalogSoftwareDistributionArgs{
    					ObjectType: pulumi.String("hyperflex.SoftwareDistributionEntry"),
    					ClassId:    pulumi.String("hyperflex.SoftwareDistributionEntry"),
    					Moid:       pulumi.String(hyperflexSoftwareDistributionEntry),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Intersight = Pulumi.Intersight;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var hyperflexFeatureLimitInternal = config.Require("hyperflexFeatureLimitInternal");
        var hyperflexHxdpVersion = config.Require("hyperflexHxdpVersion");
        var hyperflexCapabilityInfo = config.Require("hyperflexCapabilityInfo");
        var hclHyperflexSoftwareCompatibilityInfo = config.Require("hclHyperflexSoftwareCompatibilityInfo");
        var hyperflexServerFirmwareVersion = config.Require("hyperflexServerFirmwareVersion");
        var hyperflexServerModel = config.Require("hyperflexServerModel");
        var hyperflexSoftwareDistributionEntry = config.Require("hyperflexSoftwareDistributionEntry");
        var hyperflexAppCatalog1 = new Intersight.HyperflexAppCatalog("hyperflexAppCatalog1", new()
        {
            FeatureLimitInternals = new[]
            {
                new Intersight.Inputs.HyperflexAppCatalogFeatureLimitInternalArgs
                {
                    Moid = hyperflexFeatureLimitInternal,
                    ObjectType = "hyperflex.FeatureLimitInternal",
                },
            },
            HxdpVersions = new[]
            {
                new Intersight.Inputs.HyperflexAppCatalogHxdpVersionArgs
                {
                    ClassId = "hyperflex.HxdpVersion",
                    ObjectType = "hyperflex.HxdpVersion",
                    Moid = hyperflexHxdpVersion,
                },
            },
            HyperflexCapabilityInfos = new[]
            {
                new Intersight.Inputs.HyperflexAppCatalogHyperflexCapabilityInfoArgs
                {
                    ClassId = "hyperflex.CapabilityInfo",
                    ObjectType = "hyperflex.CapabilityInfo",
                    Moid = hyperflexCapabilityInfo,
                },
            },
            HyperflexSoftwareCompatibilityInfos = new[]
            {
                new Intersight.Inputs.HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs
                {
                    ObjectType = "hcl.HyperflexSoftwareCompatibilityInfo",
                    ClassId = "hcl.HyperflexSoftwareCompatibilityInfo",
                    Moid = hclHyperflexSoftwareCompatibilityInfo,
                },
            },
            ServerFirmwareVersions = new[]
            {
                new Intersight.Inputs.HyperflexAppCatalogServerFirmwareVersionArgs
                {
                    Moid = hyperflexServerFirmwareVersion,
                    ObjectType = "hyperflex.ServerFirmwareVersion",
                },
            },
            ServerModels = new[]
            {
                new Intersight.Inputs.HyperflexAppCatalogServerModelArgs
                {
                    Moid = hyperflexServerModel,
                    ObjectType = "hyperflex.ServerModel",
                },
            },
            SoftwareDistributions = new[]
            {
                new Intersight.Inputs.HyperflexAppCatalogSoftwareDistributionArgs
                {
                    ObjectType = "hyperflex.SoftwareDistributionEntry",
                    ClassId = "hyperflex.SoftwareDistributionEntry",
                    Moid = hyperflexSoftwareDistributionEntry,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.HyperflexAppCatalog;
    import com.pulumi.intersight.HyperflexAppCatalogArgs;
    import com.pulumi.intersight.inputs.HyperflexAppCatalogFeatureLimitInternalArgs;
    import com.pulumi.intersight.inputs.HyperflexAppCatalogHxdpVersionArgs;
    import com.pulumi.intersight.inputs.HyperflexAppCatalogHyperflexCapabilityInfoArgs;
    import com.pulumi.intersight.inputs.HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs;
    import com.pulumi.intersight.inputs.HyperflexAppCatalogServerFirmwareVersionArgs;
    import com.pulumi.intersight.inputs.HyperflexAppCatalogServerModelArgs;
    import com.pulumi.intersight.inputs.HyperflexAppCatalogSoftwareDistributionArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var config = ctx.config();
            final var hyperflexFeatureLimitInternal = config.get("hyperflexFeatureLimitInternal");
            final var hyperflexHxdpVersion = config.get("hyperflexHxdpVersion");
            final var hyperflexCapabilityInfo = config.get("hyperflexCapabilityInfo");
            final var hclHyperflexSoftwareCompatibilityInfo = config.get("hclHyperflexSoftwareCompatibilityInfo");
            final var hyperflexServerFirmwareVersion = config.get("hyperflexServerFirmwareVersion");
            final var hyperflexServerModel = config.get("hyperflexServerModel");
            final var hyperflexSoftwareDistributionEntry = config.get("hyperflexSoftwareDistributionEntry");
            var hyperflexAppCatalog1 = new HyperflexAppCatalog("hyperflexAppCatalog1", HyperflexAppCatalogArgs.builder()
                .featureLimitInternals(HyperflexAppCatalogFeatureLimitInternalArgs.builder()
                    .moid(hyperflexFeatureLimitInternal)
                    .objectType("hyperflex.FeatureLimitInternal")
                    .build())
                .hxdpVersions(HyperflexAppCatalogHxdpVersionArgs.builder()
                    .classId("hyperflex.HxdpVersion")
                    .objectType("hyperflex.HxdpVersion")
                    .moid(hyperflexHxdpVersion)
                    .build())
                .hyperflexCapabilityInfos(HyperflexAppCatalogHyperflexCapabilityInfoArgs.builder()
                    .classId("hyperflex.CapabilityInfo")
                    .objectType("hyperflex.CapabilityInfo")
                    .moid(hyperflexCapabilityInfo)
                    .build())
                .hyperflexSoftwareCompatibilityInfos(HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs.builder()
                    .objectType("hcl.HyperflexSoftwareCompatibilityInfo")
                    .classId("hcl.HyperflexSoftwareCompatibilityInfo")
                    .moid(hclHyperflexSoftwareCompatibilityInfo)
                    .build())
                .serverFirmwareVersions(HyperflexAppCatalogServerFirmwareVersionArgs.builder()
                    .moid(hyperflexServerFirmwareVersion)
                    .objectType("hyperflex.ServerFirmwareVersion")
                    .build())
                .serverModels(HyperflexAppCatalogServerModelArgs.builder()
                    .moid(hyperflexServerModel)
                    .objectType("hyperflex.ServerModel")
                    .build())
                .softwareDistributions(HyperflexAppCatalogSoftwareDistributionArgs.builder()
                    .objectType("hyperflex.SoftwareDistributionEntry")
                    .classId("hyperflex.SoftwareDistributionEntry")
                    .moid(hyperflexSoftwareDistributionEntry)
                    .build())
                .build());
    
        }
    }
    
    configuration:
      hyperflexFeatureLimitInternal:
        type: string
      hyperflexHxdpVersion:
        type: string
      hyperflexCapabilityInfo:
        type: string
      hclHyperflexSoftwareCompatibilityInfo:
        type: string
      hyperflexServerFirmwareVersion:
        type: string
      hyperflexServerModel:
        type: string
      hyperflexSoftwareDistributionEntry:
        type: string
    resources:
      hyperflexAppCatalog1:
        type: intersight:HyperflexAppCatalog
        properties:
          featureLimitInternals:
            - moid: ${hyperflexFeatureLimitInternal}
              objectType: hyperflex.FeatureLimitInternal
          hxdpVersions:
            - classId: hyperflex.HxdpVersion
              objectType: hyperflex.HxdpVersion
              moid: ${hyperflexHxdpVersion}
          hyperflexCapabilityInfos:
            - classId: hyperflex.CapabilityInfo
              objectType: hyperflex.CapabilityInfo
              moid: ${hyperflexCapabilityInfo}
          hyperflexSoftwareCompatibilityInfos:
            - objectType: hcl.HyperflexSoftwareCompatibilityInfo
              classId: hcl.HyperflexSoftwareCompatibilityInfo
              moid: ${hclHyperflexSoftwareCompatibilityInfo}
          serverFirmwareVersions:
            - moid: ${hyperflexServerFirmwareVersion}
              objectType: hyperflex.ServerFirmwareVersion
          serverModels:
            - moid: ${hyperflexServerModel}
              objectType: hyperflex.ServerModel
          softwareDistributions:
            - objectType: hyperflex.SoftwareDistributionEntry
              classId: hyperflex.SoftwareDistributionEntry
              moid: ${hyperflexSoftwareDistributionEntry}
    

    Create HyperflexAppCatalog Resource

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

    Constructor syntax

    new HyperflexAppCatalog(name: string, args?: HyperflexAppCatalogArgs, opts?: CustomResourceOptions);
    @overload
    def HyperflexAppCatalog(resource_name: str,
                            args: Optional[HyperflexAppCatalogArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def HyperflexAppCatalog(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            account_moid: Optional[str] = None,
                            additional_properties: Optional[str] = None,
                            ancestors: Optional[Sequence[HyperflexAppCatalogAncestorArgs]] = None,
                            class_id: Optional[str] = None,
                            create_time: Optional[str] = None,
                            domain_group_moid: Optional[str] = None,
                            feature_limit_externals: Optional[Sequence[HyperflexAppCatalogFeatureLimitExternalArgs]] = None,
                            feature_limit_internals: Optional[Sequence[HyperflexAppCatalogFeatureLimitInternalArgs]] = None,
                            hxdp_versions: Optional[Sequence[HyperflexAppCatalogHxdpVersionArgs]] = None,
                            hyperflex_app_catalog_id: Optional[str] = None,
                            hyperflex_capability_infos: Optional[Sequence[HyperflexAppCatalogHyperflexCapabilityInfoArgs]] = None,
                            hyperflex_software_compatibility_infos: Optional[Sequence[HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs]] = None,
                            mod_time: Optional[str] = None,
                            moid: Optional[str] = None,
                            nr_version: Optional[str] = None,
                            object_type: Optional[str] = None,
                            owners: Optional[Sequence[str]] = None,
                            parents: Optional[Sequence[HyperflexAppCatalogParentArgs]] = None,
                            permission_resources: Optional[Sequence[HyperflexAppCatalogPermissionResourceArgs]] = None,
                            server_firmware_versions: Optional[Sequence[HyperflexAppCatalogServerFirmwareVersionArgs]] = None,
                            server_models: Optional[Sequence[HyperflexAppCatalogServerModelArgs]] = None,
                            shared_scope: Optional[str] = None,
                            software_distributions: Optional[Sequence[HyperflexAppCatalogSoftwareDistributionArgs]] = None,
                            tags: Optional[Sequence[HyperflexAppCatalogTagArgs]] = None,
                            version_contexts: Optional[Sequence[HyperflexAppCatalogVersionContextArgs]] = None)
    func NewHyperflexAppCatalog(ctx *Context, name string, args *HyperflexAppCatalogArgs, opts ...ResourceOption) (*HyperflexAppCatalog, error)
    public HyperflexAppCatalog(string name, HyperflexAppCatalogArgs? args = null, CustomResourceOptions? opts = null)
    public HyperflexAppCatalog(String name, HyperflexAppCatalogArgs args)
    public HyperflexAppCatalog(String name, HyperflexAppCatalogArgs args, CustomResourceOptions options)
    
    type: intersight:HyperflexAppCatalog
    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 HyperflexAppCatalogArgs
    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 HyperflexAppCatalogArgs
    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 HyperflexAppCatalogArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HyperflexAppCatalogArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HyperflexAppCatalogArgs
    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 hyperflexAppCatalogResource = new Intersight.HyperflexAppCatalog("hyperflexAppCatalogResource", new()
    {
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ClassId = "string",
        CreateTime = "string",
        DomainGroupMoid = "string",
        FeatureLimitExternals = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogFeatureLimitExternalArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        FeatureLimitInternals = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogFeatureLimitInternalArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        HxdpVersions = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogHxdpVersionArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        HyperflexAppCatalogId = "string",
        HyperflexCapabilityInfos = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogHyperflexCapabilityInfoArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        HyperflexSoftwareCompatibilityInfos = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ModTime = "string",
        Moid = "string",
        NrVersion = "string",
        ObjectType = "string",
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogPermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ServerFirmwareVersions = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogServerFirmwareVersionArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ServerModels = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogServerModelArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SharedScope = "string",
        SoftwareDistributions = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogSoftwareDistributionArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Tags = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        VersionContexts = new[]
        {
            new Intersight.Inputs.HyperflexAppCatalogVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.HyperflexAppCatalogVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.HyperflexAppCatalogVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
    });
    
    example, err := intersight.NewHyperflexAppCatalog(ctx, "hyperflexAppCatalogResource", &intersight.HyperflexAppCatalogArgs{
    	AccountMoid:          pulumi.String("string"),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.HyperflexAppCatalogAncestorArray{
    		&intersight.HyperflexAppCatalogAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ClassId:         pulumi.String("string"),
    	CreateTime:      pulumi.String("string"),
    	DomainGroupMoid: pulumi.String("string"),
    	FeatureLimitExternals: intersight.HyperflexAppCatalogFeatureLimitExternalArray{
    		&intersight.HyperflexAppCatalogFeatureLimitExternalArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	FeatureLimitInternals: intersight.HyperflexAppCatalogFeatureLimitInternalArray{
    		&intersight.HyperflexAppCatalogFeatureLimitInternalArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	HxdpVersions: intersight.HyperflexAppCatalogHxdpVersionArray{
    		&intersight.HyperflexAppCatalogHxdpVersionArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	HyperflexAppCatalogId: pulumi.String("string"),
    	HyperflexCapabilityInfos: intersight.HyperflexAppCatalogHyperflexCapabilityInfoArray{
    		&intersight.HyperflexAppCatalogHyperflexCapabilityInfoArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	HyperflexSoftwareCompatibilityInfos: intersight.HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArray{
    		&intersight.HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ModTime:    pulumi.String("string"),
    	Moid:       pulumi.String("string"),
    	NrVersion:  pulumi.String("string"),
    	ObjectType: pulumi.String("string"),
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.HyperflexAppCatalogParentArray{
    		&intersight.HyperflexAppCatalogParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.HyperflexAppCatalogPermissionResourceArray{
    		&intersight.HyperflexAppCatalogPermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ServerFirmwareVersions: intersight.HyperflexAppCatalogServerFirmwareVersionArray{
    		&intersight.HyperflexAppCatalogServerFirmwareVersionArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ServerModels: intersight.HyperflexAppCatalogServerModelArray{
    		&intersight.HyperflexAppCatalogServerModelArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SharedScope: pulumi.String("string"),
    	SoftwareDistributions: intersight.HyperflexAppCatalogSoftwareDistributionArray{
    		&intersight.HyperflexAppCatalogSoftwareDistributionArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Tags: intersight.HyperflexAppCatalogTagArray{
    		&intersight.HyperflexAppCatalogTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	VersionContexts: intersight.HyperflexAppCatalogVersionContextArray{
    		&intersight.HyperflexAppCatalogVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.HyperflexAppCatalogVersionContextInterestedMoArray{
    				&intersight.HyperflexAppCatalogVersionContextInterestedMoArgs{
    					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.HyperflexAppCatalogVersionContextRefMoArray{
    				&intersight.HyperflexAppCatalogVersionContextRefMoArgs{
    					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 hyperflexAppCatalogResource = new HyperflexAppCatalog("hyperflexAppCatalogResource", HyperflexAppCatalogArgs.builder()
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(HyperflexAppCatalogAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .classId("string")
        .createTime("string")
        .domainGroupMoid("string")
        .featureLimitExternals(HyperflexAppCatalogFeatureLimitExternalArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .featureLimitInternals(HyperflexAppCatalogFeatureLimitInternalArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .hxdpVersions(HyperflexAppCatalogHxdpVersionArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .hyperflexAppCatalogId("string")
        .hyperflexCapabilityInfos(HyperflexAppCatalogHyperflexCapabilityInfoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .hyperflexSoftwareCompatibilityInfos(HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .modTime("string")
        .moid("string")
        .nrVersion("string")
        .objectType("string")
        .owners("string")
        .parents(HyperflexAppCatalogParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(HyperflexAppCatalogPermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .serverFirmwareVersions(HyperflexAppCatalogServerFirmwareVersionArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .serverModels(HyperflexAppCatalogServerModelArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .sharedScope("string")
        .softwareDistributions(HyperflexAppCatalogSoftwareDistributionArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .tags(HyperflexAppCatalogTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .versionContexts(HyperflexAppCatalogVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(HyperflexAppCatalogVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(HyperflexAppCatalogVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .build());
    
    hyperflex_app_catalog_resource = intersight.HyperflexAppCatalog("hyperflexAppCatalogResource",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        class_id="string",
        create_time="string",
        domain_group_moid="string",
        feature_limit_externals=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        feature_limit_internals=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        hxdp_versions=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        hyperflex_app_catalog_id="string",
        hyperflex_capability_infos=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        hyperflex_software_compatibility_infos=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        mod_time="string",
        moid="string",
        nr_version="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",
        }],
        server_firmware_versions=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        server_models=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        shared_scope="string",
        software_distributions=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "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 hyperflexAppCatalogResource = new intersight.HyperflexAppCatalog("hyperflexAppCatalogResource", {
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        classId: "string",
        createTime: "string",
        domainGroupMoid: "string",
        featureLimitExternals: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        featureLimitInternals: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        hxdpVersions: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        hyperflexAppCatalogId: "string",
        hyperflexCapabilityInfos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        hyperflexSoftwareCompatibilityInfos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        modTime: "string",
        moid: "string",
        nrVersion: "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",
        }],
        serverFirmwareVersions: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        serverModels: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        sharedScope: "string",
        softwareDistributions: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "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:HyperflexAppCatalog
    properties:
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        classId: string
        createTime: string
        domainGroupMoid: string
        featureLimitExternals:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        featureLimitInternals:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        hxdpVersions:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        hyperflexAppCatalogId: string
        hyperflexCapabilityInfos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        hyperflexSoftwareCompatibilityInfos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        modTime: string
        moid: string
        nrVersion: 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
        serverFirmwareVersions:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        serverModels:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        sharedScope: string
        softwareDistributions:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        tags:
            - additionalProperties: string
              key: string
              value: 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
    

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

    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<HyperflexAppCatalogAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FeatureLimitExternals List<HyperflexAppCatalogFeatureLimitExternal>
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    FeatureLimitInternals List<HyperflexAppCatalogFeatureLimitInternal>
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    HxdpVersions List<HyperflexAppCatalogHxdpVersion>
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    HyperflexAppCatalogId string
    HyperflexCapabilityInfos List<HyperflexAppCatalogHyperflexCapabilityInfo>
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    HyperflexSoftwareCompatibilityInfos List<HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo>
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NrVersion string
    The catalog version used in HyperFlex cluster configuration service.
    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<HyperflexAppCatalogParent>
    (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<HyperflexAppCatalogPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ServerFirmwareVersions List<HyperflexAppCatalogServerFirmwareVersion>
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ServerModels List<HyperflexAppCatalogServerModel>
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    SoftwareDistributions List<HyperflexAppCatalogSoftwareDistribution>
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    Tags List<HyperflexAppCatalogTag>
    This complex property has following sub-properties:
    VersionContexts List<HyperflexAppCatalogVersionContext>
    (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 []HyperflexAppCatalogAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FeatureLimitExternals []HyperflexAppCatalogFeatureLimitExternalArgs
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    FeatureLimitInternals []HyperflexAppCatalogFeatureLimitInternalArgs
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    HxdpVersions []HyperflexAppCatalogHxdpVersionArgs
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    HyperflexAppCatalogId string
    HyperflexCapabilityInfos []HyperflexAppCatalogHyperflexCapabilityInfoArgs
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    HyperflexSoftwareCompatibilityInfos []HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NrVersion string
    The catalog version used in HyperFlex cluster configuration service.
    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 []HyperflexAppCatalogParentArgs
    (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 []HyperflexAppCatalogPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ServerFirmwareVersions []HyperflexAppCatalogServerFirmwareVersionArgs
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ServerModels []HyperflexAppCatalogServerModelArgs
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    SoftwareDistributions []HyperflexAppCatalogSoftwareDistributionArgs
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    Tags []HyperflexAppCatalogTagArgs
    This complex property has following sub-properties:
    VersionContexts []HyperflexAppCatalogVersionContextArgs
    (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<HyperflexAppCatalogAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    featureLimitExternals List<HyperflexAppCatalogFeatureLimitExternal>
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    featureLimitInternals List<HyperflexAppCatalogFeatureLimitInternal>
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdpVersions List<HyperflexAppCatalogHxdpVersion>
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflexAppCatalogId String
    hyperflexCapabilityInfos List<HyperflexAppCatalogHyperflexCapabilityInfo>
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflexSoftwareCompatibilityInfos List<HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo>
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    nrVersion String
    The catalog version used in HyperFlex cluster configuration service.
    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<HyperflexAppCatalogParent>
    (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<HyperflexAppCatalogPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    serverFirmwareVersions List<HyperflexAppCatalogServerFirmwareVersion>
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    serverModels List<HyperflexAppCatalogServerModel>
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    softwareDistributions List<HyperflexAppCatalogSoftwareDistribution>
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags List<HyperflexAppCatalogTag>
    This complex property has following sub-properties:
    versionContexts List<HyperflexAppCatalogVersionContext>
    (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 HyperflexAppCatalogAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime string
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    featureLimitExternals HyperflexAppCatalogFeatureLimitExternal[]
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    featureLimitInternals HyperflexAppCatalogFeatureLimitInternal[]
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdpVersions HyperflexAppCatalogHxdpVersion[]
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflexAppCatalogId string
    hyperflexCapabilityInfos HyperflexAppCatalogHyperflexCapabilityInfo[]
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflexSoftwareCompatibilityInfos HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo[]
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    nrVersion string
    The catalog version used in HyperFlex cluster configuration service.
    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 HyperflexAppCatalogParent[]
    (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 HyperflexAppCatalogPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    serverFirmwareVersions HyperflexAppCatalogServerFirmwareVersion[]
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    serverModels HyperflexAppCatalogServerModel[]
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    softwareDistributions HyperflexAppCatalogSoftwareDistribution[]
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags HyperflexAppCatalogTag[]
    This complex property has following sub-properties:
    versionContexts HyperflexAppCatalogVersionContext[]
    (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[HyperflexAppCatalogAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    create_time str
    (ReadOnly) The time when this managed object was created.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    feature_limit_externals Sequence[HyperflexAppCatalogFeatureLimitExternalArgs]
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    feature_limit_internals Sequence[HyperflexAppCatalogFeatureLimitInternalArgs]
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdp_versions Sequence[HyperflexAppCatalogHxdpVersionArgs]
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflex_app_catalog_id str
    hyperflex_capability_infos Sequence[HyperflexAppCatalogHyperflexCapabilityInfoArgs]
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflex_software_compatibility_infos Sequence[HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs]
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    nr_version str
    The catalog version used in HyperFlex cluster configuration service.
    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[HyperflexAppCatalogParentArgs]
    (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[HyperflexAppCatalogPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    server_firmware_versions Sequence[HyperflexAppCatalogServerFirmwareVersionArgs]
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    server_models Sequence[HyperflexAppCatalogServerModelArgs]
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    software_distributions Sequence[HyperflexAppCatalogSoftwareDistributionArgs]
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags Sequence[HyperflexAppCatalogTagArgs]
    This complex property has following sub-properties:
    version_contexts Sequence[HyperflexAppCatalogVersionContextArgs]
    (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:
    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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    featureLimitExternals List<Property Map>
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    featureLimitInternals List<Property Map>
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdpVersions List<Property Map>
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflexAppCatalogId String
    hyperflexCapabilityInfos List<Property Map>
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflexSoftwareCompatibilityInfos List<Property Map>
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    nrVersion String
    The catalog version used in HyperFlex cluster configuration service.
    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:
    serverFirmwareVersions List<Property Map>
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    serverModels List<Property Map>
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    softwareDistributions List<Property Map>
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Outputs

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

    Get an existing HyperflexAppCatalog 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?: HyperflexAppCatalogState, opts?: CustomResourceOptions): HyperflexAppCatalog
    @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[HyperflexAppCatalogAncestorArgs]] = None,
            class_id: Optional[str] = None,
            create_time: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            feature_limit_externals: Optional[Sequence[HyperflexAppCatalogFeatureLimitExternalArgs]] = None,
            feature_limit_internals: Optional[Sequence[HyperflexAppCatalogFeatureLimitInternalArgs]] = None,
            hxdp_versions: Optional[Sequence[HyperflexAppCatalogHxdpVersionArgs]] = None,
            hyperflex_app_catalog_id: Optional[str] = None,
            hyperflex_capability_infos: Optional[Sequence[HyperflexAppCatalogHyperflexCapabilityInfoArgs]] = None,
            hyperflex_software_compatibility_infos: Optional[Sequence[HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs]] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            nr_version: Optional[str] = None,
            object_type: Optional[str] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[HyperflexAppCatalogParentArgs]] = None,
            permission_resources: Optional[Sequence[HyperflexAppCatalogPermissionResourceArgs]] = None,
            server_firmware_versions: Optional[Sequence[HyperflexAppCatalogServerFirmwareVersionArgs]] = None,
            server_models: Optional[Sequence[HyperflexAppCatalogServerModelArgs]] = None,
            shared_scope: Optional[str] = None,
            software_distributions: Optional[Sequence[HyperflexAppCatalogSoftwareDistributionArgs]] = None,
            tags: Optional[Sequence[HyperflexAppCatalogTagArgs]] = None,
            version_contexts: Optional[Sequence[HyperflexAppCatalogVersionContextArgs]] = None) -> HyperflexAppCatalog
    func GetHyperflexAppCatalog(ctx *Context, name string, id IDInput, state *HyperflexAppCatalogState, opts ...ResourceOption) (*HyperflexAppCatalog, error)
    public static HyperflexAppCatalog Get(string name, Input<string> id, HyperflexAppCatalogState? state, CustomResourceOptions? opts = null)
    public static HyperflexAppCatalog get(String name, Output<String> id, HyperflexAppCatalogState state, CustomResourceOptions options)
    resources:  _:    type: intersight:HyperflexAppCatalog    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<HyperflexAppCatalogAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FeatureLimitExternals List<HyperflexAppCatalogFeatureLimitExternal>
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    FeatureLimitInternals List<HyperflexAppCatalogFeatureLimitInternal>
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    HxdpVersions List<HyperflexAppCatalogHxdpVersion>
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    HyperflexAppCatalogId string
    HyperflexCapabilityInfos List<HyperflexAppCatalogHyperflexCapabilityInfo>
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    HyperflexSoftwareCompatibilityInfos List<HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo>
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NrVersion string
    The catalog version used in HyperFlex cluster configuration service.
    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<HyperflexAppCatalogParent>
    (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<HyperflexAppCatalogPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ServerFirmwareVersions List<HyperflexAppCatalogServerFirmwareVersion>
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ServerModels List<HyperflexAppCatalogServerModel>
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    SoftwareDistributions List<HyperflexAppCatalogSoftwareDistribution>
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    Tags List<HyperflexAppCatalogTag>
    This complex property has following sub-properties:
    VersionContexts List<HyperflexAppCatalogVersionContext>
    (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 []HyperflexAppCatalogAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ClassId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    FeatureLimitExternals []HyperflexAppCatalogFeatureLimitExternalArgs
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    FeatureLimitInternals []HyperflexAppCatalogFeatureLimitInternalArgs
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    HxdpVersions []HyperflexAppCatalogHxdpVersionArgs
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    HyperflexAppCatalogId string
    HyperflexCapabilityInfos []HyperflexAppCatalogHyperflexCapabilityInfoArgs
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    HyperflexSoftwareCompatibilityInfos []HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NrVersion string
    The catalog version used in HyperFlex cluster configuration service.
    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 []HyperflexAppCatalogParentArgs
    (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 []HyperflexAppCatalogPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    ServerFirmwareVersions []HyperflexAppCatalogServerFirmwareVersionArgs
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    ServerModels []HyperflexAppCatalogServerModelArgs
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    SoftwareDistributions []HyperflexAppCatalogSoftwareDistributionArgs
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    Tags []HyperflexAppCatalogTagArgs
    This complex property has following sub-properties:
    VersionContexts []HyperflexAppCatalogVersionContextArgs
    (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<HyperflexAppCatalogAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId String
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    featureLimitExternals List<HyperflexAppCatalogFeatureLimitExternal>
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    featureLimitInternals List<HyperflexAppCatalogFeatureLimitInternal>
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdpVersions List<HyperflexAppCatalogHxdpVersion>
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflexAppCatalogId String
    hyperflexCapabilityInfos List<HyperflexAppCatalogHyperflexCapabilityInfo>
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflexSoftwareCompatibilityInfos List<HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo>
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    nrVersion String
    The catalog version used in HyperFlex cluster configuration service.
    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<HyperflexAppCatalogParent>
    (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<HyperflexAppCatalogPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    serverFirmwareVersions List<HyperflexAppCatalogServerFirmwareVersion>
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    serverModels List<HyperflexAppCatalogServerModel>
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    softwareDistributions List<HyperflexAppCatalogSoftwareDistribution>
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags List<HyperflexAppCatalogTag>
    This complex property has following sub-properties:
    versionContexts List<HyperflexAppCatalogVersionContext>
    (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 HyperflexAppCatalogAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    classId string
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    createTime string
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    featureLimitExternals HyperflexAppCatalogFeatureLimitExternal[]
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    featureLimitInternals HyperflexAppCatalogFeatureLimitInternal[]
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdpVersions HyperflexAppCatalogHxdpVersion[]
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflexAppCatalogId string
    hyperflexCapabilityInfos HyperflexAppCatalogHyperflexCapabilityInfo[]
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflexSoftwareCompatibilityInfos HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo[]
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    nrVersion string
    The catalog version used in HyperFlex cluster configuration service.
    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 HyperflexAppCatalogParent[]
    (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 HyperflexAppCatalogPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    serverFirmwareVersions HyperflexAppCatalogServerFirmwareVersion[]
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    serverModels HyperflexAppCatalogServerModel[]
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    softwareDistributions HyperflexAppCatalogSoftwareDistribution[]
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags HyperflexAppCatalogTag[]
    This complex property has following sub-properties:
    versionContexts HyperflexAppCatalogVersionContext[]
    (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[HyperflexAppCatalogAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    class_id str
    The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
    create_time str
    (ReadOnly) The time when this managed object was created.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    feature_limit_externals Sequence[HyperflexAppCatalogFeatureLimitExternalArgs]
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    feature_limit_internals Sequence[HyperflexAppCatalogFeatureLimitInternalArgs]
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdp_versions Sequence[HyperflexAppCatalogHxdpVersionArgs]
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflex_app_catalog_id str
    hyperflex_capability_infos Sequence[HyperflexAppCatalogHyperflexCapabilityInfoArgs]
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflex_software_compatibility_infos Sequence[HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs]
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    nr_version str
    The catalog version used in HyperFlex cluster configuration service.
    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[HyperflexAppCatalogParentArgs]
    (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[HyperflexAppCatalogPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    server_firmware_versions Sequence[HyperflexAppCatalogServerFirmwareVersionArgs]
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    server_models Sequence[HyperflexAppCatalogServerModelArgs]
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    software_distributions Sequence[HyperflexAppCatalogSoftwareDistributionArgs]
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags Sequence[HyperflexAppCatalogTagArgs]
    This complex property has following sub-properties:
    version_contexts Sequence[HyperflexAppCatalogVersionContextArgs]
    (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:
    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.
    createTime String
    (ReadOnly) The time when this managed object was created.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    featureLimitExternals List<Property Map>
    A reference to a hyperflexFeatureLimitExternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    featureLimitInternals List<Property Map>
    A reference to a hyperflexFeatureLimitInternal resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    hxdpVersions List<Property Map>
    An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
    hyperflexAppCatalogId String
    hyperflexCapabilityInfos List<Property Map>
    An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
    hyperflexSoftwareCompatibilityInfos List<Property Map>
    An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    nrVersion String
    The catalog version used in HyperFlex cluster configuration service.
    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:
    serverFirmwareVersions List<Property Map>
    A reference to a hyperflexServerFirmwareVersion resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    serverModels List<Property Map>
    A reference to a hyperflexServerModel resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    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.
    softwareDistributions List<Property Map>
    An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Supporting Types

    HyperflexAppCatalogAncestor, HyperflexAppCatalogAncestorArgs

    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'.

    HyperflexAppCatalogFeatureLimitExternal, HyperflexAppCatalogFeatureLimitExternalArgs

    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'.

    HyperflexAppCatalogFeatureLimitInternal, HyperflexAppCatalogFeatureLimitInternalArgs

    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'.

    HyperflexAppCatalogHxdpVersion, HyperflexAppCatalogHxdpVersionArgs

    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'.

    HyperflexAppCatalogHyperflexCapabilityInfo, HyperflexAppCatalogHyperflexCapabilityInfoArgs

    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'.

    HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo, HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs

    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'.

    HyperflexAppCatalogParent, HyperflexAppCatalogParentArgs

    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'.

    HyperflexAppCatalogPermissionResource, HyperflexAppCatalogPermissionResourceArgs

    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'.

    HyperflexAppCatalogServerFirmwareVersion, HyperflexAppCatalogServerFirmwareVersionArgs

    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'.

    HyperflexAppCatalogServerModel, HyperflexAppCatalogServerModelArgs

    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'.

    HyperflexAppCatalogSoftwareDistribution, HyperflexAppCatalogSoftwareDistributionArgs

    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'.

    HyperflexAppCatalogTag, HyperflexAppCatalogTagArgs

    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.

    HyperflexAppCatalogVersionContext, HyperflexAppCatalogVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<HyperflexAppCatalogVersionContextInterestedMo>
    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<HyperflexAppCatalogVersionContextRefMo>
    (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 []HyperflexAppCatalogVersionContextInterestedMo
    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 []HyperflexAppCatalogVersionContextRefMo
    (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<HyperflexAppCatalogVersionContextInterestedMo>
    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<HyperflexAppCatalogVersionContextRefMo>
    (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 HyperflexAppCatalogVersionContextInterestedMo[]
    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 HyperflexAppCatalogVersionContextRefMo[]
    (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[HyperflexAppCatalogVersionContextInterestedMo]
    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[HyperflexAppCatalogVersionContextRefMo]
    (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.

    HyperflexAppCatalogVersionContextInterestedMo, HyperflexAppCatalogVersionContextInterestedMoArgs

    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'.

    HyperflexAppCatalogVersionContextRefMo, HyperflexAppCatalogVersionContextRefMoArgs

    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_app_catalog can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/hyperflexAppCatalog:HyperflexAppCatalog 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