CreateContainerImageFunctionSourceDetails¶
-
class
oci.functions.models.CreateContainerImageFunctionSourceDetails(**kwargs)¶ Bases:
oci.functions.models.create_function_source_details.CreateFunctionSourceDetailsSource details for creating a container image based function.
Attributes
SOURCE_TYPE_ARCHIVEstr(object=’’) -> str SOURCE_TYPE_CONTAINER_IMAGEstr(object=’’) -> str SOURCE_TYPE_PRE_BUILT_FUNCTIONSstr(object=’’) -> str image[Required] Gets the image of this CreateContainerImageFunctionSourceDetails. image_digestGets the image_digest of this CreateContainerImageFunctionSourceDetails. source_type[Required] Gets the source_type of this CreateFunctionSourceDetails. Methods
__init__(**kwargs)Initializes a new CreateContainerImageFunctionSourceDetails object with values from keyword arguments. get_subtype(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
SOURCE_TYPE_ARCHIVE= 'ARCHIVE'¶
-
SOURCE_TYPE_CONTAINER_IMAGE= 'CONTAINER_IMAGE'¶
-
SOURCE_TYPE_PRE_BUILT_FUNCTIONS= 'PRE_BUILT_FUNCTIONS'¶
-
__init__(**kwargs)¶ Initializes a new CreateContainerImageFunctionSourceDetails object with values from keyword arguments. The default value of the
source_typeattribute of this class isCONTAINER_IMAGEand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - source_type (str) – The value to assign to the source_type property of this CreateContainerImageFunctionSourceDetails. Allowed values for this property are: “PRE_BUILT_FUNCTIONS”, “ARCHIVE”, “CONTAINER_IMAGE”
- image (str) – The value to assign to the image property of this CreateContainerImageFunctionSourceDetails.
- image_digest (str) – The value to assign to the image_digest property of this CreateContainerImageFunctionSourceDetails.
-
static
get_subtype(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
image¶ [Required] Gets the image of this CreateContainerImageFunctionSourceDetails. The qualified name of the Docker image to use in the function, including the image tag. The image should be in the OCI Registry that is in the same region as the function itself. Example: phx.ocir.io/ten/functions/function:0.0.1
Returns: The image of this CreateContainerImageFunctionSourceDetails. Return type: str
-
image_digest¶ Gets the image_digest of this CreateContainerImageFunctionSourceDetails. The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the OCI Registry will be used. Example: sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7
Returns: The image_digest of this CreateContainerImageFunctionSourceDetails. Return type: str
-
source_type¶ [Required] Gets the source_type of this CreateFunctionSourceDetails. Type of the Function Source. Possible values: CONTAINER_IMAGE, PBF and ARCHIVE.
Allowed values for this property are: “PRE_BUILT_FUNCTIONS”, “ARCHIVE”, “CONTAINER_IMAGE”
Returns: The source_type of this CreateFunctionSourceDetails. Return type: str
-