ImportManifest¶
-
class
oci.application_migration.models.
ImportManifest
(**kwargs)¶ Bases:
object
Manifest describing details about an import source
Methods
__init__
(**kwargs)Initializes a new ImportManifest object with values from keyword arguments. Attributes
export_details
Gets the export_details of this ImportManifest. export_type
Gets the export_type of this ImportManifest. md5
Gets the md5 of this ImportManifest. signature
Gets the signature of this ImportManifest. timestamp
Gets the timestamp of this ImportManifest. version
Gets the version of this ImportManifest. -
__init__
(**kwargs)¶ Initializes a new ImportManifest object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - version (str) – The value to assign to the version property of this ImportManifest.
- export_type (str) – The value to assign to the export_type property of this ImportManifest.
- export_details (object) – The value to assign to the export_details property of this ImportManifest.
- timestamp (datetime) – The value to assign to the timestamp property of this ImportManifest.
- md5 (str) – The value to assign to the md5 property of this ImportManifest.
- signature (str) – The value to assign to the signature property of this ImportManifest.
-
export_details
¶ Gets the export_details of this ImportManifest. application specific details as parsed from various sources of the application that was exported
Returns: The export_details of this ImportManifest. Return type: object
-
export_type
¶ Gets the export_type of this ImportManifest. the type of application that the export tool was executed against to generate this manifest
Returns: The export_type of this ImportManifest. Return type: str
-
md5
¶ Gets the md5 of this ImportManifest. the MD5 hash of the export artifact archive that was produced by the export tool and should be used with this manifest
Returns: The md5 of this ImportManifest. Return type: str
-
signature
¶ Gets the signature of this ImportManifest. a sha1 hash of all the fields of this manifest (excluding the signature)
Returns: The signature of this ImportManifest. Return type: str
-
timestamp
¶ Gets the timestamp of this ImportManifest. when this manifest was generated
Returns: The timestamp of this ImportManifest. Return type: datetime
-
version
¶ Gets the version of this ImportManifest. the version of the export tool that was used to generate the manifest
Returns: The version of this ImportManifest. Return type: str
-