FileSource
Describe the source of a file asset.
Initializer
using AlibabaCloud.SDK.ROS.CDK.Assembly.Schema;
new FileSource {
    string[] Executable = null,
    FileAssetPackaging Packaging = null,
    string Path = null
};
Properties
| Name | Type | Description | 
|---|---|---|
| Executable | string[] | External command which will produce the file asset to upload. | 
| Packaging | FileAssetPackaging | Packaging method. | 
| Path | string | The filesystem object to upload. | 
ExecutableOptional 
public string[] Executable { get; set; }
- Type: string[]
- Default: Exactly one of executableandpathis required.
External command which will produce the file asset to upload.
PackagingOptional 
public FileAssetPackaging Packaging { get; set; }
- Type: FileAssetPackaging
- Default: FILE
Packaging method.
Only allowed when path is specified.
PathOptional 
public string Path { get; set; }
- Type: string
- Default: Exactly one of executableandpathis required.
The filesystem object to upload.
This path is relative to the asset manifest location.