1. Packages
  2. Vcd Provider
  3. API Docs
  4. CatalogMedia
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.CatalogMedia

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create CatalogMedia Resource

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

    Constructor syntax

    new CatalogMedia(name: string, args?: CatalogMediaArgs, opts?: CustomResourceOptions);
    @overload
    def CatalogMedia(resource_name: str,
                     args: Optional[CatalogMediaArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def CatalogMedia(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     catalog: Optional[str] = None,
                     catalog_id: Optional[str] = None,
                     catalog_media_id: Optional[str] = None,
                     description: Optional[str] = None,
                     media_path: Optional[str] = None,
                     metadata: Optional[Mapping[str, str]] = None,
                     metadata_entries: Optional[Sequence[CatalogMediaMetadataEntryArgs]] = None,
                     name: Optional[str] = None,
                     org: Optional[str] = None,
                     show_upload_progress: Optional[bool] = None,
                     upload_any_file: Optional[bool] = None,
                     upload_piece_size: Optional[float] = None)
    func NewCatalogMedia(ctx *Context, name string, args *CatalogMediaArgs, opts ...ResourceOption) (*CatalogMedia, error)
    public CatalogMedia(string name, CatalogMediaArgs? args = null, CustomResourceOptions? opts = null)
    public CatalogMedia(String name, CatalogMediaArgs args)
    public CatalogMedia(String name, CatalogMediaArgs args, CustomResourceOptions options)
    
    type: vcd:CatalogMedia
    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 CatalogMediaArgs
    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 CatalogMediaArgs
    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 CatalogMediaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CatalogMediaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CatalogMediaArgs
    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 catalogMediaResource = new Vcd.CatalogMedia("catalogMediaResource", new()
    {
        CatalogId = "string",
        CatalogMediaId = "string",
        Description = "string",
        MediaPath = "string",
        MetadataEntries = new[]
        {
            new Vcd.Inputs.CatalogMediaMetadataEntryArgs
            {
                IsSystem = false,
                Key = "string",
                Type = "string",
                UserAccess = "string",
                Value = "string",
            },
        },
        Name = "string",
        Org = "string",
        ShowUploadProgress = false,
        UploadAnyFile = false,
        UploadPieceSize = 0,
    });
    
    example, err := vcd.NewCatalogMedia(ctx, "catalogMediaResource", &vcd.CatalogMediaArgs{
    	CatalogId:      pulumi.String("string"),
    	CatalogMediaId: pulumi.String("string"),
    	Description:    pulumi.String("string"),
    	MediaPath:      pulumi.String("string"),
    	MetadataEntries: vcd.CatalogMediaMetadataEntryArray{
    		&vcd.CatalogMediaMetadataEntryArgs{
    			IsSystem:   pulumi.Bool(false),
    			Key:        pulumi.String("string"),
    			Type:       pulumi.String("string"),
    			UserAccess: pulumi.String("string"),
    			Value:      pulumi.String("string"),
    		},
    	},
    	Name:               pulumi.String("string"),
    	Org:                pulumi.String("string"),
    	ShowUploadProgress: pulumi.Bool(false),
    	UploadAnyFile:      pulumi.Bool(false),
    	UploadPieceSize:    pulumi.Float64(0),
    })
    
    var catalogMediaResource = new CatalogMedia("catalogMediaResource", CatalogMediaArgs.builder()
        .catalogId("string")
        .catalogMediaId("string")
        .description("string")
        .mediaPath("string")
        .metadataEntries(CatalogMediaMetadataEntryArgs.builder()
            .isSystem(false)
            .key("string")
            .type("string")
            .userAccess("string")
            .value("string")
            .build())
        .name("string")
        .org("string")
        .showUploadProgress(false)
        .uploadAnyFile(false)
        .uploadPieceSize(0)
        .build());
    
    catalog_media_resource = vcd.CatalogMedia("catalogMediaResource",
        catalog_id="string",
        catalog_media_id="string",
        description="string",
        media_path="string",
        metadata_entries=[{
            "is_system": False,
            "key": "string",
            "type": "string",
            "user_access": "string",
            "value": "string",
        }],
        name="string",
        org="string",
        show_upload_progress=False,
        upload_any_file=False,
        upload_piece_size=0)
    
    const catalogMediaResource = new vcd.CatalogMedia("catalogMediaResource", {
        catalogId: "string",
        catalogMediaId: "string",
        description: "string",
        mediaPath: "string",
        metadataEntries: [{
            isSystem: false,
            key: "string",
            type: "string",
            userAccess: "string",
            value: "string",
        }],
        name: "string",
        org: "string",
        showUploadProgress: false,
        uploadAnyFile: false,
        uploadPieceSize: 0,
    });
    
    type: vcd:CatalogMedia
    properties:
        catalogId: string
        catalogMediaId: string
        description: string
        mediaPath: string
        metadataEntries:
            - isSystem: false
              key: string
              type: string
              userAccess: string
              value: string
        name: string
        org: string
        showUploadProgress: false
        uploadAnyFile: false
        uploadPieceSize: 0
    

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

    Catalog string
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    CatalogId string
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    CatalogMediaId string
    Description string
    Description of media file
    MediaPath string
    Absolute or relative path to file to upload
    Metadata Dictionary<string, string>
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    MetadataEntries List<CatalogMediaMetadataEntry>
    A set of metadata entries to assign. See Metadata section for details.
    Name string
    Media file name in catalog
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    ShowUploadProgress bool
    Default false. Allows to see upload progress. (See note below)
    UploadAnyFile bool
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    UploadPieceSize double
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    Catalog string
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    CatalogId string
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    CatalogMediaId string
    Description string
    Description of media file
    MediaPath string
    Absolute or relative path to file to upload
    Metadata map[string]string
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    MetadataEntries []CatalogMediaMetadataEntryArgs
    A set of metadata entries to assign. See Metadata section for details.
    Name string
    Media file name in catalog
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    ShowUploadProgress bool
    Default false. Allows to see upload progress. (See note below)
    UploadAnyFile bool
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    UploadPieceSize float64
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog String
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalogId String
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalogMediaId String
    description String
    Description of media file
    mediaPath String
    Absolute or relative path to file to upload
    metadata Map<String,String>
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadataEntries List<CatalogMediaMetadataEntry>
    A set of metadata entries to assign. See Metadata section for details.
    name String
    Media file name in catalog
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    showUploadProgress Boolean
    Default false. Allows to see upload progress. (See note below)
    uploadAnyFile Boolean
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    uploadPieceSize Double
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog string
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalogId string
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalogMediaId string
    description string
    Description of media file
    mediaPath string
    Absolute or relative path to file to upload
    metadata {[key: string]: string}
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadataEntries CatalogMediaMetadataEntry[]
    A set of metadata entries to assign. See Metadata section for details.
    name string
    Media file name in catalog
    org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    showUploadProgress boolean
    Default false. Allows to see upload progress. (See note below)
    uploadAnyFile boolean
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    uploadPieceSize number
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog str
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalog_id str
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalog_media_id str
    description str
    Description of media file
    media_path str
    Absolute or relative path to file to upload
    metadata Mapping[str, str]
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadata_entries Sequence[CatalogMediaMetadataEntryArgs]
    A set of metadata entries to assign. See Metadata section for details.
    name str
    Media file name in catalog
    org str
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    show_upload_progress bool
    Default false. Allows to see upload progress. (See note below)
    upload_any_file bool
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    upload_piece_size float
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog String
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalogId String
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalogMediaId String
    description String
    Description of media file
    mediaPath String
    Absolute or relative path to file to upload
    metadata Map<String>
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadataEntries List<Property Map>
    A set of metadata entries to assign. See Metadata section for details.
    name String
    Media file name in catalog
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    showUploadProgress Boolean
    Default false. Allows to see upload progress. (See note below)
    uploadAnyFile Boolean
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    uploadPieceSize Number
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CatalogMedia resource produces the following output properties:

    CatalogItemId string
    Catalog Item ID of this media item
    CreationDate string
    (Computed) returns creation date
    Id string
    The provider-assigned unique ID for this managed resource.
    IsIso bool
    (Computed) returns True if this media file is ISO
    IsPublished bool
    (Computed) returns True if this media file is in a published catalog
    OwnerName string
    (Computed) returns owner name
    Size double
    (Computed) returns media storage in Bytes
    Status string
    (Computed) returns media status
    StorageProfileName string
    (Computed) returns storage profile name
    CatalogItemId string
    Catalog Item ID of this media item
    CreationDate string
    (Computed) returns creation date
    Id string
    The provider-assigned unique ID for this managed resource.
    IsIso bool
    (Computed) returns True if this media file is ISO
    IsPublished bool
    (Computed) returns True if this media file is in a published catalog
    OwnerName string
    (Computed) returns owner name
    Size float64
    (Computed) returns media storage in Bytes
    Status string
    (Computed) returns media status
    StorageProfileName string
    (Computed) returns storage profile name
    catalogItemId String
    Catalog Item ID of this media item
    creationDate String
    (Computed) returns creation date
    id String
    The provider-assigned unique ID for this managed resource.
    isIso Boolean
    (Computed) returns True if this media file is ISO
    isPublished Boolean
    (Computed) returns True if this media file is in a published catalog
    ownerName String
    (Computed) returns owner name
    size Double
    (Computed) returns media storage in Bytes
    status String
    (Computed) returns media status
    storageProfileName String
    (Computed) returns storage profile name
    catalogItemId string
    Catalog Item ID of this media item
    creationDate string
    (Computed) returns creation date
    id string
    The provider-assigned unique ID for this managed resource.
    isIso boolean
    (Computed) returns True if this media file is ISO
    isPublished boolean
    (Computed) returns True if this media file is in a published catalog
    ownerName string
    (Computed) returns owner name
    size number
    (Computed) returns media storage in Bytes
    status string
    (Computed) returns media status
    storageProfileName string
    (Computed) returns storage profile name
    catalog_item_id str
    Catalog Item ID of this media item
    creation_date str
    (Computed) returns creation date
    id str
    The provider-assigned unique ID for this managed resource.
    is_iso bool
    (Computed) returns True if this media file is ISO
    is_published bool
    (Computed) returns True if this media file is in a published catalog
    owner_name str
    (Computed) returns owner name
    size float
    (Computed) returns media storage in Bytes
    status str
    (Computed) returns media status
    storage_profile_name str
    (Computed) returns storage profile name
    catalogItemId String
    Catalog Item ID of this media item
    creationDate String
    (Computed) returns creation date
    id String
    The provider-assigned unique ID for this managed resource.
    isIso Boolean
    (Computed) returns True if this media file is ISO
    isPublished Boolean
    (Computed) returns True if this media file is in a published catalog
    ownerName String
    (Computed) returns owner name
    size Number
    (Computed) returns media storage in Bytes
    status String
    (Computed) returns media status
    storageProfileName String
    (Computed) returns storage profile name

    Look up Existing CatalogMedia Resource

    Get an existing CatalogMedia 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?: CatalogMediaState, opts?: CustomResourceOptions): CatalogMedia
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            catalog: Optional[str] = None,
            catalog_id: Optional[str] = None,
            catalog_item_id: Optional[str] = None,
            catalog_media_id: Optional[str] = None,
            creation_date: Optional[str] = None,
            description: Optional[str] = None,
            is_iso: Optional[bool] = None,
            is_published: Optional[bool] = None,
            media_path: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            metadata_entries: Optional[Sequence[CatalogMediaMetadataEntryArgs]] = None,
            name: Optional[str] = None,
            org: Optional[str] = None,
            owner_name: Optional[str] = None,
            show_upload_progress: Optional[bool] = None,
            size: Optional[float] = None,
            status: Optional[str] = None,
            storage_profile_name: Optional[str] = None,
            upload_any_file: Optional[bool] = None,
            upload_piece_size: Optional[float] = None) -> CatalogMedia
    func GetCatalogMedia(ctx *Context, name string, id IDInput, state *CatalogMediaState, opts ...ResourceOption) (*CatalogMedia, error)
    public static CatalogMedia Get(string name, Input<string> id, CatalogMediaState? state, CustomResourceOptions? opts = null)
    public static CatalogMedia get(String name, Output<String> id, CatalogMediaState state, CustomResourceOptions options)
    resources:  _:    type: vcd:CatalogMedia    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Catalog string
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    CatalogId string
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    CatalogItemId string
    Catalog Item ID of this media item
    CatalogMediaId string
    CreationDate string
    (Computed) returns creation date
    Description string
    Description of media file
    IsIso bool
    (Computed) returns True if this media file is ISO
    IsPublished bool
    (Computed) returns True if this media file is in a published catalog
    MediaPath string
    Absolute or relative path to file to upload
    Metadata Dictionary<string, string>
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    MetadataEntries List<CatalogMediaMetadataEntry>
    A set of metadata entries to assign. See Metadata section for details.
    Name string
    Media file name in catalog
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    OwnerName string
    (Computed) returns owner name
    ShowUploadProgress bool
    Default false. Allows to see upload progress. (See note below)
    Size double
    (Computed) returns media storage in Bytes
    Status string
    (Computed) returns media status
    StorageProfileName string
    (Computed) returns storage profile name
    UploadAnyFile bool
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    UploadPieceSize double
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    Catalog string
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    CatalogId string
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    CatalogItemId string
    Catalog Item ID of this media item
    CatalogMediaId string
    CreationDate string
    (Computed) returns creation date
    Description string
    Description of media file
    IsIso bool
    (Computed) returns True if this media file is ISO
    IsPublished bool
    (Computed) returns True if this media file is in a published catalog
    MediaPath string
    Absolute or relative path to file to upload
    Metadata map[string]string
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    MetadataEntries []CatalogMediaMetadataEntryArgs
    A set of metadata entries to assign. See Metadata section for details.
    Name string
    Media file name in catalog
    Org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    OwnerName string
    (Computed) returns owner name
    ShowUploadProgress bool
    Default false. Allows to see upload progress. (See note below)
    Size float64
    (Computed) returns media storage in Bytes
    Status string
    (Computed) returns media status
    StorageProfileName string
    (Computed) returns storage profile name
    UploadAnyFile bool
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    UploadPieceSize float64
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog String
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalogId String
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalogItemId String
    Catalog Item ID of this media item
    catalogMediaId String
    creationDate String
    (Computed) returns creation date
    description String
    Description of media file
    isIso Boolean
    (Computed) returns True if this media file is ISO
    isPublished Boolean
    (Computed) returns True if this media file is in a published catalog
    mediaPath String
    Absolute or relative path to file to upload
    metadata Map<String,String>
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadataEntries List<CatalogMediaMetadataEntry>
    A set of metadata entries to assign. See Metadata section for details.
    name String
    Media file name in catalog
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    ownerName String
    (Computed) returns owner name
    showUploadProgress Boolean
    Default false. Allows to see upload progress. (See note below)
    size Double
    (Computed) returns media storage in Bytes
    status String
    (Computed) returns media status
    storageProfileName String
    (Computed) returns storage profile name
    uploadAnyFile Boolean
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    uploadPieceSize Double
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog string
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalogId string
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalogItemId string
    Catalog Item ID of this media item
    catalogMediaId string
    creationDate string
    (Computed) returns creation date
    description string
    Description of media file
    isIso boolean
    (Computed) returns True if this media file is ISO
    isPublished boolean
    (Computed) returns True if this media file is in a published catalog
    mediaPath string
    Absolute or relative path to file to upload
    metadata {[key: string]: string}
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadataEntries CatalogMediaMetadataEntry[]
    A set of metadata entries to assign. See Metadata section for details.
    name string
    Media file name in catalog
    org string
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    ownerName string
    (Computed) returns owner name
    showUploadProgress boolean
    Default false. Allows to see upload progress. (See note below)
    size number
    (Computed) returns media storage in Bytes
    status string
    (Computed) returns media status
    storageProfileName string
    (Computed) returns storage profile name
    uploadAnyFile boolean
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    uploadPieceSize number
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog str
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalog_id str
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalog_item_id str
    Catalog Item ID of this media item
    catalog_media_id str
    creation_date str
    (Computed) returns creation date
    description str
    Description of media file
    is_iso bool
    (Computed) returns True if this media file is ISO
    is_published bool
    (Computed) returns True if this media file is in a published catalog
    media_path str
    Absolute or relative path to file to upload
    metadata Mapping[str, str]
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadata_entries Sequence[CatalogMediaMetadataEntryArgs]
    A set of metadata entries to assign. See Metadata section for details.
    name str
    Media file name in catalog
    org str
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    owner_name str
    (Computed) returns owner name
    show_upload_progress bool
    Default false. Allows to see upload progress. (See note below)
    size float
    (Computed) returns media storage in Bytes
    status str
    (Computed) returns media status
    storage_profile_name str
    (Computed) returns storage profile name
    upload_any_file bool
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    upload_piece_size float
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
    catalog String
    The name of the catalog where to upload media file. It's mandatory if catalog_id is not used.

    Deprecated: Deprecated

    catalogId String
    The ID of the catalog where to upload media file. It's mandatory if catalog field is not used.
    catalogItemId String
    Catalog Item ID of this media item
    catalogMediaId String
    creationDate String
    (Computed) returns creation date
    description String
    Description of media file
    isIso Boolean
    (Computed) returns True if this media file is ISO
    isPublished Boolean
    (Computed) returns True if this media file is in a published catalog
    mediaPath String
    Absolute or relative path to file to upload
    metadata Map<String>
    Use metadata_entry instead. Key value map of metadata to assign

    Deprecated: Deprecated

    metadataEntries List<Property Map>
    A set of metadata entries to assign. See Metadata section for details.
    name String
    Media file name in catalog
    org String
    The name of organization to use, optional if defined at provider level. Useful when connected as sysadmin working across different organisations
    ownerName String
    (Computed) returns owner name
    showUploadProgress Boolean
    Default false. Allows to see upload progress. (See note below)
    size Number
    (Computed) returns media storage in Bytes
    status String
    (Computed) returns media status
    storageProfileName String
    (Computed) returns storage profile name
    uploadAnyFile Boolean
    If true, allows uploading any file type. With the default false, we can only upload .ISO files.
    uploadPieceSize Number
    size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.

    Supporting Types

    CatalogMediaMetadataEntry, CatalogMediaMetadataEntryArgs

    IsSystem bool
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    Key string
    Key of this metadata entry. Required if the metadata entry is not empty
    Type string
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    UserAccess string
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    Value string
    Value of this metadata entry. Required if the metadata entry is not empty
    IsSystem bool
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    Key string
    Key of this metadata entry. Required if the metadata entry is not empty
    Type string
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    UserAccess string
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    Value string
    Value of this metadata entry. Required if the metadata entry is not empty
    isSystem Boolean
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key String
    Key of this metadata entry. Required if the metadata entry is not empty
    type String
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    userAccess String
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value String
    Value of this metadata entry. Required if the metadata entry is not empty
    isSystem boolean
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key string
    Key of this metadata entry. Required if the metadata entry is not empty
    type string
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    userAccess string
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value string
    Value of this metadata entry. Required if the metadata entry is not empty
    is_system bool
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key str
    Key of this metadata entry. Required if the metadata entry is not empty
    type str
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    user_access str
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value str
    Value of this metadata entry. Required if the metadata entry is not empty
    isSystem Boolean
    Domain for this metadata entry. true, if it belongs to SYSTEM. false, if it belongs to GENERAL
    key String
    Key of this metadata entry. Required if the metadata entry is not empty
    type String
    Type of this metadata entry. One of: 'MetadataStringValue', 'MetadataNumberValue', 'MetadataBooleanValue', 'MetadataDateTimeValue'
    userAccess String
    User access level for this metadata entry. One of: 'READWRITE', 'READONLY', 'PRIVATE'
    value String
    Value of this metadata entry. Required if the metadata entry is not empty

    Package Details

    Repository
    vcd vmware/terraform-provider-vcd
    License
    Notes
    This Pulumi package is based on the vcd Terraform Provider.
    vcd logo
    vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware