vcd.CatalogMedia
Explore with Pulumi AI
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. - Catalog
Id string - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - Catalog
Media stringId - Description string
- Description of media file
- Media
Path string - Absolute or relative path to file to upload
- Metadata Dictionary<string, string>
- Use
metadata_entry
instead. Key value map of metadata to assign - Metadata
Entries List<CatalogMedia Metadata Entry> - 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
- Show
Upload boolProgress - Default false. Allows to see upload progress. (See note below)
- Upload
Any boolFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - Upload
Piece doubleSize - 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. - Catalog
Id string - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - Catalog
Media stringId - Description string
- Description of media file
- Media
Path string - Absolute or relative path to file to upload
- Metadata map[string]string
- Use
metadata_entry
instead. Key value map of metadata to assign - Metadata
Entries []CatalogMedia Metadata Entry Args - 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
- Show
Upload boolProgress - Default false. Allows to see upload progress. (See note below)
- Upload
Any boolFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - Upload
Piece float64Size - 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. - catalog
Id String - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog
Media StringId - description String
- Description of media file
- media
Path String - Absolute or relative path to file to upload
- metadata Map<String,String>
- Use
metadata_entry
instead. Key value map of metadata to assign - metadata
Entries List<CatalogMedia Metadata Entry> - 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
- show
Upload BooleanProgress - Default false. Allows to see upload progress. (See note below)
- upload
Any BooleanFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload
Piece DoubleSize - 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. - catalog
Id string - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog
Media stringId - description string
- Description of media file
- media
Path string - Absolute or relative path to file to upload
- metadata {[key: string]: string}
- Use
metadata_entry
instead. Key value map of metadata to assign - metadata
Entries CatalogMedia Metadata Entry[] - 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
- show
Upload booleanProgress - Default false. Allows to see upload progress. (See note below)
- upload
Any booleanFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload
Piece numberSize - 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. - catalog_
id str - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog_
media_ strid - 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 - metadata_
entries Sequence[CatalogMedia Metadata Entry Args] - 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_ boolprogress - Default false. Allows to see upload progress. (See note below)
- upload_
any_ boolfile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload_
piece_ floatsize - 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. - catalog
Id String - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog
Media StringId - description String
- Description of media file
- media
Path String - Absolute or relative path to file to upload
- metadata Map<String>
- Use
metadata_entry
instead. Key value map of metadata to assign - metadata
Entries 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
- show
Upload BooleanProgress - Default false. Allows to see upload progress. (See note below)
- upload
Any BooleanFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload
Piece NumberSize - 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:
- Catalog
Item stringId - Catalog Item ID of this media item
- Creation
Date string - (Computed) returns creation date
- Id string
- 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 string - (Computed) returns owner name
- Size double
- (Computed) returns media storage in Bytes
- Status string
- (Computed) returns media status
- Storage
Profile stringName - (Computed) returns storage profile name
- Catalog
Item stringId - Catalog Item ID of this media item
- Creation
Date string - (Computed) returns creation date
- Id string
- 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 string - (Computed) returns owner name
- Size float64
- (Computed) returns media storage in Bytes
- Status string
- (Computed) returns media status
- Storage
Profile stringName - (Computed) returns storage profile name
- catalog
Item StringId - Catalog Item ID of this media item
- creation
Date String - (Computed) returns creation date
- id String
- The provider-assigned unique ID for this managed resource.
- is
Iso Boolean - (Computed) returns True if this media file is ISO
- is
Published Boolean - (Computed) returns True if this media file is in a published catalog
- owner
Name String - (Computed) returns owner name
- size Double
- (Computed) returns media storage in Bytes
- status String
- (Computed) returns media status
- storage
Profile StringName - (Computed) returns storage profile name
- catalog
Item stringId - Catalog Item ID of this media item
- creation
Date string - (Computed) returns creation date
- id string
- The provider-assigned unique ID for this managed resource.
- is
Iso boolean - (Computed) returns True if this media file is ISO
- is
Published boolean - (Computed) returns True if this media file is in a published catalog
- owner
Name string - (Computed) returns owner name
- size number
- (Computed) returns media storage in Bytes
- status string
- (Computed) returns media status
- storage
Profile stringName - (Computed) returns storage profile name
- catalog_
item_ strid - 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_ strname - (Computed) returns storage profile name
- catalog
Item StringId - Catalog Item ID of this media item
- creation
Date String - (Computed) returns creation date
- id String
- The provider-assigned unique ID for this managed resource.
- is
Iso Boolean - (Computed) returns True if this media file is ISO
- is
Published Boolean - (Computed) returns True if this media file is in a published catalog
- owner
Name String - (Computed) returns owner name
- size Number
- (Computed) returns media storage in Bytes
- status String
- (Computed) returns media status
- storage
Profile StringName - (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.
- Catalog string
- The name of the catalog where to upload media file. It's mandatory if
catalog_id
is not used. - Catalog
Id string - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - Catalog
Item stringId - Catalog Item ID of this media item
- Catalog
Media stringId - Creation
Date string - (Computed) returns creation date
- Description string
- 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 string - Absolute or relative path to file to upload
- Metadata Dictionary<string, string>
- Use
metadata_entry
instead. Key value map of metadata to assign - Metadata
Entries List<CatalogMedia Metadata Entry> - 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
- Owner
Name string - (Computed) returns owner name
- Show
Upload boolProgress - Default false. Allows to see upload progress. (See note below)
- Size double
- (Computed) returns media storage in Bytes
- Status string
- (Computed) returns media status
- Storage
Profile stringName - (Computed) returns storage profile name
- Upload
Any boolFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - Upload
Piece doubleSize - 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. - Catalog
Id string - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - Catalog
Item stringId - Catalog Item ID of this media item
- Catalog
Media stringId - Creation
Date string - (Computed) returns creation date
- Description string
- 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 string - Absolute or relative path to file to upload
- Metadata map[string]string
- Use
metadata_entry
instead. Key value map of metadata to assign - Metadata
Entries []CatalogMedia Metadata Entry Args - 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
- Owner
Name string - (Computed) returns owner name
- Show
Upload boolProgress - Default false. Allows to see upload progress. (See note below)
- Size float64
- (Computed) returns media storage in Bytes
- Status string
- (Computed) returns media status
- Storage
Profile stringName - (Computed) returns storage profile name
- Upload
Any boolFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - Upload
Piece float64Size - 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. - catalog
Id String - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog
Item StringId - Catalog Item ID of this media item
- catalog
Media StringId - creation
Date String - (Computed) returns creation date
- description String
- Description of media file
- is
Iso Boolean - (Computed) returns True if this media file is ISO
- is
Published Boolean - (Computed) returns True if this media file is in a published catalog
- media
Path String - Absolute or relative path to file to upload
- metadata Map<String,String>
- Use
metadata_entry
instead. Key value map of metadata to assign - metadata
Entries List<CatalogMedia Metadata Entry> - 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
- owner
Name String - (Computed) returns owner name
- show
Upload BooleanProgress - Default false. Allows to see upload progress. (See note below)
- size Double
- (Computed) returns media storage in Bytes
- status String
- (Computed) returns media status
- storage
Profile StringName - (Computed) returns storage profile name
- upload
Any BooleanFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload
Piece DoubleSize - 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. - catalog
Id string - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog
Item stringId - Catalog Item ID of this media item
- catalog
Media stringId - creation
Date string - (Computed) returns creation date
- description string
- Description of media file
- is
Iso boolean - (Computed) returns True if this media file is ISO
- is
Published boolean - (Computed) returns True if this media file is in a published catalog
- media
Path string - Absolute or relative path to file to upload
- metadata {[key: string]: string}
- Use
metadata_entry
instead. Key value map of metadata to assign - metadata
Entries CatalogMedia Metadata Entry[] - 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
- owner
Name string - (Computed) returns owner name
- show
Upload booleanProgress - Default false. Allows to see upload progress. (See note below)
- size number
- (Computed) returns media storage in Bytes
- status string
- (Computed) returns media status
- storage
Profile stringName - (Computed) returns storage profile name
- upload
Any booleanFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload
Piece numberSize - 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. - catalog_
id str - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog_
item_ strid - Catalog Item ID of this media item
- catalog_
media_ strid - 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 - metadata_
entries Sequence[CatalogMedia Metadata Entry Args] - 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_ boolprogress - 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_ strname - (Computed) returns storage profile name
- upload_
any_ boolfile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload_
piece_ floatsize - 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. - catalog
Id String - The ID of the catalog where to upload media file. It's mandatory if
catalog
field is not used. - catalog
Item StringId - Catalog Item ID of this media item
- catalog
Media StringId - creation
Date String - (Computed) returns creation date
- description String
- Description of media file
- is
Iso Boolean - (Computed) returns True if this media file is ISO
- is
Published Boolean - (Computed) returns True if this media file is in a published catalog
- media
Path String - Absolute or relative path to file to upload
- metadata Map<String>
- Use
metadata_entry
instead. Key value map of metadata to assign - metadata
Entries 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
- owner
Name String - (Computed) returns owner name
- show
Upload BooleanProgress - Default false. Allows to see upload progress. (See note below)
- size Number
- (Computed) returns media storage in Bytes
- status String
- (Computed) returns media status
- storage
Profile StringName - (Computed) returns storage profile name
- upload
Any BooleanFile - If
true
, allows uploading any file type. With the defaultfalse
, we can only upload.ISO
files. - upload
Piece NumberSize - size in MB for splitting upload size. It can possibly impact upload performance. Default 1MB.
Supporting Types
CatalogMediaMetadataEntry, CatalogMediaMetadataEntryArgs
- Is
System 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'
- User
Access 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 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'
- User
Access 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 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'
- user
Access 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 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'
- user
Access 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
- is
System 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'
- user
Access 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.