UpdateFunctionSourceDetails¶
-
class
oci.functions.models.UpdateFunctionSourceDetails(**kwargs)¶ Bases:
objectThe source details for updating the Function.
Attributes
SOURCE_TYPE_ARCHIVEA constant which can be used with the source_type property of a UpdateFunctionSourceDetails. SOURCE_TYPE_CONTAINER_IMAGEA constant which can be used with the source_type property of a UpdateFunctionSourceDetails. source_type[Required] Gets the source_type of this UpdateFunctionSourceDetails. Methods
__init__(**kwargs)Initializes a new UpdateFunctionSourceDetails 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'¶ A constant which can be used with the source_type property of a UpdateFunctionSourceDetails. This constant has a value of “ARCHIVE”
-
SOURCE_TYPE_CONTAINER_IMAGE= 'CONTAINER_IMAGE'¶ A constant which can be used with the source_type property of a UpdateFunctionSourceDetails. This constant has a value of “CONTAINER_IMAGE”
-
__init__(**kwargs)¶ Initializes a new UpdateFunctionSourceDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
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 UpdateFunctionSourceDetails. Allowed values for this property are: “ARCHIVE”, “CONTAINER_IMAGE”
-
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.
-
source_type¶ [Required] Gets the source_type of this UpdateFunctionSourceDetails. Type of the Function Source. Possible values: CONTAINER_IMAGE and ARCHIVE.
Allowed values for this property are: “ARCHIVE”, “CONTAINER_IMAGE”
Returns: The source_type of this UpdateFunctionSourceDetails. Return type: str
-