1. Packages
  2. Intersight Provider
  3. API Docs
  4. SoftwareSolutionDistributable
intersight 1.0.63 published on Wednesday, Apr 16, 2025 by ciscodevnet

intersight.SoftwareSolutionDistributable

Explore with Pulumi AI

A solution image distributed by Cisco.

Usage Example

Resource Creation

import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";

const config = new pulumi.Config();
const release = config.require("release");
const catalog = config.require("catalog");
const softwareSolutionDistributable1 = new intersight.SoftwareSolutionDistributable("softwareSolutionDistributable1", {
    sha512sum: "<sha_512_checksum>",
    size: 7471044747,
    componentMetas: [{
        classId: "firmware.ComponentMeta",
        objectType: "firmware.ComponentMeta",
        componentLabel: "BIOS",
        isOobSupported: false,
    }],
    model: "",
    mdfid: "",
    releases: [{
        objectType: "softwarerepository.Release",
        moid: release,
    }],
    catalogs: [{
        objectType: "softwarerepository.Catalog",
        moid: catalog,
    }],
    vendor: "Cisco",
    distributableMetas: [{
        classId: "firmware.DistributableMeta",
        objectType: "firmware.DistributableMeta",
    }],
    supportedModels: ["HyperFlex Data Platform"],
    subType: "osimage",
    solutionName: "IKS",
});
Copy
import pulumi
import pulumi_intersight as intersight

config = pulumi.Config()
release = config.require("release")
catalog = config.require("catalog")
software_solution_distributable1 = intersight.SoftwareSolutionDistributable("softwareSolutionDistributable1",
    sha512sum="<sha_512_checksum>",
    size=7471044747,
    component_metas=[{
        "class_id": "firmware.ComponentMeta",
        "object_type": "firmware.ComponentMeta",
        "component_label": "BIOS",
        "is_oob_supported": False,
    }],
    model="",
    mdfid="",
    releases=[{
        "object_type": "softwarerepository.Release",
        "moid": release,
    }],
    catalogs=[{
        "object_type": "softwarerepository.Catalog",
        "moid": catalog,
    }],
    vendor="Cisco",
    distributable_metas=[{
        "class_id": "firmware.DistributableMeta",
        "object_type": "firmware.DistributableMeta",
    }],
    supported_models=["HyperFlex Data Platform"],
    sub_type="osimage",
    solution_name="IKS")
