ObjectListInputDetails¶
-
class
oci.ai_anomaly_detection.models.
ObjectListInputDetails
(**kwargs)¶ Bases:
oci.ai_anomaly_detection.models.input_details.InputDetails
A list of object locations in Object Storage.
Attributes
INPUT_TYPE_BASE64_ENCODED
str(object=’’) -> str INPUT_TYPE_INLINE
str(object=’’) -> str INPUT_TYPE_OBJECT_LIST
str(object=’’) -> str input_type
[Required] Gets the input_type of this InputDetails. object_locations
[Required] Gets the object_locations of this ObjectListInputDetails. Methods
__init__
(**kwargs)Initializes a new ObjectListInputDetails 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. -
INPUT_TYPE_BASE64_ENCODED
= 'BASE64_ENCODED'¶
-
INPUT_TYPE_INLINE
= 'INLINE'¶
-
INPUT_TYPE_OBJECT_LIST
= 'OBJECT_LIST'¶
-
__init__
(**kwargs)¶ Initializes a new ObjectListInputDetails object with values from keyword arguments. The default value of the
input_type
attribute of this class isOBJECT_LIST
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - input_type (str) – The value to assign to the input_type property of this ObjectListInputDetails. Allowed values for this property are: “INLINE”, “BASE64_ENCODED”, “OBJECT_LIST”
- object_locations (list[oci.ai_anomaly_detection.models.ObjectLocation]) – The value to assign to the object_locations property of this ObjectListInputDetails.
-
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.
-
input_type
¶ [Required] Gets the input_type of this InputDetails. Type of request. This parameter is automatically populated by classes generated by the SDK. For raw curl requests, you must provide this field.
Allowed values for this property are: “INLINE”, “BASE64_ENCODED”, “OBJECT_LIST”
Returns: The input_type of this InputDetails. Return type: str
-
object_locations
¶ [Required] Gets the object_locations of this ObjectListInputDetails. List of ObjectLocations.
Returns: The object_locations of this ObjectListInputDetails. Return type: list[oci.ai_anomaly_detection.models.ObjectLocation]
-