PrivateApplicationPackageSummary¶
- 
class 
oci.service_catalog.models.PrivateApplicationPackageSummary(**kwargs)¶ Bases:
objectThe model for a summary of a private application package.
Attributes
PACKAGE_TYPE_STACKA constant which can be used with the package_type property of a PrivateApplicationPackageSummary. display_nameGets the display_name of this PrivateApplicationPackageSummary. id[Required] Gets the id of this PrivateApplicationPackageSummary. package_type[Required] Gets the package_type of this PrivateApplicationPackageSummary. private_application_id[Required] Gets the private_application_id of this PrivateApplicationPackageSummary. time_created[Required] Gets the time_created of this PrivateApplicationPackageSummary. version[Required] Gets the version of this PrivateApplicationPackageSummary. Methods
__init__(**kwargs)Initializes a new PrivateApplicationPackageSummary object with values from keyword arguments. - 
PACKAGE_TYPE_STACK= 'STACK'¶ A constant which can be used with the package_type property of a PrivateApplicationPackageSummary. This constant has a value of “STACK”
- 
__init__(**kwargs)¶ Initializes a new PrivateApplicationPackageSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - id (str) – The value to assign to the id property of this PrivateApplicationPackageSummary.
 - private_application_id (str) – The value to assign to the private_application_id property of this PrivateApplicationPackageSummary.
 - display_name (str) – The value to assign to the display_name property of this PrivateApplicationPackageSummary.
 - version (str) – The value to assign to the version property of this PrivateApplicationPackageSummary.
 - package_type (str) – The value to assign to the package_type property of this PrivateApplicationPackageSummary. Allowed values for this property are: “STACK”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
 - time_created (datetime) – The value to assign to the time_created property of this PrivateApplicationPackageSummary.
 
- 
display_name¶ Gets the display_name of this PrivateApplicationPackageSummary. The display name of the specified package.
Returns: The display_name of this PrivateApplicationPackageSummary. Return type: str 
- 
id¶ [Required] Gets the id of this PrivateApplicationPackageSummary. The OCID of the private application package.
Returns: The id of this PrivateApplicationPackageSummary. Return type: str 
- 
package_type¶ [Required] Gets the package_type of this PrivateApplicationPackageSummary. The type of the package.
Allowed values for this property are: “STACK”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The package_type of this PrivateApplicationPackageSummary. Return type: str 
- 
private_application_id¶ [Required] Gets the private_application_id of this PrivateApplicationPackageSummary. The OCID of the private application where the package is hosted.
Returns: The private_application_id of this PrivateApplicationPackageSummary. Return type: str 
- 
time_created¶ [Required] Gets the time_created of this PrivateApplicationPackageSummary. The date and time the private application package was created, expressed in RFC 3339 timestamp format.
Example: 2021-05-27T21:10:29.600Z
Returns: The time_created of this PrivateApplicationPackageSummary. Return type: datetime 
- 
version¶ [Required] Gets the version of this PrivateApplicationPackageSummary. The version of the specified package.
Returns: The version of this PrivateApplicationPackageSummary. Return type: str 
-