intersight.HyperflexAppCatalog
Explore with Pulumi AI
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:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Hyperflex
App Catalog Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Feature
Limit List<HyperflexExternals App Catalog Feature Limit External> - 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 List<HyperflexInternals App Catalog Feature Limit Internal> - 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 List<HyperflexApp Catalog Hxdp Version> - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- Hyperflex
App stringCatalog Id - Hyperflex
Capability List<HyperflexInfos App Catalog Hyperflex Capability Info> - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- Hyperflex
Software List<HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info> - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Nr
Version string - The catalog version used in HyperFlex cluster configuration service.
- Object
Type 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<Hyperflex
App Catalog Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<HyperflexApp Catalog Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Server
Firmware List<HyperflexVersions App Catalog Server Firmware Version> - 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 List<HyperflexApp Catalog Server Model> - 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:
- 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.
- Software
Distributions List<HyperflexApp Catalog Software Distribution> - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- List<Hyperflex
App Catalog Tag> - This complex property has following sub-properties:
- Version
Contexts List<HyperflexApp Catalog Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Hyperflex
App Catalog Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Feature
Limit []HyperflexExternals App Catalog Feature Limit External Args - 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 []HyperflexInternals App Catalog Feature Limit Internal Args - 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 []HyperflexApp Catalog Hxdp Version Args - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- Hyperflex
App stringCatalog Id - Hyperflex
Capability []HyperflexInfos App Catalog Hyperflex Capability Info Args - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- Hyperflex
Software []HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info Args - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Nr
Version string - The catalog version used in HyperFlex cluster configuration service.
- Object
Type 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
[]Hyperflex
App Catalog Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []HyperflexApp Catalog Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Server
Firmware []HyperflexVersions App Catalog Server Firmware Version Args - 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 []HyperflexApp Catalog Server Model Args - 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:
- 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.
- Software
Distributions []HyperflexApp Catalog Software Distribution Args - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- []Hyperflex
App Catalog Tag Args - This complex property has following sub-properties:
- Version
Contexts []HyperflexApp Catalog Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Hyperflex
App Catalog Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature
Limit List<HyperflexExternals App Catalog Feature Limit External> - 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 List<HyperflexInternals App Catalog Feature Limit Internal> - 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 List<HyperflexApp Catalog Hxdp Version> - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex
App StringCatalog Id - hyperflex
Capability List<HyperflexInfos App Catalog Hyperflex Capability Info> - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex
Software List<HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info> - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- nr
Version String - The catalog version used in HyperFlex cluster configuration service.
- object
Type 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<Hyperflex
App Catalog Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<HyperflexApp Catalog Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server
Firmware List<HyperflexVersions App Catalog Server Firmware Version> - 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 List<HyperflexApp Catalog Server Model> - 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:
- 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.
- software
Distributions List<HyperflexApp Catalog Software Distribution> - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- List<Hyperflex
App Catalog Tag> - This complex property has following sub-properties:
- version
Contexts List<HyperflexApp Catalog Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Hyperflex
App Catalog Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature
Limit HyperflexExternals App Catalog Feature Limit External[] - 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 HyperflexInternals App Catalog Feature Limit Internal[] - 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 HyperflexApp Catalog Hxdp Version[] - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex
App stringCatalog Id - hyperflex
Capability HyperflexInfos App Catalog Hyperflex Capability Info[] - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex
Software HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info[] - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- nr
Version string - The catalog version used in HyperFlex cluster configuration service.
- object
Type 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
Hyperflex
App Catalog Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources HyperflexApp Catalog Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server
Firmware HyperflexVersions App Catalog Server Firmware Version[] - 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 HyperflexApp Catalog Server Model[] - 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:
- 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.
- software
Distributions HyperflexApp Catalog Software Distribution[] - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- Hyperflex
App Catalog Tag[] - This complex property has following sub-properties:
- version
Contexts HyperflexApp Catalog Version Context[] - (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[Hyperflex
App Catalog Ancestor Args] - (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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature_
limit_ Sequence[Hyperflexexternals App Catalog Feature Limit External Args] - 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_ Sequence[Hyperflexinternals App Catalog Feature Limit Internal Args] - 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[HyperflexApp Catalog Hxdp Version Args] - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex_
app_ strcatalog_ id - hyperflex_
capability_ Sequence[Hyperflexinfos App Catalog Hyperflex Capability Info Args] - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex_
software_ Sequence[Hyperflexcompatibility_ infos App Catalog Hyperflex Software Compatibility Info Args] - 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[Hyperflex
App Catalog Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[HyperflexApp Catalog Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server_
firmware_ Sequence[Hyperflexversions App Catalog Server Firmware Version Args] - 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[HyperflexApp Catalog Server Model Args] - 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:
- 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[HyperflexApp Catalog Software Distribution Args] - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- Sequence[Hyperflex
App Catalog Tag Args] - This complex property has following sub-properties:
- version_
contexts Sequence[HyperflexApp Catalog Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature
Limit List<Property Map>Externals - 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 List<Property Map>Internals - 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 List<Property Map> - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex
App StringCatalog Id - hyperflex
Capability List<Property Map>Infos - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex
Software List<Property Map>Compatibility Infos - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- nr
Version String - The catalog version used in HyperFlex cluster configuration service.
- object
Type 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server
Firmware List<Property Map>Versions - 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 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:
- 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.
- software
Distributions List<Property Map> - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- List<Property Map>
- This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
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.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Hyperflex
App Catalog Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Feature
Limit List<HyperflexExternals App Catalog Feature Limit External> - 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 List<HyperflexInternals App Catalog Feature Limit Internal> - 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 List<HyperflexApp Catalog Hxdp Version> - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- Hyperflex
App stringCatalog Id - Hyperflex
Capability List<HyperflexInfos App Catalog Hyperflex Capability Info> - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- Hyperflex
Software List<HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info> - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Nr
Version string - The catalog version used in HyperFlex cluster configuration service.
- Object
Type 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<Hyperflex
App Catalog Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<HyperflexApp Catalog Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Server
Firmware List<HyperflexVersions App Catalog Server Firmware Version> - 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 List<HyperflexApp Catalog Server Model> - 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:
- 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.
- Software
Distributions List<HyperflexApp Catalog Software Distribution> - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- List<Hyperflex
App Catalog Tag> - This complex property has following sub-properties:
- Version
Contexts List<HyperflexApp Catalog Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Hyperflex
App Catalog Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Feature
Limit []HyperflexExternals App Catalog Feature Limit External Args - 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 []HyperflexInternals App Catalog Feature Limit Internal Args - 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 []HyperflexApp Catalog Hxdp Version Args - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- Hyperflex
App stringCatalog Id - Hyperflex
Capability []HyperflexInfos App Catalog Hyperflex Capability Info Args - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- Hyperflex
Software []HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info Args - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Nr
Version string - The catalog version used in HyperFlex cluster configuration service.
- Object
Type 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
[]Hyperflex
App Catalog Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []HyperflexApp Catalog Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Server
Firmware []HyperflexVersions App Catalog Server Firmware Version Args - 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 []HyperflexApp Catalog Server Model Args - 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:
- 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.
- Software
Distributions []HyperflexApp Catalog Software Distribution Args - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- []Hyperflex
App Catalog Tag Args - This complex property has following sub-properties:
- Version
Contexts []HyperflexApp Catalog Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Hyperflex
App Catalog Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature
Limit List<HyperflexExternals App Catalog Feature Limit External> - 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 List<HyperflexInternals App Catalog Feature Limit Internal> - 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 List<HyperflexApp Catalog Hxdp Version> - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex
App StringCatalog Id - hyperflex
Capability List<HyperflexInfos App Catalog Hyperflex Capability Info> - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex
Software List<HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info> - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- nr
Version String - The catalog version used in HyperFlex cluster configuration service.
- object
Type 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<Hyperflex
App Catalog Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<HyperflexApp Catalog Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server
Firmware List<HyperflexVersions App Catalog Server Firmware Version> - 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 List<HyperflexApp Catalog Server Model> - 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:
- 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.
- software
Distributions List<HyperflexApp Catalog Software Distribution> - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- List<Hyperflex
App Catalog Tag> - This complex property has following sub-properties:
- version
Contexts List<HyperflexApp Catalog Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Hyperflex
App Catalog Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature
Limit HyperflexExternals App Catalog Feature Limit External[] - 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 HyperflexInternals App Catalog Feature Limit Internal[] - 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 HyperflexApp Catalog Hxdp Version[] - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex
App stringCatalog Id - hyperflex
Capability HyperflexInfos App Catalog Hyperflex Capability Info[] - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex
Software HyperflexCompatibility Infos App Catalog Hyperflex Software Compatibility Info[] - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- nr
Version string - The catalog version used in HyperFlex cluster configuration service.
- object
Type 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
Hyperflex
App Catalog Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources HyperflexApp Catalog Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server
Firmware HyperflexVersions App Catalog Server Firmware Version[] - 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 HyperflexApp Catalog Server Model[] - 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:
- 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.
- software
Distributions HyperflexApp Catalog Software Distribution[] - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- Hyperflex
App Catalog Tag[] - This complex property has following sub-properties:
- version
Contexts HyperflexApp Catalog Version Context[] - (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[Hyperflex
App Catalog Ancestor Args] - (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_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature_
limit_ Sequence[Hyperflexexternals App Catalog Feature Limit External Args] - 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_ Sequence[Hyperflexinternals App Catalog Feature Limit Internal Args] - 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[HyperflexApp Catalog Hxdp Version Args] - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex_
app_ strcatalog_ id - hyperflex_
capability_ Sequence[Hyperflexinfos App Catalog Hyperflex Capability Info Args] - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex_
software_ Sequence[Hyperflexcompatibility_ infos App Catalog Hyperflex Software Compatibility Info Args] - 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[Hyperflex
App Catalog Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[HyperflexApp Catalog Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server_
firmware_ Sequence[Hyperflexversions App Catalog Server Firmware Version Args] - 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[HyperflexApp Catalog Server Model Args] - 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:
- 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[HyperflexApp Catalog Software Distribution Args] - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- Sequence[Hyperflex
App Catalog Tag Args] - This complex property has following sub-properties:
- version_
contexts Sequence[HyperflexApp Catalog Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- feature
Limit List<Property Map>Externals - 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 List<Property Map>Internals - 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 List<Property Map> - An array of relationships to hyperflexHxdpVersion resources. This complex property has following sub-properties:
- hyperflex
App StringCatalog Id - hyperflex
Capability List<Property Map>Infos - An array of relationships to hyperflexCapabilityInfo resources. This complex property has following sub-properties:
- hyperflex
Software List<Property Map>Compatibility Infos - An array of relationships to hclHyperflexSoftwareCompatibilityInfo resources. This complex property has following sub-properties:
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- nr
Version String - The catalog version used in HyperFlex cluster configuration service.
- object
Type 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- server
Firmware List<Property Map>Versions - 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 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:
- 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.
- software
Distributions List<Property Map> - An array of relationships to hyperflexSoftwareDistributionEntry resources. This complex property has following sub-properties:
- List<Property Map>
- This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
HyperflexAppCatalogAncestor, HyperflexAppCatalogAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogFeatureLimitExternal, HyperflexAppCatalogFeatureLimitExternalArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogFeatureLimitInternal, HyperflexAppCatalogFeatureLimitInternalArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogHxdpVersion, HyperflexAppCatalogHxdpVersionArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogHyperflexCapabilityInfo, HyperflexAppCatalogHyperflexCapabilityInfoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogHyperflexSoftwareCompatibilityInfo, HyperflexAppCatalogHyperflexSoftwareCompatibilityInfoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogParent, HyperflexAppCatalogParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogPermissionResource, HyperflexAppCatalogPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogServerFirmwareVersion, HyperflexAppCatalogServerFirmwareVersionArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogServerModel, HyperflexAppCatalogServerModelArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogSoftwareDistribution, HyperflexAppCatalogSoftwareDistributionArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogTag, HyperflexAppCatalogTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
HyperflexAppCatalogVersionContext, HyperflexAppCatalogVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<HyperflexApp Catalog Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<HyperflexApp Catalog Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []HyperflexApp Catalog Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []HyperflexApp Catalog Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<HyperflexApp Catalog Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<HyperflexApp Catalog Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos HyperflexApp Catalog Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos HyperflexApp Catalog Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[HyperflexApp Catalog Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[HyperflexApp Catalog Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
HyperflexAppCatalogVersionContextInterestedMo, HyperflexAppCatalogVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
HyperflexAppCatalogVersionContextRefMo, HyperflexAppCatalogVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_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.