Copy
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, "")
		release := cfg.Require("release")
		catalog := cfg.Require("catalog")
		_, err := intersight.NewSoftwareSolutionDistributable(ctx, "softwareSolutionDistributable1", &intersight.SoftwareSolutionDistributableArgs{
			Sha512sum: pulumi.String("<sha_512_checksum>"),
			Size:      pulumi.Float64(7471044747),
			ComponentMetas: intersight.SoftwareSolutionDistributableComponentMetaArray{
				&intersight.SoftwareSolutionDistributableComponentMetaArgs{
					ClassId:        pulumi.String("firmware.ComponentMeta"),
					ObjectType:     pulumi.String("firmware.ComponentMeta"),
					ComponentLabel: pulumi.String("BIOS"),
					IsOobSupported: pulumi.Bool(false),
				},
			},
			Model: pulumi.String(""),
			Mdfid: pulumi.String(""),
			Releases: intersight.SoftwareSolutionDistributableReleaseArray{
				&intersight.SoftwareSolutionDistributableReleaseArgs{
					ObjectType: pulumi.String("softwarerepository.Release"),
					Moid:       pulumi.String(release),
				},
			},
			Catalogs: intersight.SoftwareSolutionDistributableCatalogArray{
				&intersight.SoftwareSolutionDistributableCatalogArgs{
					ObjectType: pulumi.String("softwarerepository.Catalog"),
					Moid:       pulumi.String(catalog),
				},
			},
			Vendor: pulumi.String("Cisco"),
			DistributableMetas: intersight.SoftwareSolutionDistributableDistributableMetaArray{
				&intersight.SoftwareSolutionDistributableDistributableMetaArgs{
					ClassId:    pulumi.String("firmware.DistributableMeta"),
					ObjectType: pulumi.String("firmware.DistributableMeta"),
				},
			},
			SupportedModels: pulumi.StringArray{
				pulumi.String("HyperFlex Data Platform"),
			},
			SubType:      pulumi.String("osimage"),
			SolutionName: pulumi.String("IKS"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var release = config.Require("release");
    var catalog = config.Require("catalog");
    var softwareSolutionDistributable1 = new Intersight.SoftwareSolutionDistributable("softwareSolutionDistributable1", new()
    {
        Sha512sum = "<sha_512_checksum>",
        Size = 7471044747,
        ComponentMetas = new[]
        {
            new Intersight.Inputs.SoftwareSolutionDistributableComponentMetaArgs
            {
                ClassId = "firmware.ComponentMeta",
                ObjectType = "firmware.ComponentMeta",
                ComponentLabel = "BIOS",
                IsOobSupported = false,
            },
        },
        Model = "",
        Mdfid = "",
        Releases = new[]
        {
            new Intersight.Inputs.SoftwareSolutionDistributableReleaseArgs
            {
                ObjectType = "softwarerepository.Release",
                Moid = release,
            },
        },
        Catalogs = new[]
        {
            new Intersight.Inputs.SoftwareSolutionDistributableCatalogArgs
            {
                ObjectType = "softwarerepository.Catalog",
                Moid = catalog,
            },
        },
        Vendor = "Cisco",
        DistributableMetas = new[]
        {
            new Intersight.Inputs.SoftwareSolutionDistributableDistributableMetaArgs
            {
                ClassId = "firmware.DistributableMeta",
                ObjectType = "firmware.DistributableMeta",
            },
        },
        SupportedModels = new[]
        {
            "HyperFlex Data Platform",
        },
        SubType = "osimage",
        SolutionName = "IKS",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.SoftwareSolutionDistributable;
import com.pulumi.intersight.SoftwareSolutionDistributableArgs;
import com.pulumi.intersight.inputs.SoftwareSolutionDistributableComponentMetaArgs;
import com.pulumi.intersight.inputs.SoftwareSolutionDistributableReleaseArgs;
import com.pulumi.intersight.inputs.SoftwareSolutionDistributableCatalogArgs;
import com.pulumi.intersight.inputs.SoftwareSolutionDistributableDistributableMetaArgs;
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 release = config.get("release");
        final var catalog = config.get("catalog");
        var softwareSolutionDistributable1 = new SoftwareSolutionDistributable("softwareSolutionDistributable1", SoftwareSolutionDistributableArgs.builder()
            .sha512sum("<sha_512_checksum>")
            .size(7471044747)
            .componentMetas(SoftwareSolutionDistributableComponentMetaArgs.builder()
                .classId("firmware.ComponentMeta")
                .objectType("firmware.ComponentMeta")
                .componentLabel("BIOS")
                .isOobSupported(false)
                .build())
            .model("")
            .mdfid("")
            .releases(SoftwareSolutionDistributableReleaseArgs.builder()
                .objectType("softwarerepository.Release")
                .moid(release)
                .build())
            .catalogs(SoftwareSolutionDistributableCatalogArgs.builder()
                .objectType("softwarerepository.Catalog")
                .moid(catalog)
                .build())
            .vendor("Cisco")
            .distributableMetas(SoftwareSolutionDistributableDistributableMetaArgs.builder()
                .classId("firmware.DistributableMeta")
                .objectType("firmware.DistributableMeta")
                .build())
            .supportedModels("HyperFlex Data Platform")
            .subType("osimage")
            .solutionName("IKS")
            .build());

    }
}
Copy
configuration:
  release:
    type: string
  catalog:
    type: string
resources:
  softwareSolutionDistributable1:
    type: intersight:SoftwareSolutionDistributable
    properties:
      sha512sum: <sha_512_checksum>
      size: 7.471044747e+09
      componentMetas:
        - classId: firmware.ComponentMeta
          objectType: firmware.ComponentMeta
          componentLabel: BIOS
          isOobSupported: false
      model: ""
      mdfid: ""
      releases:
        - objectType: softwarerepository.Release
          moid: ${release}
      catalogs:
        - objectType: softwarerepository.Catalog
          moid: ${catalog}
      vendor: Cisco
      distributableMetas:
        - classId: firmware.DistributableMeta
          objectType: firmware.DistributableMeta
      supportedModels:
        - HyperFlex Data Platform
      subType: osimage
      solutionName: IKS
Copy

Create SoftwareSolutionDistributable Resource

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

Constructor syntax

new SoftwareSolutionDistributable(name: string, args?: SoftwareSolutionDistributableArgs, opts?: CustomResourceOptions);
@overload
def SoftwareSolutionDistributable(resource_name: str,
                                  args: Optional[SoftwareSolutionDistributableArgs] = None,
                                  opts: Optional[ResourceOptions] = None)

@overload
def SoftwareSolutionDistributable(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  account_moid: Optional[str] = None,
                                  additional_properties: Optional[str] = None,
                                  ancestors: Optional[Sequence[SoftwareSolutionDistributableAncestorArgs]] = None,
                                  bundle_type: Optional[str] = None,
                                  catalogs: Optional[Sequence[SoftwareSolutionDistributableCatalogArgs]] = None,
                                  class_id: Optional[str] = None,
                                  component_metas: Optional[Sequence[SoftwareSolutionDistributableComponentMetaArgs]] = None,
                                  create_time: Optional[str] = None,
                                  description: Optional[str] = None,
                                  distributable_metas: Optional[Sequence[SoftwareSolutionDistributableDistributableMetaArgs]] = None,
                                  domain_group_moid: Optional[str] = None,
                                  download_count: Optional[float] = None,
                                  feature_source: Optional[str] = None,
                                  file_path: Optional[str] = None,
                                  guid: Optional[str] = None,
                                  image_type: Optional[str] = None,
                                  import_action: Optional[str] = None,
                                  import_state: Optional[str] = None,
                                  imported_time: Optional[str] = None,
                                  last_access_time: Optional[str] = None,
                                  md5e_tag: Optional[str] = None,
                                  md5sum: Optional[str] = None,
                                  mdfid: Optional[str] = None,
                                  mod_time: Optional[str] = None,
                                  model: Optional[str] = None,
                                  moid: Optional[str] = None,
                                  name: Optional[str] = None,
                                  nr_sources: Optional[Sequence[SoftwareSolutionDistributableNrSourceArgs]] = None,
                                  nr_version: Optional[str] = None,
                                  object_type: Optional[str] = None,
                                  owners: Optional[Sequence[str]] = None,
                                  parents: Optional[Sequence[SoftwareSolutionDistributableParentArgs]] = None,
                                  permission_resources: Optional[Sequence[SoftwareSolutionDistributablePermissionResourceArgs]] = None,
                                  platform_type: Optional[str] = None,
                                  recommended_build: Optional[str] = None,
                                  release_date: Optional[str] = None,
                                  release_notes_url: Optional[str] = None,
                                  releases: Optional[Sequence[SoftwareSolutionDistributableReleaseArgs]] = None,
                                  sha512sum: Optional[str] = None,
                                  shared_scope: Optional[str] = None,
                                  size: Optional[float] = None,
                                  software_advisory_url: Optional[str] = None,
                                  software_solution_distributable_id: Optional[str] = None,
                                  software_type_id: Optional[str] = None,
                                  solution_name: Optional[str] = None,
                                  sub_type: Optional[str] = None,
                                  supported_models: Optional[Sequence[str]] = None,
                                  tags: Optional[Sequence[SoftwareSolutionDistributableTagArgs]] = None,
                                  vendor: Optional[str] = None,
                                  version_contexts: Optional[Sequence[SoftwareSolutionDistributableVersionContextArgs]] = None)
func NewSoftwareSolutionDistributable(ctx *Context, name string, args *SoftwareSolutionDistributableArgs, opts ...ResourceOption) (*SoftwareSolutionDistributable, error)
public SoftwareSolutionDistributable(string name, SoftwareSolutionDistributableArgs? args = null, CustomResourceOptions? opts = null)
public SoftwareSolutionDistributable(String name, SoftwareSolutionDistributableArgs args)
public SoftwareSolutionDistributable(String name, SoftwareSolutionDistributableArgs args, CustomResourceOptions options)
type: intersight:SoftwareSolutionDistributable
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args SoftwareSolutionDistributableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args SoftwareSolutionDistributableArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args SoftwareSolutionDistributableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args SoftwareSolutionDistributableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SoftwareSolutionDistributableArgs
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 softwareSolutionDistributableResource = new Intersight.SoftwareSolutionDistributable("softwareSolutionDistributableResource", new()
{
    AccountMoid = "string",
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    BundleType = "string",
    Catalogs = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableCatalogArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ClassId = "string",
    ComponentMetas = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableComponentMetaArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ComponentLabel = "string",
            ComponentType = "string",
            Description = "string",
            Disruption = "string",
            ImagePath = "string",
            IsOobSupported = false,
            Model = "string",
            ObjectType = "string",
            OobManageabilities = new[]
            {
                "string",
            },
            PackedVersion = "string",
            RedfishUrl = "string",
            Vendor = "string",
        },
    },
    CreateTime = "string",
    Description = "string",
    DistributableMetas = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableDistributableMetaArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    DomainGroupMoid = "string",
    DownloadCount = 0,
    FeatureSource = "string",
    FilePath = "string",
    Guid = "string",
    ImageType = "string",
    ImportAction = "string",
    ImportState = "string",
    ImportedTime = "string",
    LastAccessTime = "string",
    Md5eTag = "string",
    Md5sum = "string",
    Mdfid = "string",
    ModTime = "string",
    Model = "string",
    Moid = "string",
    Name = "string",
    NrSources = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableNrSourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
        },
    },
    NrVersion = "string",
    ObjectType = "string",
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributablePermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PlatformType = "string",
    RecommendedBuild = "string",
    ReleaseDate = "string",
    ReleaseNotesUrl = "string",
    Releases = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableReleaseArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Sha512sum = "string",
    SharedScope = "string",
    Size = 0,
    SoftwareAdvisoryUrl = "string",
    SoftwareSolutionDistributableId = "string",
    SoftwareTypeId = "string",
    SolutionName = "string",
    SubType = "string",
    SupportedModels = new[]
    {
        "string",
    },
    Tags = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    Vendor = "string",
    VersionContexts = new[]
    {
        new Intersight.Inputs.SoftwareSolutionDistributableVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.SoftwareSolutionDistributableVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.SoftwareSolutionDistributableVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
});
Copy
example, err := intersight.NewSoftwareSolutionDistributable(ctx, "softwareSolutionDistributableResource", &intersight.SoftwareSolutionDistributableArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: .SoftwareSolutionDistributableAncestorArray{
&.SoftwareSolutionDistributableAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
BundleType: pulumi.String("string"),
Catalogs: .SoftwareSolutionDistributableCatalogArray{
&.SoftwareSolutionDistributableCatalogArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
ComponentMetas: .SoftwareSolutionDistributableComponentMetaArray{
&.SoftwareSolutionDistributableComponentMetaArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ComponentLabel: pulumi.String("string"),
ComponentType: pulumi.String("string"),
Description: pulumi.String("string"),
Disruption: pulumi.String("string"),
ImagePath: pulumi.String("string"),
IsOobSupported: pulumi.Bool(false),
Model: pulumi.String("string"),
ObjectType: pulumi.String("string"),
OobManageabilities: pulumi.StringArray{
pulumi.String("string"),
},
PackedVersion: pulumi.String("string"),
RedfishUrl: pulumi.String("string"),
Vendor: pulumi.String("string"),
},
},
CreateTime: pulumi.String("string"),
Description: pulumi.String("string"),
DistributableMetas: .SoftwareSolutionDistributableDistributableMetaArray{
&.SoftwareSolutionDistributableDistributableMetaArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
DomainGroupMoid: pulumi.String("string"),
DownloadCount: pulumi.Float64(0),
FeatureSource: pulumi.String("string"),
FilePath: pulumi.String("string"),
Guid: pulumi.String("string"),
ImageType: pulumi.String("string"),
ImportAction: pulumi.String("string"),
ImportState: pulumi.String("string"),
ImportedTime: pulumi.String("string"),
LastAccessTime: pulumi.String("string"),
Md5eTag: pulumi.String("string"),
Md5sum: pulumi.String("string"),
Mdfid: pulumi.String("string"),
ModTime: pulumi.String("string"),
Model: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
NrSources: .SoftwareSolutionDistributableNrSourceArray{
&.SoftwareSolutionDistributableNrSourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: .SoftwareSolutionDistributableParentArray{
&.SoftwareSolutionDistributableParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: .SoftwareSolutionDistributablePermissionResourceArray{
&.SoftwareSolutionDistributablePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PlatformType: pulumi.String("string"),
RecommendedBuild: pulumi.String("string"),
ReleaseDate: pulumi.String("string"),
ReleaseNotesUrl: pulumi.String("string"),
Releases: .SoftwareSolutionDistributableReleaseArray{
&.SoftwareSolutionDistributableReleaseArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Sha512sum: pulumi.String("string"),
SharedScope: pulumi.String("string"),
Size: pulumi.Float64(0),
SoftwareAdvisoryUrl: pulumi.String("string"),
SoftwareSolutionDistributableId: pulumi.String("string"),
SoftwareTypeId: pulumi.String("string"),
SolutionName: pulumi.String("string"),
SubType: pulumi.String("string"),
SupportedModels: pulumi.StringArray{
pulumi.String("string"),
},
Tags: .SoftwareSolutionDistributableTagArray{
&.SoftwareSolutionDistributableTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Vendor: pulumi.String("string"),
VersionContexts: .SoftwareSolutionDistributableVersionContextArray{
&.SoftwareSolutionDistributableVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: .SoftwareSolutionDistributableVersionContextInterestedMoArray{
&.SoftwareSolutionDistributableVersionContextInterestedMoArgs{
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: .SoftwareSolutionDistributableVersionContextRefMoArray{
&.SoftwareSolutionDistributableVersionContextRefMoArgs{
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"),
},
},
})
Copy
var softwareSolutionDistributableResource = new SoftwareSolutionDistributable("softwareSolutionDistributableResource", SoftwareSolutionDistributableArgs.builder()
    .accountMoid("string")
    .additionalProperties("string")
    .ancestors(SoftwareSolutionDistributableAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .bundleType("string")
    .catalogs(SoftwareSolutionDistributableCatalogArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .classId("string")
    .componentMetas(SoftwareSolutionDistributableComponentMetaArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .componentLabel("string")
        .componentType("string")
        .description("string")
        .disruption("string")
        .imagePath("string")
        .isOobSupported(false)
        .model("string")
        .objectType("string")
        .oobManageabilities("string")
        .packedVersion("string")
        .redfishUrl("string")
        .vendor("string")
        .build())
    .createTime("string")
    .description("string")
    .distributableMetas(SoftwareSolutionDistributableDistributableMetaArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .domainGroupMoid("string")
    .downloadCount(0)
    .featureSource("string")
    .filePath("string")
    .guid("string")
    .imageType("string")
    .importAction("string")
    .importState("string")
    .importedTime("string")
    .lastAccessTime("string")
    .md5eTag("string")
    .md5sum("string")
    .mdfid("string")
    .modTime("string")
    .model("string")
    .moid("string")
    .name("string")
    .nrSources(SoftwareSolutionDistributableNrSourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .build())
    .nrVersion("string")
    .objectType("string")
    .owners("string")
    .parents(SoftwareSolutionDistributableParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(SoftwareSolutionDistributablePermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .platformType("string")
    .recommendedBuild("string")
    .releaseDate("string")
    .releaseNotesUrl("string")
    .releases(SoftwareSolutionDistributableReleaseArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .sha512sum("string")
    .sharedScope("string")
    .size(0)
    .softwareAdvisoryUrl("string")
    .softwareSolutionDistributableId("string")
    .softwareTypeId("string")
    .solutionName("string")
    .subType("string")
    .supportedModels("string")
    .tags(SoftwareSolutionDistributableTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .vendor("string")
    .versionContexts(SoftwareSolutionDistributableVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(SoftwareSolutionDistributableVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(SoftwareSolutionDistributableVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .build());
Copy
software_solution_distributable_resource = intersight.SoftwareSolutionDistributable("softwareSolutionDistributableResource",
    account_moid="string",
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    bundle_type="string",
    catalogs=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    class_id="string",
    component_metas=[{
        "additional_properties": "string",
        "class_id": "string",
        "component_label": "string",
        "component_type": "string",
        "description": "string",
        "disruption": "string",
        "image_path": "string",
        "is_oob_supported": False,
        "model": "string",
        "object_type": "string",
        "oob_manageabilities": ["string"],
        "packed_version": "string",
        "redfish_url": "string",
        "vendor": "string",
    }],
    create_time="string",
    description="string",
    distributable_metas=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    domain_group_moid="string",
    download_count=0,
    feature_source="string",
    file_path="string",
    guid="string",
    image_type="string",
    import_action="string",
    import_state="string",
    imported_time="string",
    last_access_time="string",
    md5e_tag="string",
    md5sum="string",
    mdfid="string",
    mod_time="string",
    model="string",
    moid="string",
    name="string",
    nr_sources=[{
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "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",
    }],
    platform_type="string",
    recommended_build="string",
    release_date="string",
    release_notes_url="string",
    releases=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    sha512sum="string",
    shared_scope="string",
    size=0,
    software_advisory_url="string",
    software_solution_distributable_id="string",
    software_type_id="string",
    solution_name="string",
    sub_type="string",
    supported_models=["string"],
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    vendor="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",
    }])
Copy
const softwareSolutionDistributableResource = new intersight.SoftwareSolutionDistributable("softwareSolutionDistributableResource", {
    accountMoid: "string",
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    bundleType: "string",
    catalogs: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    classId: "string",
    componentMetas: [{
        additionalProperties: "string",
        classId: "string",
        componentLabel: "string",
        componentType: "string",
        description: "string",
        disruption: "string",
        imagePath: "string",
        isOobSupported: false,
        model: "string",
        objectType: "string",
        oobManageabilities: ["string"],
        packedVersion: "string",
        redfishUrl: "string",
        vendor: "string",
    }],
    createTime: "string",
    description: "string",
    distributableMetas: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    domainGroupMoid: "string",
    downloadCount: 0,
    featureSource: "string",
    filePath: "string",
    guid: "string",
    imageType: "string",
    importAction: "string",
    importState: "string",
    importedTime: "string",
    lastAccessTime: "string",
    md5eTag: "string",
    md5sum: "string",
    mdfid: "string",
    modTime: "string",
    model: "string",
    moid: "string",
    name: "string",
    nrSources: [{
        additionalProperties: "string",
        classId: "string",
        objectType: "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",
    }],
    platformType: "string",
    recommendedBuild: "string",
    releaseDate: "string",
    releaseNotesUrl: "string",
    releases: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sha512sum: "string",
    sharedScope: "string",
    size: 0,
    softwareAdvisoryUrl: "string",
    softwareSolutionDistributableId: "string",
    softwareTypeId: "string",
    solutionName: "string",
    subType: "string",
    supportedModels: ["string"],
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    vendor: "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",
    }],
});
Copy
type: intersight:SoftwareSolutionDistributable
properties:
    accountMoid: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    bundleType: string
    catalogs:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    classId: string
    componentMetas:
        - additionalProperties: string
          classId: string
          componentLabel: string
          componentType: string
          description: string
          disruption: string
          imagePath: string
          isOobSupported: false
          model: string
          objectType: string
          oobManageabilities:
            - string
          packedVersion: string
          redfishUrl: string
          vendor: string
    createTime: string
    description: string
    distributableMetas:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    domainGroupMoid: string
    downloadCount: 0
    featureSource: string
    filePath: string
    guid: string
    imageType: string
    importAction: string
    importState: string
    importedTime: string
    lastAccessTime: string
    md5eTag: string
    md5sum: string
    mdfid: string
    modTime: string
    model: string
    moid: string
    name: string
    nrSources:
        - additionalProperties: string
          classId: string
          objectType: 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
    platformType: string
    recommendedBuild: string
    releaseDate: string
    releaseNotesUrl: string
    releases:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sha512sum: string
    sharedScope: string
    size: 0
    softwareAdvisoryUrl: string
    softwareSolutionDistributableId: string
    softwareTypeId: string
    solutionName: string
    subType: string
    supportedModels:
        - string
    tags:
        - additionalProperties: string
          key: string
          value: string
    vendor: 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
Copy

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

AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<SoftwareSolutionDistributableAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
BundleType string
(ReadOnly) The bundle type of the image, as published on cisco.com.
Catalogs List<SoftwareSolutionDistributableCatalog>
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ComponentMetas List<SoftwareSolutionDistributableComponentMeta>
This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
Description string
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
DistributableMetas List<SoftwareSolutionDistributableDistributableMeta>
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
DownloadCount double
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
FeatureSource string
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
FilePath string
(ReadOnly) The path of the file in S3/minio bucket.
Guid string
(ReadOnly) The unique identifier for an image in a Cisco repository.
ImageType string
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
ImportAction string
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
ImportState string
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
ImportedTime string
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
LastAccessTime string
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
Md5eTag string
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
Md5sum string
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
Mdfid string
The mdfid of the image provided by cisco.com.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Model string
The endpoint model for which this firmware image is applicable.
Moid string
The unique identifier of this Managed Object instance.
Name string
The name of the file. It is populated as part of the image import operation.
NrSources List<SoftwareSolutionDistributableNrSource>
Location of the file in an external repository. This complex property has following sub-properties:
NrVersion string
Vendor provided version for the file.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<SoftwareSolutionDistributableParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<SoftwareSolutionDistributablePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PlatformType string
(ReadOnly) The platform type of the image.
RecommendedBuild string
The build which is recommended by Cisco.
ReleaseDate string
(ReadOnly) The date on which the file was released or distributed by its vendor.
ReleaseNotesUrl string
The url for the release notes of this image.
Releases List<SoftwareSolutionDistributableRelease>
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Sha512sum string
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Size double
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SoftwareAdvisoryUrl string
The software advisory, if any, provided by the vendor for this file.
SoftwareSolutionDistributableId string
SoftwareTypeId string
(ReadOnly) The software type id provided by cisco.com.
SolutionName string
The name of the solution in which the image belongs.
SubType string
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
SupportedModels List<string>
(Array of schema.TypeString) -
Tags List<SoftwareSolutionDistributableTag>
This complex property has following sub-properties:
Vendor string
The vendor or publisher of this file.
VersionContexts List<SoftwareSolutionDistributableVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []SoftwareSolutionDistributableAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
BundleType string
(ReadOnly) The bundle type of the image, as published on cisco.com.
Catalogs []SoftwareSolutionDistributableCatalogArgs
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ComponentMetas []SoftwareSolutionDistributableComponentMetaArgs
This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
Description string
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
DistributableMetas []SoftwareSolutionDistributableDistributableMetaArgs
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
DownloadCount float64
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
FeatureSource string
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
FilePath string
(ReadOnly) The path of the file in S3/minio bucket.
Guid string
(ReadOnly) The unique identifier for an image in a Cisco repository.
ImageType string
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
ImportAction string
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
ImportState string
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
ImportedTime string
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
LastAccessTime string
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
Md5eTag string
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
Md5sum string
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
Mdfid string
The mdfid of the image provided by cisco.com.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Model string
The endpoint model for which this firmware image is applicable.
Moid string
The unique identifier of this Managed Object instance.
Name string
The name of the file. It is populated as part of the image import operation.
NrSources []SoftwareSolutionDistributableNrSourceArgs
Location of the file in an external repository. This complex property has following sub-properties:
NrVersion string
Vendor provided version for the file.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []SoftwareSolutionDistributableParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []SoftwareSolutionDistributablePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PlatformType string
(ReadOnly) The platform type of the image.
RecommendedBuild string
The build which is recommended by Cisco.
ReleaseDate string
(ReadOnly) The date on which the file was released or distributed by its vendor.
ReleaseNotesUrl string
The url for the release notes of this image.
Releases []SoftwareSolutionDistributableReleaseArgs
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Sha512sum string
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Size float64
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SoftwareAdvisoryUrl string
The software advisory, if any, provided by the vendor for this file.
SoftwareSolutionDistributableId string
SoftwareTypeId string
(ReadOnly) The software type id provided by cisco.com.
SolutionName string
The name of the solution in which the image belongs.
SubType string
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
SupportedModels []string
(Array of schema.TypeString) -
Tags []SoftwareSolutionDistributableTagArgs
This complex property has following sub-properties:
Vendor string
The vendor or publisher of this file.
VersionContexts []SoftwareSolutionDistributableVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<SoftwareSolutionDistributableAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundleType String
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs List<SoftwareSolutionDistributableCatalog>
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
componentMetas List<SoftwareSolutionDistributableComponentMeta>
This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
description String
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributableMetas List<SoftwareSolutionDistributableDistributableMeta>
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
downloadCount Double
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
featureSource String
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
filePath String
(ReadOnly) The path of the file in S3/minio bucket.
guid String
(ReadOnly) The unique identifier for an image in a Cisco repository.
imageType String
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
importAction String
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
importState String
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
importedTime String
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
lastAccessTime String
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5eTag String
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum String
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid String
The mdfid of the image provided by cisco.com.
modTime String
(ReadOnly) The time when this managed object was last modified.
model String
The endpoint model for which this firmware image is applicable.
moid String
The unique identifier of this Managed Object instance.
name String
The name of the file. It is populated as part of the image import operation.
nrSources List<SoftwareSolutionDistributableNrSource>
Location of the file in an external repository. This complex property has following sub-properties:
nrVersion String
Vendor provided version for the file.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<SoftwareSolutionDistributableParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<SoftwareSolutionDistributablePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platformType String
(ReadOnly) The platform type of the image.
recommendedBuild String
The build which is recommended by Cisco.
releaseDate String
(ReadOnly) The date on which the file was released or distributed by its vendor.
releaseNotesUrl String
The url for the release notes of this image.
releases List<SoftwareSolutionDistributableRelease>
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum String
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size Double
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
softwareAdvisoryUrl String
The software advisory, if any, provided by the vendor for this file.
softwareSolutionDistributableId String
softwareTypeId String
(ReadOnly) The software type id provided by cisco.com.
solutionName String
The name of the solution in which the image belongs.
subType String
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supportedModels List<String>
(Array of schema.TypeString) -
tags List<SoftwareSolutionDistributableTag>
This complex property has following sub-properties:
vendor String
The vendor or publisher of this file.
versionContexts List<SoftwareSolutionDistributableVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors SoftwareSolutionDistributableAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundleType string
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs SoftwareSolutionDistributableCatalog[]
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
componentMetas SoftwareSolutionDistributableComponentMeta[]
This complex property has following sub-properties:
createTime string
(ReadOnly) The time when this managed object was created.
description string
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributableMetas SoftwareSolutionDistributableDistributableMeta[]
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
downloadCount number
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
featureSource string
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
filePath string
(ReadOnly) The path of the file in S3/minio bucket.
guid string
(ReadOnly) The unique identifier for an image in a Cisco repository.
imageType string
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
importAction string
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
importState string
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
importedTime string
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
lastAccessTime string
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5eTag string
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum string
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid string
The mdfid of the image provided by cisco.com.
modTime string
(ReadOnly) The time when this managed object was last modified.
model string
The endpoint model for which this firmware image is applicable.
moid string
The unique identifier of this Managed Object instance.
name string
The name of the file. It is populated as part of the image import operation.
nrSources SoftwareSolutionDistributableNrSource[]
Location of the file in an external repository. This complex property has following sub-properties:
nrVersion string
Vendor provided version for the file.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents SoftwareSolutionDistributableParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources SoftwareSolutionDistributablePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platformType string
(ReadOnly) The platform type of the image.
recommendedBuild string
The build which is recommended by Cisco.
releaseDate string
(ReadOnly) The date on which the file was released or distributed by its vendor.
releaseNotesUrl string
The url for the release notes of this image.
releases SoftwareSolutionDistributableRelease[]
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum string
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size number
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
softwareAdvisoryUrl string
The software advisory, if any, provided by the vendor for this file.
softwareSolutionDistributableId string
softwareTypeId string
(ReadOnly) The software type id provided by cisco.com.
solutionName string
The name of the solution in which the image belongs.
subType string
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supportedModels string[]
(Array of schema.TypeString) -
tags SoftwareSolutionDistributableTag[]
This complex property has following sub-properties:
vendor string
The vendor or publisher of this file.
versionContexts SoftwareSolutionDistributableVersionContext[]
(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[SoftwareSolutionDistributableAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundle_type str
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs Sequence[SoftwareSolutionDistributableCatalogArgs]
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
component_metas Sequence[SoftwareSolutionDistributableComponentMetaArgs]
This complex property has following sub-properties:
create_time str
(ReadOnly) The time when this managed object was created.
description str
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributable_metas Sequence[SoftwareSolutionDistributableDistributableMetaArgs]
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
download_count float
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
feature_source str
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
file_path str
(ReadOnly) The path of the file in S3/minio bucket.
guid str
(ReadOnly) The unique identifier for an image in a Cisco repository.
image_type str
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
import_action str
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
import_state str
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
imported_time str
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
last_access_time str
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5e_tag str
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum str
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid str
The mdfid of the image provided by cisco.com.
mod_time str
(ReadOnly) The time when this managed object was last modified.
model str
The endpoint model for which this firmware image is applicable.
moid str
The unique identifier of this Managed Object instance.
name str
The name of the file. It is populated as part of the image import operation.
nr_sources Sequence[SoftwareSolutionDistributableNrSourceArgs]
Location of the file in an external repository. This complex property has following sub-properties:
nr_version str
Vendor provided version for the file.
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[SoftwareSolutionDistributableParentArgs]
(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[SoftwareSolutionDistributablePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platform_type str
(ReadOnly) The platform type of the image.
recommended_build str
The build which is recommended by Cisco.
release_date str
(ReadOnly) The date on which the file was released or distributed by its vendor.
release_notes_url str
The url for the release notes of this image.
releases Sequence[SoftwareSolutionDistributableReleaseArgs]
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum str
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size float
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
software_advisory_url str
The software advisory, if any, provided by the vendor for this file.
software_solution_distributable_id str
software_type_id str
(ReadOnly) The software type id provided by cisco.com.
solution_name str
The name of the solution in which the image belongs.
sub_type str
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supported_models Sequence[str]
(Array of schema.TypeString) -
tags Sequence[SoftwareSolutionDistributableTagArgs]
This complex property has following sub-properties:
vendor str
The vendor or publisher of this file.
version_contexts Sequence[SoftwareSolutionDistributableVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundleType String
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs List<Property Map>
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
componentMetas List<Property Map>
This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
description String
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributableMetas List<Property Map>
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
downloadCount Number
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
featureSource String
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
filePath String
(ReadOnly) The path of the file in S3/minio bucket.
guid String
(ReadOnly) The unique identifier for an image in a Cisco repository.
imageType String
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
importAction String
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
importState String
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
importedTime String
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
lastAccessTime String
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5eTag String
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum String
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid String
The mdfid of the image provided by cisco.com.
modTime String
(ReadOnly) The time when this managed object was last modified.
model String
The endpoint model for which this firmware image is applicable.
moid String
The unique identifier of this Managed Object instance.
name String
The name of the file. It is populated as part of the image import operation.
nrSources List<Property Map>
Location of the file in an external repository. This complex property has following sub-properties:
nrVersion String
Vendor provided version for the file.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platformType String
(ReadOnly) The platform type of the image.
recommendedBuild String
The build which is recommended by Cisco.
releaseDate String
(ReadOnly) The date on which the file was released or distributed by its vendor.
releaseNotesUrl String
The url for the release notes of this image.
releases List<Property Map>
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum String
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size Number
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
softwareAdvisoryUrl String
The software advisory, if any, provided by the vendor for this file.
softwareSolutionDistributableId String
softwareTypeId String
(ReadOnly) The software type id provided by cisco.com.
solutionName String
The name of the solution in which the image belongs.
subType String
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supportedModels List<String>
(Array of schema.TypeString) -
tags List<Property Map>
This complex property has following sub-properties:
vendor String
The vendor or publisher of this file.
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

Outputs

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

Get an existing SoftwareSolutionDistributable 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?: SoftwareSolutionDistributableState, opts?: CustomResourceOptions): SoftwareSolutionDistributable
@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[SoftwareSolutionDistributableAncestorArgs]] = None,
        bundle_type: Optional[str] = None,
        catalogs: Optional[Sequence[SoftwareSolutionDistributableCatalogArgs]] = None,
        class_id: Optional[str] = None,
        component_metas: Optional[Sequence[SoftwareSolutionDistributableComponentMetaArgs]] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        distributable_metas: Optional[Sequence[SoftwareSolutionDistributableDistributableMetaArgs]] = None,
        domain_group_moid: Optional[str] = None,
        download_count: Optional[float] = None,
        feature_source: Optional[str] = None,
        file_path: Optional[str] = None,
        guid: Optional[str] = None,
        image_type: Optional[str] = None,
        import_action: Optional[str] = None,
        import_state: Optional[str] = None,
        imported_time: Optional[str] = None,
        last_access_time: Optional[str] = None,
        md5e_tag: Optional[str] = None,
        md5sum: Optional[str] = None,
        mdfid: Optional[str] = None,
        mod_time: Optional[str] = None,
        model: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        nr_sources: Optional[Sequence[SoftwareSolutionDistributableNrSourceArgs]] = None,
        nr_version: Optional[str] = None,
        object_type: Optional[str] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[SoftwareSolutionDistributableParentArgs]] = None,
        permission_resources: Optional[Sequence[SoftwareSolutionDistributablePermissionResourceArgs]] = None,
        platform_type: Optional[str] = None,
        recommended_build: Optional[str] = None,
        release_date: Optional[str] = None,
        release_notes_url: Optional[str] = None,
        releases: Optional[Sequence[SoftwareSolutionDistributableReleaseArgs]] = None,
        sha512sum: Optional[str] = None,
        shared_scope: Optional[str] = None,
        size: Optional[float] = None,
        software_advisory_url: Optional[str] = None,
        software_solution_distributable_id: Optional[str] = None,
        software_type_id: Optional[str] = None,
        solution_name: Optional[str] = None,
        sub_type: Optional[str] = None,
        supported_models: Optional[Sequence[str]] = None,
        tags: Optional[Sequence[SoftwareSolutionDistributableTagArgs]] = None,
        vendor: Optional[str] = None,
        version_contexts: Optional[Sequence[SoftwareSolutionDistributableVersionContextArgs]] = None) -> SoftwareSolutionDistributable
func GetSoftwareSolutionDistributable(ctx *Context, name string, id IDInput, state *SoftwareSolutionDistributableState, opts ...ResourceOption) (*SoftwareSolutionDistributable, error)
public static SoftwareSolutionDistributable Get(string name, Input<string> id, SoftwareSolutionDistributableState? state, CustomResourceOptions? opts = null)
public static SoftwareSolutionDistributable get(String name, Output<String> id, SoftwareSolutionDistributableState state, CustomResourceOptions options)
resources:  _:    type: intersight:SoftwareSolutionDistributable    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<SoftwareSolutionDistributableAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
BundleType string
(ReadOnly) The bundle type of the image, as published on cisco.com.
Catalogs List<SoftwareSolutionDistributableCatalog>
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ComponentMetas List<SoftwareSolutionDistributableComponentMeta>
This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
Description string
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
DistributableMetas List<SoftwareSolutionDistributableDistributableMeta>
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
DownloadCount double
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
FeatureSource string
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
FilePath string
(ReadOnly) The path of the file in S3/minio bucket.
Guid string
(ReadOnly) The unique identifier for an image in a Cisco repository.
ImageType string
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
ImportAction string
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
ImportState string
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
ImportedTime string
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
LastAccessTime string
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
Md5eTag string
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
Md5sum string
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
Mdfid string
The mdfid of the image provided by cisco.com.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Model string
The endpoint model for which this firmware image is applicable.
Moid string
The unique identifier of this Managed Object instance.
Name string
The name of the file. It is populated as part of the image import operation.
NrSources List<SoftwareSolutionDistributableNrSource>
Location of the file in an external repository. This complex property has following sub-properties:
NrVersion string
Vendor provided version for the file.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<SoftwareSolutionDistributableParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<SoftwareSolutionDistributablePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PlatformType string
(ReadOnly) The platform type of the image.
RecommendedBuild string
The build which is recommended by Cisco.
ReleaseDate string
(ReadOnly) The date on which the file was released or distributed by its vendor.
ReleaseNotesUrl string
The url for the release notes of this image.
Releases List<SoftwareSolutionDistributableRelease>
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Sha512sum string
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Size double
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SoftwareAdvisoryUrl string
The software advisory, if any, provided by the vendor for this file.
SoftwareSolutionDistributableId string
SoftwareTypeId string
(ReadOnly) The software type id provided by cisco.com.
SolutionName string
The name of the solution in which the image belongs.
SubType string
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
SupportedModels List<string>
(Array of schema.TypeString) -
Tags List<SoftwareSolutionDistributableTag>
This complex property has following sub-properties:
Vendor string
The vendor or publisher of this file.
VersionContexts List<SoftwareSolutionDistributableVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []SoftwareSolutionDistributableAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
BundleType string
(ReadOnly) The bundle type of the image, as published on cisco.com.
Catalogs []SoftwareSolutionDistributableCatalogArgs
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
ComponentMetas []SoftwareSolutionDistributableComponentMetaArgs
This complex property has following sub-properties:
CreateTime string
(ReadOnly) The time when this managed object was created.
Description string
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
DistributableMetas []SoftwareSolutionDistributableDistributableMetaArgs
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
DownloadCount float64
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
FeatureSource string
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
FilePath string
(ReadOnly) The path of the file in S3/minio bucket.
Guid string
(ReadOnly) The unique identifier for an image in a Cisco repository.
ImageType string
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
ImportAction string
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
ImportState string
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
ImportedTime string
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
LastAccessTime string
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
Md5eTag string
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
Md5sum string
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
Mdfid string
The mdfid of the image provided by cisco.com.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Model string
The endpoint model for which this firmware image is applicable.
Moid string
The unique identifier of this Managed Object instance.
Name string
The name of the file. It is populated as part of the image import operation.
NrSources []SoftwareSolutionDistributableNrSourceArgs
Location of the file in an external repository. This complex property has following sub-properties:
NrVersion string
Vendor provided version for the file.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []SoftwareSolutionDistributableParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []SoftwareSolutionDistributablePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
PlatformType string
(ReadOnly) The platform type of the image.
RecommendedBuild string
The build which is recommended by Cisco.
ReleaseDate string
(ReadOnly) The date on which the file was released or distributed by its vendor.
ReleaseNotesUrl string
The url for the release notes of this image.
Releases []SoftwareSolutionDistributableReleaseArgs
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Sha512sum string
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Size float64
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
SoftwareAdvisoryUrl string
The software advisory, if any, provided by the vendor for this file.
SoftwareSolutionDistributableId string
SoftwareTypeId string
(ReadOnly) The software type id provided by cisco.com.
SolutionName string
The name of the solution in which the image belongs.
SubType string
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
SupportedModels []string
(Array of schema.TypeString) -
Tags []SoftwareSolutionDistributableTagArgs
This complex property has following sub-properties:
Vendor string
The vendor or publisher of this file.
VersionContexts []SoftwareSolutionDistributableVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<SoftwareSolutionDistributableAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundleType String
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs List<SoftwareSolutionDistributableCatalog>
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
componentMetas List<SoftwareSolutionDistributableComponentMeta>
This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
description String
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributableMetas List<SoftwareSolutionDistributableDistributableMeta>
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
downloadCount Double
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
featureSource String
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
filePath String
(ReadOnly) The path of the file in S3/minio bucket.
guid String
(ReadOnly) The unique identifier for an image in a Cisco repository.
imageType String
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
importAction String
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
importState String
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
importedTime String
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
lastAccessTime String
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5eTag String
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum String
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid String
The mdfid of the image provided by cisco.com.
modTime String
(ReadOnly) The time when this managed object was last modified.
model String
The endpoint model for which this firmware image is applicable.
moid String
The unique identifier of this Managed Object instance.
name String
The name of the file. It is populated as part of the image import operation.
nrSources List<SoftwareSolutionDistributableNrSource>
Location of the file in an external repository. This complex property has following sub-properties:
nrVersion String
Vendor provided version for the file.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<SoftwareSolutionDistributableParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<SoftwareSolutionDistributablePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platformType String
(ReadOnly) The platform type of the image.
recommendedBuild String
The build which is recommended by Cisco.
releaseDate String
(ReadOnly) The date on which the file was released or distributed by its vendor.
releaseNotesUrl String
The url for the release notes of this image.
releases List<SoftwareSolutionDistributableRelease>
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum String
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size Double
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
softwareAdvisoryUrl String
The software advisory, if any, provided by the vendor for this file.
softwareSolutionDistributableId String
softwareTypeId String
(ReadOnly) The software type id provided by cisco.com.
solutionName String
The name of the solution in which the image belongs.
subType String
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supportedModels List<String>
(Array of schema.TypeString) -
tags List<SoftwareSolutionDistributableTag>
This complex property has following sub-properties:
vendor String
The vendor or publisher of this file.
versionContexts List<SoftwareSolutionDistributableVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors SoftwareSolutionDistributableAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundleType string
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs SoftwareSolutionDistributableCatalog[]
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
componentMetas SoftwareSolutionDistributableComponentMeta[]
This complex property has following sub-properties:
createTime string
(ReadOnly) The time when this managed object was created.
description string
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributableMetas SoftwareSolutionDistributableDistributableMeta[]
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
downloadCount number
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
featureSource string
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
filePath string
(ReadOnly) The path of the file in S3/minio bucket.
guid string
(ReadOnly) The unique identifier for an image in a Cisco repository.
imageType string
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
importAction string
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
importState string
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
importedTime string
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
lastAccessTime string
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5eTag string
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum string
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid string
The mdfid of the image provided by cisco.com.
modTime string
(ReadOnly) The time when this managed object was last modified.
model string
The endpoint model for which this firmware image is applicable.
moid string
The unique identifier of this Managed Object instance.
name string
The name of the file. It is populated as part of the image import operation.
nrSources SoftwareSolutionDistributableNrSource[]
Location of the file in an external repository. This complex property has following sub-properties:
nrVersion string
Vendor provided version for the file.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents SoftwareSolutionDistributableParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources SoftwareSolutionDistributablePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platformType string
(ReadOnly) The platform type of the image.
recommendedBuild string
The build which is recommended by Cisco.
releaseDate string
(ReadOnly) The date on which the file was released or distributed by its vendor.
releaseNotesUrl string
The url for the release notes of this image.
releases SoftwareSolutionDistributableRelease[]
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum string
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size number
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
softwareAdvisoryUrl string
The software advisory, if any, provided by the vendor for this file.
softwareSolutionDistributableId string
softwareTypeId string
(ReadOnly) The software type id provided by cisco.com.
solutionName string
The name of the solution in which the image belongs.
subType string
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supportedModels string[]
(Array of schema.TypeString) -
tags SoftwareSolutionDistributableTag[]
This complex property has following sub-properties:
vendor string
The vendor or publisher of this file.
versionContexts SoftwareSolutionDistributableVersionContext[]
(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[SoftwareSolutionDistributableAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundle_type str
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs Sequence[SoftwareSolutionDistributableCatalogArgs]
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
component_metas Sequence[SoftwareSolutionDistributableComponentMetaArgs]
This complex property has following sub-properties:
create_time str
(ReadOnly) The time when this managed object was created.
description str
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributable_metas Sequence[SoftwareSolutionDistributableDistributableMetaArgs]
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
download_count float
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
feature_source str
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
file_path str
(ReadOnly) The path of the file in S3/minio bucket.
guid str
(ReadOnly) The unique identifier for an image in a Cisco repository.
image_type str
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
import_action str
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
import_state str
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
imported_time str
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
last_access_time str
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5e_tag str
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum str
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid str
The mdfid of the image provided by cisco.com.
mod_time str
(ReadOnly) The time when this managed object was last modified.
model str
The endpoint model for which this firmware image is applicable.
moid str
The unique identifier of this Managed Object instance.
name str
The name of the file. It is populated as part of the image import operation.
nr_sources Sequence[SoftwareSolutionDistributableNrSourceArgs]
Location of the file in an external repository. This complex property has following sub-properties:
nr_version str
Vendor provided version for the file.
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[SoftwareSolutionDistributableParentArgs]
(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[SoftwareSolutionDistributablePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platform_type str
(ReadOnly) The platform type of the image.
recommended_build str
The build which is recommended by Cisco.
release_date str
(ReadOnly) The date on which the file was released or distributed by its vendor.
release_notes_url str
The url for the release notes of this image.
releases Sequence[SoftwareSolutionDistributableReleaseArgs]
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum str
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size float
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
software_advisory_url str
The software advisory, if any, provided by the vendor for this file.
software_solution_distributable_id str
software_type_id str
(ReadOnly) The software type id provided by cisco.com.
solution_name str
The name of the solution in which the image belongs.
sub_type str
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supported_models Sequence[str]
(Array of schema.TypeString) -
tags Sequence[SoftwareSolutionDistributableTagArgs]
This complex property has following sub-properties:
vendor str
The vendor or publisher of this file.
version_contexts Sequence[SoftwareSolutionDistributableVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
bundleType String
(ReadOnly) The bundle type of the image, as published on cisco.com.
catalogs List<Property Map>
A reference to a softwarerepositoryCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
componentMetas List<Property Map>
This complex property has following sub-properties:
createTime String
(ReadOnly) The time when this managed object was created.
description String
User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
distributableMetas List<Property Map>
An array of relationships to firmwareDistributableMeta resources. This complex property has following sub-properties:
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
downloadCount Number
(ReadOnly) The number of times this file has been downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
featureSource String
(ReadOnly) The name of the feature to which the uploaded file belongs.* System - This indicates system initiated file uploads.* OpenAPIImport - This indicates an OpenAPI file upload.* PartnerIntegrationImport - This indicates a Partner-Integration Appliance user file uploads.
filePath String
(ReadOnly) The path of the file in S3/minio bucket.
guid String
(ReadOnly) The unique identifier for an image in a Cisco repository.
imageType String
The type of image which the distributable falls into according to the component it can upgrade. For e.g.; Standalone server, Intersight managed server, UCS Managed Fabric Interconnect. The field is used in private appliance mode, where image does not have description populated from CCO.
importAction String
The action to be performed on the imported file. If 'PreCache' is set, the image will be cached in Appliance. Applicable in Intersight appliance deployment. If 'Evict' is set, the cached file will be removed. Applicable in Intersight appliance deployment. If 'GeneratePreSignedUploadUrl' is set, generates pre signed URL (s) for the file to be imported into the repository. Applicable for local machine source. The URL (s) will be populated under LocalMachine file server. If 'CompleteImportProcess' is set, the ImportState is marked as 'Imported'. Applicable for local machine source. If 'Cancel' is set, the ImportState is marked as 'Failed'. Applicable for local machine source.* None - No action should be taken on the imported file.* GeneratePreSignedUploadUrl - Generate pre signed URL of file for importing into the repository.* GeneratePreSignedDownloadUrl - Generate pre signed URL of file in the repository to download.* CompleteImportProcess - Mark that the import process of the file into the repository is complete.* MarkImportFailed - Mark to indicate that the import process of the file into the repository failed.* PreCache - Cache the file into the Intersight Appliance.* Cancel - The cancel import process for the file into the repository.* Extract - The action to extract the file in the external repository.* Evict - Evict the cached file from the Intersight Appliance.
importState String
(ReadOnly) The state of this file in the repository or Appliance. The importState is updated during the import operation and as part of the repository monitoring process.* ReadyForImport - The image is ready to be imported into the repository.* Importing - The image is being imported into the repository.* Imported - The image has been extracted and imported into the repository.* PendingExtraction - Indicates that the image has been imported but not extracted in the repository.* Extracting - Indicates that the image is being extracted into the repository.* Extracted - Indicates that the image has been extracted into the repository.* Failed - The image import from an external source to the repository has failed.* MetaOnly - The image is present in an external repository.* ReadyForCache - The image is ready to be cached into the Intersight Appliance.* Caching - Indicates that the image is being cached into the Intersight Appliance or endpoint cache.* Cached - Indicates that the image has been cached into the Intersight Appliance or endpoint cache.* CachingFailed - Indicates that the image caching into the Intersight Appliance failed or endpoint cache.* Corrupted - Indicates that the image in the local repository (or endpoint cache) has been corrupted after it was cached.* Evicted - Indicates that the image has been evicted from the Intersight Appliance (or endpoint cache) to reclaim storage space.* Invalid - Indicates that the corresponding distributable MO has been removed from the backend. This can be due to unpublishing of an image.
importedTime String
(ReadOnly) The time at which this image or file was imported/cached into the repositry. if the 'ImportState' is 'Imported', the time at which this image or file was imported. if the 'ImportState' is 'Cached', the time at which this image or file was cached.
lastAccessTime String
(ReadOnly) The time at which this file was last downloaded from the local repository. It is used by the repository monitoring process to determine the files that are to be evicted from the cache.
md5eTag String
The MD5 ETag for a file that is stored in Intersight repository or in the appliance cache. Warning - MD5 is currently broken and this will be migrated to SHA shortly.
md5sum String
The md5sum checksum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
mdfid String
The mdfid of the image provided by cisco.com.
modTime String
(ReadOnly) The time when this managed object was last modified.
model String
The endpoint model for which this firmware image is applicable.
moid String
The unique identifier of this Managed Object instance.
name String
The name of the file. It is populated as part of the image import operation.
nrSources List<Property Map>
Location of the file in an external repository. This complex property has following sub-properties:
nrVersion String
Vendor provided version for the file.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
platformType String
(ReadOnly) The platform type of the image.
recommendedBuild String
The build which is recommended by Cisco.
releaseDate String
(ReadOnly) The date on which the file was released or distributed by its vendor.
releaseNotesUrl String
The url for the release notes of this image.
releases List<Property Map>
A reference to a softwarerepositoryRelease resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
sha512sum String
The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
size Number
The size (in bytes) of the file. This information is available for all Cisco distributed images and files imported to the local repository.
softwareAdvisoryUrl String
The software advisory, if any, provided by the vendor for this file.
softwareSolutionDistributableId String
softwareTypeId String
(ReadOnly) The software type id provided by cisco.com.
solutionName String
The name of the solution in which the image belongs.
subType String
The type of the file like OS image, Script etc.* osimage - The solution OS image for deployment.* script - The Python script for the solution VM configuration and deployment.
supportedModels List<String>
(Array of schema.TypeString) -
tags List<Property Map>
This complex property has following sub-properties:
vendor String
The vendor or publisher of this file.
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

Supporting Types

SoftwareSolutionDistributableAncestor
, SoftwareSolutionDistributableAncestorArgs

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

SoftwareSolutionDistributableCatalog
, SoftwareSolutionDistributableCatalogArgs

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

SoftwareSolutionDistributableComponentMeta
, SoftwareSolutionDistributableComponentMetaArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
ComponentLabel This property is required. string
The name of the component in the compressed HSU bundle.
ComponentType This property is required. string
The type of component image within the distributable.* ALL - This represents all the components.* ALL,HDD - This represents all the components plus the HDDs.* Drive-U.2 - This represents the U.2 drives that are SFF/LFF drives (mostly all the drives will fall under this category).* Storage - This represents the storage controller components.* None - This represents none of the components.* NXOS - This represents NXOS components.* IOM - This represents IOM components.* PSU - This represents PSU components.* CIMC - This represents CIMC components.* BIOS - This represents BIOS components.* PCIE - This represents PCIE components.* Drive - This represents Drive components.* DIMM - This represents DIMM components.* BoardController - This represents Board Controller components.* StorageController - This represents Storage Controller components.* Storage-Sasexpander - This represents Storage Sas-Expander components.* Storage-U.2 - This represents U2 Storage Controller components.* HBA - This represents HBA components.* GPU - This represents GPU components.* SasExpander - This represents SasExpander components.* MSwitch - This represents mSwitch components.* CMC - This represents CMC components.
Description This property is required. string
This shows the description of component image within the distributable.
Disruption This property is required. string
The type of disruption on each component. For example, host reboot, automatic power cycle, and manual power cycle.* None - Indicates that the component did not receive a disruption request.* HostReboot - Indicates that the component received a host reboot request.* EndpointReboot - Indicates that the component received an end point reboot request.* ManualPowerCycle - Indicates that the component received a manual power cycle request.* AutomaticPowerCycle - Indicates that the component received an automatic power cycle request.
ImagePath This property is required. string
This shows the path of component image within the distributable.
IsOobSupported This property is required. bool
If set, the component can be updated through out-of-band management, else, is updated through host service utility boot.
Model This property is required. string
The model of the component image in the distributable.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OobManageabilities This property is required. List<string>
(Array of schema.TypeString) -
PackedVersion This property is required. string
The image version of components packaged in the distributable.
RedfishUrl This property is required. string
The redfish target for each component.
Vendor This property is required. string
The version of component image in the distributable.
AdditionalProperties This property is required. string
ClassId This property is required. string
ComponentLabel This property is required. string
The name of the component in the compressed HSU bundle.
ComponentType This property is required. string
The type of component image within the distributable.* ALL - This represents all the components.* ALL,HDD - This represents all the components plus the HDDs.* Drive-U.2 - This represents the U.2 drives that are SFF/LFF drives (mostly all the drives will fall under this category).* Storage - This represents the storage controller components.* None - This represents none of the components.* NXOS - This represents NXOS components.* IOM - This represents IOM components.* PSU - This represents PSU components.* CIMC - This represents CIMC components.* BIOS - This represents BIOS components.* PCIE - This represents PCIE components.* Drive - This represents Drive components.* DIMM - This represents DIMM components.* BoardController - This represents Board Controller components.* StorageController - This represents Storage Controller components.* Storage-Sasexpander - This represents Storage Sas-Expander components.* Storage-U.2 - This represents U2 Storage Controller components.* HBA - This represents HBA components.* GPU - This represents GPU components.* SasExpander - This represents SasExpander components.* MSwitch - This represents mSwitch components.* CMC - This represents CMC components.
Description This property is required. string
This shows the description of component image within the distributable.
Disruption This property is required. string
The type of disruption on each component. For example, host reboot, automatic power cycle, and manual power cycle.* None - Indicates that the component did not receive a disruption request.* HostReboot - Indicates that the component received a host reboot request.* EndpointReboot - Indicates that the component received an end point reboot request.* ManualPowerCycle - Indicates that the component received a manual power cycle request.* AutomaticPowerCycle - Indicates that the component received an automatic power cycle request.
ImagePath This property is required. string
This shows the path of component image within the distributable.
IsOobSupported This property is required. bool
If set, the component can be updated through out-of-band management, else, is updated through host service utility boot.
Model This property is required. string
The model of the component image in the distributable.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OobManageabilities This property is required. []string
(Array of schema.TypeString) -
PackedVersion This property is required. string
The image version of components packaged in the distributable.
RedfishUrl This property is required. string
The redfish target for each component.
Vendor This property is required. string
The version of component image in the distributable.
additionalProperties This property is required. String
classId This property is required. String
componentLabel This property is required. String
The name of the component in the compressed HSU bundle.
componentType This property is required. String
The type of component image within the distributable.* ALL - This represents all the components.* ALL,HDD - This represents all the components plus the HDDs.* Drive-U.2 - This represents the U.2 drives that are SFF/LFF drives (mostly all the drives will fall under this category).* Storage - This represents the storage controller components.* None - This represents none of the components.* NXOS - This represents NXOS components.* IOM - This represents IOM components.* PSU - This represents PSU components.* CIMC - This represents CIMC components.* BIOS - This represents BIOS components.* PCIE - This represents PCIE components.* Drive - This represents Drive components.* DIMM - This represents DIMM components.* BoardController - This represents Board Controller components.* StorageController - This represents Storage Controller components.* Storage-Sasexpander - This represents Storage Sas-Expander components.* Storage-U.2 - This represents U2 Storage Controller components.* HBA - This represents HBA components.* GPU - This represents GPU components.* SasExpander - This represents SasExpander components.* MSwitch - This represents mSwitch components.* CMC - This represents CMC components.
description This property is required. String
This shows the description of component image within the distributable.
disruption This property is required. String
The type of disruption on each component. For example, host reboot, automatic power cycle, and manual power cycle.* None - Indicates that the component did not receive a disruption request.* HostReboot - Indicates that the component received a host reboot request.* EndpointReboot - Indicates that the component received an end point reboot request.* ManualPowerCycle - Indicates that the component received a manual power cycle request.* AutomaticPowerCycle - Indicates that the component received an automatic power cycle request.
imagePath This property is required. String
This shows the path of component image within the distributable.
isOobSupported This property is required. Boolean
If set, the component can be updated through out-of-band management, else, is updated through host service utility boot.
model This property is required. String
The model of the component image in the distributable.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
oobManageabilities This property is required. List<String>
(Array of schema.TypeString) -
packedVersion This property is required. String
The image version of components packaged in the distributable.
redfishUrl This property is required. String
The redfish target for each component.
vendor This property is required. String
The version of component image in the distributable.
additionalProperties This property is required. string
classId This property is required. string
componentLabel This property is required. string
The name of the component in the compressed HSU bundle.
componentType This property is required. string
The type of component image within the distributable.* ALL - This represents all the components.* ALL,HDD - This represents all the components plus the HDDs.* Drive-U.2 - This represents the U.2 drives that are SFF/LFF drives (mostly all the drives will fall under this category).* Storage - This represents the storage controller components.* None - This represents none of the components.* NXOS - This represents NXOS components.* IOM - This represents IOM components.* PSU - This represents PSU components.* CIMC - This represents CIMC components.* BIOS - This represents BIOS components.* PCIE - This represents PCIE components.* Drive - This represents Drive components.* DIMM - This represents DIMM components.* BoardController - This represents Board Controller components.* StorageController - This represents Storage Controller components.* Storage-Sasexpander - This represents Storage Sas-Expander components.* Storage-U.2 - This represents U2 Storage Controller components.* HBA - This represents HBA components.* GPU - This represents GPU components.* SasExpander - This represents SasExpander components.* MSwitch - This represents mSwitch components.* CMC - This represents CMC components.
description This property is required. string
This shows the description of component image within the distributable.
disruption This property is required. string
The type of disruption on each component. For example, host reboot, automatic power cycle, and manual power cycle.* None - Indicates that the component did not receive a disruption request.* HostReboot - Indicates that the component received a host reboot request.* EndpointReboot - Indicates that the component received an end point reboot request.* ManualPowerCycle - Indicates that the component received a manual power cycle request.* AutomaticPowerCycle - Indicates that the component received an automatic power cycle request.
imagePath This property is required. string
This shows the path of component image within the distributable.
isOobSupported This property is required. boolean
If set, the component can be updated through out-of-band management, else, is updated through host service utility boot.
model This property is required. string
The model of the component image in the distributable.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
oobManageabilities This property is required. string[]
(Array of schema.TypeString) -
packedVersion This property is required. string
The image version of components packaged in the distributable.
redfishUrl This property is required. string
The redfish target for each component.
vendor This property is required. string
The version of component image in the distributable.
additional_properties This property is required. str
class_id This property is required. str
component_label This property is required. str
The name of the component in the compressed HSU bundle.
component_type This property is required. str
The type of component image within the distributable.* ALL - This represents all the components.* ALL,HDD - This represents all the components plus the HDDs.* Drive-U.2 - This represents the U.2 drives that are SFF/LFF drives (mostly all the drives will fall under this category).* Storage - This represents the storage controller components.* None - This represents none of the components.* NXOS - This represents NXOS components.* IOM - This represents IOM components.* PSU - This represents PSU components.* CIMC - This represents CIMC components.* BIOS - This represents BIOS components.* PCIE - This represents PCIE components.* Drive - This represents Drive components.* DIMM - This represents DIMM components.* BoardController - This represents Board Controller components.* StorageController - This represents Storage Controller components.* Storage-Sasexpander - This represents Storage Sas-Expander components.* Storage-U.2 - This represents U2 Storage Controller components.* HBA - This represents HBA components.* GPU - This represents GPU components.* SasExpander - This represents SasExpander components.* MSwitch - This represents mSwitch components.* CMC - This represents CMC components.
description This property is required. str
This shows the description of component image within the distributable.
disruption This property is required. str
The type of disruption on each component. For example, host reboot, automatic power cycle, and manual power cycle.* None - Indicates that the component did not receive a disruption request.* HostReboot - Indicates that the component received a host reboot request.* EndpointReboot - Indicates that the component received an end point reboot request.* ManualPowerCycle - Indicates that the component received a manual power cycle request.* AutomaticPowerCycle - Indicates that the component received an automatic power cycle request.
image_path This property is required. str
This shows the path of component image within the distributable.
is_oob_supported This property is required. bool
If set, the component can be updated through out-of-band management, else, is updated through host service utility boot.
model This property is required. str
The model of the component image in the distributable.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
oob_manageabilities This property is required. Sequence[str]
(Array of schema.TypeString) -
packed_version This property is required. str
The image version of components packaged in the distributable.
redfish_url This property is required. str
The redfish target for each component.
vendor This property is required. str
The version of component image in the distributable.
additionalProperties This property is required. String
classId This property is required. String
componentLabel This property is required. String
The name of the component in the compressed HSU bundle.
componentType This property is required. String
The type of component image within the distributable.* ALL - This represents all the components.* ALL,HDD - This represents all the components plus the HDDs.* Drive-U.2 - This represents the U.2 drives that are SFF/LFF drives (mostly all the drives will fall under this category).* Storage - This represents the storage controller components.* None - This represents none of the components.* NXOS - This represents NXOS components.* IOM - This represents IOM components.* PSU - This represents PSU components.* CIMC - This represents CIMC components.* BIOS - This represents BIOS components.* PCIE - This represents PCIE components.* Drive - This represents Drive components.* DIMM - This represents DIMM components.* BoardController - This represents Board Controller components.* StorageController - This represents Storage Controller components.* Storage-Sasexpander - This represents Storage Sas-Expander components.* Storage-U.2 - This represents U2 Storage Controller components.* HBA - This represents HBA components.* GPU - This represents GPU components.* SasExpander - This represents SasExpander components.* MSwitch - This represents mSwitch components.* CMC - This represents CMC components.
description This property is required. String
This shows the description of component image within the distributable.
disruption This property is required. String
The type of disruption on each component. For example, host reboot, automatic power cycle, and manual power cycle.* None - Indicates that the component did not receive a disruption request.* HostReboot - Indicates that the component received a host reboot request.* EndpointReboot - Indicates that the component received an end point reboot request.* ManualPowerCycle - Indicates that the component received a manual power cycle request.* AutomaticPowerCycle - Indicates that the component received an automatic power cycle request.
imagePath This property is required. String
This shows the path of component image within the distributable.
isOobSupported This property is required. Boolean
If set, the component can be updated through out-of-band management, else, is updated through host service utility boot.
model This property is required. String
The model of the component image in the distributable.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
oobManageabilities This property is required. List<String>
(Array of schema.TypeString) -
packedVersion This property is required. String
The image version of components packaged in the distributable.
redfishUrl This property is required. String
The redfish target for each component.
vendor This property is required. String
The version of component image in the distributable.

SoftwareSolutionDistributableDistributableMeta
, SoftwareSolutionDistributableDistributableMetaArgs

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

SoftwareSolutionDistributableNrSource
, SoftwareSolutionDistributableNrSourceArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
AdditionalProperties This property is required. string
ClassId This property is required. string
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additionalProperties This property is required. string
classId This property is required. string
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additional_properties This property is required. str
class_id This property is required. str
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additionalProperties This property is required. String
classId This property is required. String
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.

SoftwareSolutionDistributableParent
, SoftwareSolutionDistributableParentArgs

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

SoftwareSolutionDistributablePermissionResource
, SoftwareSolutionDistributablePermissionResourceArgs

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

SoftwareSolutionDistributableRelease
, SoftwareSolutionDistributableReleaseArgs

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

SoftwareSolutionDistributableTag
, SoftwareSolutionDistributableTagArgs

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

SoftwareSolutionDistributableVersionContext
, SoftwareSolutionDistributableVersionContextArgs

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

SoftwareSolutionDistributableVersionContextInterestedMo
, SoftwareSolutionDistributableVersionContextInterestedMoArgs

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

SoftwareSolutionDistributableVersionContextRefMo
, SoftwareSolutionDistributableVersionContextRefMoArgs

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

$ pulumi import intersight:index/softwareSolutionDistributable:SoftwareSolutionDistributable example 1234567890987654321abcde
Copy

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.