intersight.SoftwarerepositoryOperatingSystemFile
Explore with Pulumi AI
An operating system image that resides either in an external repository or has been imported to the local repository. If the file is available in the local repository, it is marked as cached. If not, it represents a pointer to a file in an external repository.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const catalog = config.require("catalog");
const osf11 = new intersight.SoftwarerepositoryOperatingSystemFile("osf11", {
nrVersion: "ESXi 6.7 U2",
description: "ESXi6.7U2 without answers",
nrSources: [{
additionalProperties: JSON.stringify({
FileLocation: "10.10.10.1/Public/iso/esx67u2.iso",
RemoteIp: "10.10.10.1",
RemoteShare: "/Public/iso/",
RemoteFile: "esx67u2.iso",
Username: "user",
Password: "ChangeMe",
MountOption: "sec=ntlm",
}),
objectType: "softwarerepository.CifsServer",
}],
vendor: "VMware",
catalogs: [{
moid: catalog,
objectType: "softwarerepository.Catalog",
}],
});
import pulumi
import json
import pulumi_intersight as intersight
config = pulumi.Config()
catalog = config.require("catalog")
osf11 = intersight.SoftwarerepositoryOperatingSystemFile("osf11",
nr_version="ESXi 6.7 U2",
description="ESXi6.7U2 without answers",
nr_sources=[{
"additional_properties": json.dumps({
"FileLocation": "10.10.10.1/Public/iso/esx67u2.iso",
"RemoteIp": "10.10.10.1",
"RemoteShare": "/Public/iso/",
"RemoteFile": "esx67u2.iso",
"Username": "user",
"Password": "ChangeMe",
"MountOption": "sec=ntlm",
}),
"object_type": "softwarerepository.CifsServer",
}],
vendor="VMware",
catalogs=[{
"moid": catalog,
"object_type": "softwarerepository.Catalog",
}])
package main
import (
"encoding/json"
"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, "")
catalog := cfg.Require("catalog")
tmpJSON0, err := json.Marshal(map[string]interface{}{
"FileLocation": "10.10.10.1/Public/iso/esx67u2.iso",
"RemoteIp": "10.10.10.1",
"RemoteShare": "/Public/iso/",
"RemoteFile": "esx67u2.iso",
"Username": "user",
"Password": "ChangeMe",
"MountOption": "sec=ntlm",
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = intersight.NewSoftwarerepositoryOperatingSystemFile(ctx, "osf11", &intersight.SoftwarerepositoryOperatingSystemFileArgs{
NrVersion: pulumi.String("ESXi 6.7 U2"),
Description: pulumi.String("ESXi6.7U2 without answers"),
NrSources: intersight.SoftwarerepositoryOperatingSystemFileNrSourceArray{
&intersight.SoftwarerepositoryOperatingSystemFileNrSourceArgs{
AdditionalProperties: pulumi.String(json0),
ObjectType: pulumi.String("softwarerepository.CifsServer"),
},
},
Vendor: pulumi.String("VMware"),
Catalogs: intersight.SoftwarerepositoryOperatingSystemFileCatalogArray{
&intersight.SoftwarerepositoryOperatingSystemFileCatalogArgs{
Moid: pulumi.String(catalog),
ObjectType: pulumi.String("softwarerepository.Catalog"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var catalog = config.Require("catalog");
var osf11 = new Intersight.SoftwarerepositoryOperatingSystemFile("osf11", new()
{
NrVersion = "ESXi 6.7 U2",
Description = "ESXi6.7U2 without answers",
NrSources = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileNrSourceArgs
{
AdditionalProperties = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["FileLocation"] = "10.10.10.1/Public/iso/esx67u2.iso",
["RemoteIp"] = "10.10.10.1",
["RemoteShare"] = "/Public/iso/",
["RemoteFile"] = "esx67u2.iso",
["Username"] = "user",
["Password"] = "ChangeMe",
["MountOption"] = "sec=ntlm",
}),
ObjectType = "softwarerepository.CifsServer",
},
},
Vendor = "VMware",
Catalogs = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileCatalogArgs
{
Moid = catalog,
ObjectType = "softwarerepository.Catalog",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.SoftwarerepositoryOperatingSystemFile;
import com.pulumi.intersight.SoftwarerepositoryOperatingSystemFileArgs;
import com.pulumi.intersight.inputs.SoftwarerepositoryOperatingSystemFileNrSourceArgs;
import com.pulumi.intersight.inputs.SoftwarerepositoryOperatingSystemFileCatalogArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 catalog = config.get("catalog");
var osf11 = new SoftwarerepositoryOperatingSystemFile("osf11", SoftwarerepositoryOperatingSystemFileArgs.builder()
.nrVersion("ESXi 6.7 U2")
.description("ESXi6.7U2 without answers")
.nrSources(SoftwarerepositoryOperatingSystemFileNrSourceArgs.builder()
.additionalProperties(serializeJson(
jsonObject(
jsonProperty("FileLocation", "10.10.10.1/Public/iso/esx67u2.iso"),
jsonProperty("RemoteIp", "10.10.10.1"),
jsonProperty("RemoteShare", "/Public/iso/"),
jsonProperty("RemoteFile", "esx67u2.iso"),
jsonProperty("Username", "user"),
jsonProperty("Password", "ChangeMe"),
jsonProperty("MountOption", "sec=ntlm")
)))
.objectType("softwarerepository.CifsServer")
.build())
.vendor("VMware")
.catalogs(SoftwarerepositoryOperatingSystemFileCatalogArgs.builder()
.moid(catalog)
.objectType("softwarerepository.Catalog")
.build())
.build());
}
}
configuration:
catalog:
type: string
resources:
osf11:
type: intersight:SoftwarerepositoryOperatingSystemFile
properties:
nrVersion: ESXi 6.7 U2
description: ESXi6.7U2 without answers
nrSources:
- additionalProperties:
fn::toJSON:
FileLocation: 10.10.10.1/Public/iso/esx67u2.iso
RemoteIp: 10.10.10.1
RemoteShare: /Public/iso/
RemoteFile: esx67u2.iso
Username: user
Password: ChangeMe
MountOption: sec=ntlm
objectType: softwarerepository.CifsServer
vendor: VMware
catalogs:
- moid: ${catalog}
objectType: softwarerepository.Catalog
Create SoftwarerepositoryOperatingSystemFile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SoftwarerepositoryOperatingSystemFile(name: string, args?: SoftwarerepositoryOperatingSystemFileArgs, opts?: CustomResourceOptions);
@overload
def SoftwarerepositoryOperatingSystemFile(resource_name: str,
args: Optional[SoftwarerepositoryOperatingSystemFileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SoftwarerepositoryOperatingSystemFile(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[SoftwarerepositoryOperatingSystemFileAncestorArgs]] = None,
catalogs: Optional[Sequence[SoftwarerepositoryOperatingSystemFileCatalogArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
download_count: Optional[float] = None,
feature_source: 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,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nr_sources: Optional[Sequence[SoftwarerepositoryOperatingSystemFileNrSourceArgs]] = None,
nr_version: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[SoftwarerepositoryOperatingSystemFileParentArgs]] = None,
permission_resources: Optional[Sequence[SoftwarerepositoryOperatingSystemFilePermissionResourceArgs]] = None,
release_date: Optional[str] = None,
sha512sum: Optional[str] = None,
shared_scope: Optional[str] = None,
size: Optional[float] = None,
software_advisory_url: Optional[str] = None,
softwarerepository_operating_system_file_id: Optional[str] = None,
tags: Optional[Sequence[SoftwarerepositoryOperatingSystemFileTagArgs]] = None,
vendor: Optional[str] = None,
version_contexts: Optional[Sequence[SoftwarerepositoryOperatingSystemFileVersionContextArgs]] = None)
func NewSoftwarerepositoryOperatingSystemFile(ctx *Context, name string, args *SoftwarerepositoryOperatingSystemFileArgs, opts ...ResourceOption) (*SoftwarerepositoryOperatingSystemFile, error)
public SoftwarerepositoryOperatingSystemFile(string name, SoftwarerepositoryOperatingSystemFileArgs? args = null, CustomResourceOptions? opts = null)
public SoftwarerepositoryOperatingSystemFile(String name, SoftwarerepositoryOperatingSystemFileArgs args)
public SoftwarerepositoryOperatingSystemFile(String name, SoftwarerepositoryOperatingSystemFileArgs args, CustomResourceOptions options)
type: intersight:SoftwarerepositoryOperatingSystemFile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SoftwarerepositoryOperatingSystemFileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SoftwarerepositoryOperatingSystemFileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SoftwarerepositoryOperatingSystemFileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SoftwarerepositoryOperatingSystemFileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SoftwarerepositoryOperatingSystemFileArgs
- 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 softwarerepositoryOperatingSystemFileResource = new Intersight.SoftwarerepositoryOperatingSystemFile("softwarerepositoryOperatingSystemFileResource", new()
{
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Catalogs = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileCatalogArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
CreateTime = "string",
Description = "string",
DomainGroupMoid = "string",
DownloadCount = 0,
FeatureSource = "string",
ImportAction = "string",
ImportState = "string",
ImportedTime = "string",
LastAccessTime = "string",
Md5eTag = "string",
Md5sum = "string",
ModTime = "string",
Moid = "string",
Name = "string",
NrSources = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileNrSourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
},
},
NrVersion = "string",
ObjectType = "string",
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFilePermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ReleaseDate = "string",
Sha512sum = "string",
SharedScope = "string",
Size = 0,
SoftwareAdvisoryUrl = "string",
SoftwarerepositoryOperatingSystemFileId = "string",
Tags = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
Vendor = "string",
VersionContexts = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.SoftwarerepositoryOperatingSystemFileVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
});
example, err := intersight.NewSoftwarerepositoryOperatingSystemFile(ctx, "softwarerepositoryOperatingSystemFileResource", &intersight.SoftwarerepositoryOperatingSystemFileArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.SoftwarerepositoryOperatingSystemFileAncestorArray{
&intersight.SoftwarerepositoryOperatingSystemFileAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Catalogs: intersight.SoftwarerepositoryOperatingSystemFileCatalogArray{
&intersight.SoftwarerepositoryOperatingSystemFileCatalogArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
DownloadCount: pulumi.Float64(0),
FeatureSource: 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"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
NrSources: intersight.SoftwarerepositoryOperatingSystemFileNrSourceArray{
&intersight.SoftwarerepositoryOperatingSystemFileNrSourceArgs{
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: intersight.SoftwarerepositoryOperatingSystemFileParentArray{
&intersight.SoftwarerepositoryOperatingSystemFileParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.SoftwarerepositoryOperatingSystemFilePermissionResourceArray{
&intersight.SoftwarerepositoryOperatingSystemFilePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ReleaseDate: pulumi.String("string"),
Sha512sum: pulumi.String("string"),
SharedScope: pulumi.String("string"),
Size: pulumi.Float64(0),
SoftwareAdvisoryUrl: pulumi.String("string"),
SoftwarerepositoryOperatingSystemFileId: pulumi.String("string"),
Tags: intersight.SoftwarerepositoryOperatingSystemFileTagArray{
&intersight.SoftwarerepositoryOperatingSystemFileTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Vendor: pulumi.String("string"),
VersionContexts: intersight.SoftwarerepositoryOperatingSystemFileVersionContextArray{
&intersight.SoftwarerepositoryOperatingSystemFileVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.SoftwarerepositoryOperatingSystemFileVersionContextInterestedMoArray{
&intersight.SoftwarerepositoryOperatingSystemFileVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.SoftwarerepositoryOperatingSystemFileVersionContextRefMoArray{
&intersight.SoftwarerepositoryOperatingSystemFileVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
})
var softwarerepositoryOperatingSystemFileResource = new SoftwarerepositoryOperatingSystemFile("softwarerepositoryOperatingSystemFileResource", SoftwarerepositoryOperatingSystemFileArgs.builder()
.accountMoid("string")
.additionalProperties("string")
.ancestors(SoftwarerepositoryOperatingSystemFileAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.catalogs(SoftwarerepositoryOperatingSystemFileCatalogArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.createTime("string")
.description("string")
.domainGroupMoid("string")
.downloadCount(0)
.featureSource("string")
.importAction("string")
.importState("string")
.importedTime("string")
.lastAccessTime("string")
.md5eTag("string")
.md5sum("string")
.modTime("string")
.moid("string")
.name("string")
.nrSources(SoftwarerepositoryOperatingSystemFileNrSourceArgs.builder()
.additionalProperties("string")
.classId("string")
.objectType("string")
.build())
.nrVersion("string")
.objectType("string")
.owners("string")
.parents(SoftwarerepositoryOperatingSystemFileParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(SoftwarerepositoryOperatingSystemFilePermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.releaseDate("string")
.sha512sum("string")
.sharedScope("string")
.size(0)
.softwareAdvisoryUrl("string")
.softwarerepositoryOperatingSystemFileId("string")
.tags(SoftwarerepositoryOperatingSystemFileTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.vendor("string")
.versionContexts(SoftwarerepositoryOperatingSystemFileVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(SoftwarerepositoryOperatingSystemFileVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(SoftwarerepositoryOperatingSystemFileVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.build());
softwarerepository_operating_system_file_resource = intersight.SoftwarerepositoryOperatingSystemFile("softwarerepositoryOperatingSystemFileResource",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
catalogs=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
create_time="string",
description="string",
domain_group_moid="string",
download_count=0,
feature_source="string",
import_action="string",
import_state="string",
imported_time="string",
last_access_time="string",
md5e_tag="string",
md5sum="string",
mod_time="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",
}],
release_date="string",
sha512sum="string",
shared_scope="string",
size=0,
software_advisory_url="string",
softwarerepository_operating_system_file_id="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",
}])
const softwarerepositoryOperatingSystemFileResource = new intersight.SoftwarerepositoryOperatingSystemFile("softwarerepositoryOperatingSystemFileResource", {
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
catalogs: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
createTime: "string",
description: "string",
domainGroupMoid: "string",
downloadCount: 0,
featureSource: "string",
importAction: "string",
importState: "string",
importedTime: "string",
lastAccessTime: "string",
md5eTag: "string",
md5sum: "string",
modTime: "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",
}],
releaseDate: "string",
sha512sum: "string",
sharedScope: "string",
size: 0,
softwareAdvisoryUrl: "string",
softwarerepositoryOperatingSystemFileId: "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",
}],
});
type: intersight:SoftwarerepositoryOperatingSystemFile
properties:
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
catalogs:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
createTime: string
description: string
domainGroupMoid: string
downloadCount: 0
featureSource: string
importAction: string
importState: string
importedTime: string
lastAccessTime: string
md5eTag: string
md5sum: string
modTime: 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
releaseDate: string
sha512sum: string
sharedScope: string
size: 0
softwareAdvisoryUrl: string
softwarerepositoryOperatingSystemFileId: 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
SoftwarerepositoryOperatingSystemFile 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 SoftwarerepositoryOperatingSystemFile resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Softwarerepository
Operating System File Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
List<Softwarerepository
Operating System File Catalog> - 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 string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Download
Count 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.
- Feature
Source 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. - Import
Action 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. - Import
State 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. - Imported
Time 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.
- Last
Access stringTime - (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 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.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the file. It is populated as part of the image import operation.
- Nr
Sources List<SoftwarerepositoryOperating System File Nr Source> - Location of the file in an external repository. This complex property has following sub-properties:
- Nr
Version string - Vendor provided version for the file.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Softwarerepository
Operating System File Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<SoftwarerepositoryOperating System File Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Release
Date string - (ReadOnly) The date on which the file was released or distributed by its vendor.
- Sha512sum string
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- Software
Advisory stringUrl - The software advisory, if any, provided by the vendor for this file.
- Softwarerepository
Operating stringSystem File Id - List<Softwarerepository
Operating System File Tag> - This complex property has following sub-properties:
- Vendor string
- The vendor or publisher of this file.
- Version
Contexts List<SoftwarerepositoryOperating System File Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Softwarerepository
Operating System File Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
[]Softwarerepository
Operating System File Catalog Args - 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 string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Download
Count 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.
- Feature
Source 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. - Import
Action 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. - Import
State 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. - Imported
Time 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.
- Last
Access stringTime - (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 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.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the file. It is populated as part of the image import operation.
- Nr
Sources []SoftwarerepositoryOperating System File Nr Source Args - Location of the file in an external repository. This complex property has following sub-properties:
- Nr
Version string - Vendor provided version for the file.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Softwarerepository
Operating System File Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []SoftwarerepositoryOperating System File Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Release
Date string - (ReadOnly) The date on which the file was released or distributed by its vendor.
- Sha512sum string
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- Software
Advisory stringUrl - The software advisory, if any, provided by the vendor for this file.
- Softwarerepository
Operating stringSystem File Id - []Softwarerepository
Operating System File Tag Args - This complex property has following sub-properties:
- Vendor string
- The vendor or publisher of this file.
- Version
Contexts []SoftwarerepositoryOperating System File Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Softwarerepository
Operating System File Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
List<Softwarerepository
Operating System File Catalog> - 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 String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- download
Count 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.
- feature
Source 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. - import
Action 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. - import
State 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. - imported
Time 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.
- last
Access StringTime - (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 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.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the file. It is populated as part of the image import operation.
- nr
Sources List<SoftwarerepositoryOperating System File Nr Source> - Location of the file in an external repository. This complex property has following sub-properties:
- nr
Version String - Vendor provided version for the file.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Softwarerepository
Operating System File Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<SoftwarerepositoryOperating System File Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release
Date String - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum String
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- software
Advisory StringUrl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository
Operating StringSystem File Id - List<Softwarerepository
Operating System File Tag> - This complex property has following sub-properties:
- vendor String
- The vendor or publisher of this file.
- version
Contexts List<SoftwarerepositoryOperating System File Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Softwarerepository
Operating System File Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Softwarerepository
Operating System File Catalog[] - 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 string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- download
Count 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.
- feature
Source 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. - import
Action 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. - import
State 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. - imported
Time 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.
- last
Access stringTime - (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 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.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- The name of the file. It is populated as part of the image import operation.
- nr
Sources SoftwarerepositoryOperating System File Nr Source[] - Location of the file in an external repository. This complex property has following sub-properties:
- nr
Version string - Vendor provided version for the file.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Softwarerepository
Operating System File Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources SoftwarerepositoryOperating System File Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release
Date string - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum string
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- software
Advisory stringUrl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository
Operating stringSystem File Id - Softwarerepository
Operating System File Tag[] - This complex property has following sub-properties:
- vendor string
- The vendor or publisher of this file.
- version
Contexts SoftwarerepositoryOperating System File Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Softwarerepository
Operating System File Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Sequence[Softwarerepository
Operating System File Catalog Args] - 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.
- 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.
- domain_
group_ strmoid - (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. - 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_ strtime - (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.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- The name of the file. It is populated as part of the image import operation.
- nr_
sources Sequence[SoftwarerepositoryOperating System File Nr Source Args] - 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[Softwarerepository
Operating System File Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[SoftwarerepositoryOperating System File Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release_
date str - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum str
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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_ strurl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository_
operating_ strsystem_ file_ id - Sequence[Softwarerepository
Operating System File Tag Args] - This complex property has following sub-properties:
- vendor str
- The vendor or publisher of this file.
- version_
contexts Sequence[SoftwarerepositoryOperating System File Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- download
Count 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.
- feature
Source 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. - import
Action 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. - import
State 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. - imported
Time 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.
- last
Access StringTime - (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 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.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the file. It is populated as part of the image import operation.
- nr
Sources List<Property Map> - Location of the file in an external repository. This complex property has following sub-properties:
- nr
Version String - Vendor provided version for the file.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release
Date String - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum String
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- software
Advisory StringUrl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository
Operating StringSystem File Id - List<Property Map>
- This complex property has following sub-properties:
- vendor String
- The vendor or publisher of this file.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the SoftwarerepositoryOperatingSystemFile 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 SoftwarerepositoryOperatingSystemFile Resource
Get an existing SoftwarerepositoryOperatingSystemFile 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?: SoftwarerepositoryOperatingSystemFileState, opts?: CustomResourceOptions): SoftwarerepositoryOperatingSystemFile
@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[SoftwarerepositoryOperatingSystemFileAncestorArgs]] = None,
catalogs: Optional[Sequence[SoftwarerepositoryOperatingSystemFileCatalogArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
download_count: Optional[float] = None,
feature_source: 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,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nr_sources: Optional[Sequence[SoftwarerepositoryOperatingSystemFileNrSourceArgs]] = None,
nr_version: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[SoftwarerepositoryOperatingSystemFileParentArgs]] = None,
permission_resources: Optional[Sequence[SoftwarerepositoryOperatingSystemFilePermissionResourceArgs]] = None,
release_date: Optional[str] = None,
sha512sum: Optional[str] = None,
shared_scope: Optional[str] = None,
size: Optional[float] = None,
software_advisory_url: Optional[str] = None,
softwarerepository_operating_system_file_id: Optional[str] = None,
tags: Optional[Sequence[SoftwarerepositoryOperatingSystemFileTagArgs]] = None,
vendor: Optional[str] = None,
version_contexts: Optional[Sequence[SoftwarerepositoryOperatingSystemFileVersionContextArgs]] = None) -> SoftwarerepositoryOperatingSystemFile
func GetSoftwarerepositoryOperatingSystemFile(ctx *Context, name string, id IDInput, state *SoftwarerepositoryOperatingSystemFileState, opts ...ResourceOption) (*SoftwarerepositoryOperatingSystemFile, error)
public static SoftwarerepositoryOperatingSystemFile Get(string name, Input<string> id, SoftwarerepositoryOperatingSystemFileState? state, CustomResourceOptions? opts = null)
public static SoftwarerepositoryOperatingSystemFile get(String name, Output<String> id, SoftwarerepositoryOperatingSystemFileState state, CustomResourceOptions options)
resources: _: type: intersight:SoftwarerepositoryOperatingSystemFile get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Softwarerepository
Operating System File Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
List<Softwarerepository
Operating System File Catalog> - 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 string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Download
Count 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.
- Feature
Source 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. - Import
Action 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. - Import
State 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. - Imported
Time 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.
- Last
Access stringTime - (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 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.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the file. It is populated as part of the image import operation.
- Nr
Sources List<SoftwarerepositoryOperating System File Nr Source> - Location of the file in an external repository. This complex property has following sub-properties:
- Nr
Version string - Vendor provided version for the file.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Softwarerepository
Operating System File Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<SoftwarerepositoryOperating System File Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Release
Date string - (ReadOnly) The date on which the file was released or distributed by its vendor.
- Sha512sum string
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- Software
Advisory stringUrl - The software advisory, if any, provided by the vendor for this file.
- Softwarerepository
Operating stringSystem File Id - List<Softwarerepository
Operating System File Tag> - This complex property has following sub-properties:
- Vendor string
- The vendor or publisher of this file.
- Version
Contexts List<SoftwarerepositoryOperating System File Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Softwarerepository
Operating System File Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
[]Softwarerepository
Operating System File Catalog Args - 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 string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Download
Count 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.
- Feature
Source 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. - Import
Action 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. - Import
State 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. - Imported
Time 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.
- Last
Access stringTime - (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 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.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the file. It is populated as part of the image import operation.
- Nr
Sources []SoftwarerepositoryOperating System File Nr Source Args - Location of the file in an external repository. This complex property has following sub-properties:
- Nr
Version string - Vendor provided version for the file.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Softwarerepository
Operating System File Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []SoftwarerepositoryOperating System File Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Release
Date string - (ReadOnly) The date on which the file was released or distributed by its vendor.
- Sha512sum string
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- Software
Advisory stringUrl - The software advisory, if any, provided by the vendor for this file.
- Softwarerepository
Operating stringSystem File Id - []Softwarerepository
Operating System File Tag Args - This complex property has following sub-properties:
- Vendor string
- The vendor or publisher of this file.
- Version
Contexts []SoftwarerepositoryOperating System File Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Softwarerepository
Operating System File Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
List<Softwarerepository
Operating System File Catalog> - 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 String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- download
Count 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.
- feature
Source 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. - import
Action 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. - import
State 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. - imported
Time 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.
- last
Access StringTime - (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 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.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the file. It is populated as part of the image import operation.
- nr
Sources List<SoftwarerepositoryOperating System File Nr Source> - Location of the file in an external repository. This complex property has following sub-properties:
- nr
Version String - Vendor provided version for the file.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Softwarerepository
Operating System File Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<SoftwarerepositoryOperating System File Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release
Date String - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum String
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- software
Advisory StringUrl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository
Operating StringSystem File Id - List<Softwarerepository
Operating System File Tag> - This complex property has following sub-properties:
- vendor String
- The vendor or publisher of this file.
- version
Contexts List<SoftwarerepositoryOperating System File Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Softwarerepository
Operating System File Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Softwarerepository
Operating System File Catalog[] - 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 string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- download
Count 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.
- feature
Source 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. - import
Action 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. - import
State 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. - imported
Time 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.
- last
Access stringTime - (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 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.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- The name of the file. It is populated as part of the image import operation.
- nr
Sources SoftwarerepositoryOperating System File Nr Source[] - Location of the file in an external repository. This complex property has following sub-properties:
- nr
Version string - Vendor provided version for the file.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Softwarerepository
Operating System File Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources SoftwarerepositoryOperating System File Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release
Date string - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum string
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- software
Advisory stringUrl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository
Operating stringSystem File Id - Softwarerepository
Operating System File Tag[] - This complex property has following sub-properties:
- vendor string
- The vendor or publisher of this file.
- version
Contexts SoftwarerepositoryOperating System File Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Softwarerepository
Operating System File Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Sequence[Softwarerepository
Operating System File Catalog Args] - 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.
- 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.
- domain_
group_ strmoid - (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. - 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_ strtime - (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.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- The name of the file. It is populated as part of the image import operation.
- nr_
sources Sequence[SoftwarerepositoryOperating System File Nr Source Args] - 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[Softwarerepository
Operating System File Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[SoftwarerepositoryOperating System File Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release_
date str - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum str
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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_ strurl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository_
operating_ strsystem_ file_ id - Sequence[Softwarerepository
Operating System File Tag Args] - This complex property has following sub-properties:
- vendor str
- The vendor or publisher of this file.
- version_
contexts Sequence[SoftwarerepositoryOperating System File Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- User provided description about the file. Cisco provided description for image inventoried from a Cisco repository.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- download
Count 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.
- feature
Source 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. - import
Action 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. - import
State 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. - imported
Time 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.
- last
Access StringTime - (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 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.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the file. It is populated as part of the image import operation.
- nr
Sources List<Property Map> - Location of the file in an external repository. This complex property has following sub-properties:
- nr
Version String - Vendor provided version for the file.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- release
Date String - (ReadOnly) The date on which the file was released or distributed by its vendor.
- sha512sum String
- The sha512sum of the file. This information is available for all Cisco distributed images and files imported to the local repository.
- 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.
- software
Advisory StringUrl - The software advisory, if any, provided by the vendor for this file.
- softwarerepository
Operating StringSystem File Id - List<Property Map>
- This complex property has following sub-properties:
- vendor String
- The vendor or publisher of this file.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
SoftwarerepositoryOperatingSystemFileAncestor, SoftwarerepositoryOperatingSystemFileAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SoftwarerepositoryOperatingSystemFileCatalog, SoftwarerepositoryOperatingSystemFileCatalogArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SoftwarerepositoryOperatingSystemFileNrSource, SoftwarerepositoryOperatingSystemFileNrSourceArgs
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional_
properties str - class_
id str - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
SoftwarerepositoryOperatingSystemFileParent, SoftwarerepositoryOperatingSystemFileParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SoftwarerepositoryOperatingSystemFilePermissionResource, SoftwarerepositoryOperatingSystemFilePermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SoftwarerepositoryOperatingSystemFileTag, SoftwarerepositoryOperatingSystemFileTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
SoftwarerepositoryOperatingSystemFileVersionContext, SoftwarerepositoryOperatingSystemFileVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<SoftwarerepositoryOperating System File Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<SoftwarerepositoryOperating System File Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []SoftwarerepositoryOperating System File Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []SoftwarerepositoryOperating System File Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<SoftwarerepositoryOperating System File Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<SoftwarerepositoryOperating System File Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos SoftwarerepositoryOperating System File Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos SoftwarerepositoryOperating System File Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[SoftwarerepositoryOperating System File Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[SoftwarerepositoryOperating System File Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
SoftwarerepositoryOperatingSystemFileVersionContextInterestedMo, SoftwarerepositoryOperatingSystemFileVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SoftwarerepositoryOperatingSystemFileVersionContextRefMo, SoftwarerepositoryOperatingSystemFileVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_softwarerepository_operating_system_file
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/softwarerepositoryOperatingSystemFile:SoftwarerepositoryOperatingSystemFile example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.