ObjectLocation

class oci.ai_speech.models.ObjectLocation(**kwargs)

Bases: object

A location in Object Storage that is uniquely identified by namespace name, bucket name and object name.

Methods

__init__(**kwargs) Initializes a new ObjectLocation object with values from keyword arguments.

Attributes

bucket_name [Required] Gets the bucket_name of this ObjectLocation.
namespace_name [Required] Gets the namespace_name of this ObjectLocation.
object_names [Required] Gets the object_names of this ObjectLocation.
__init__(**kwargs)

Initializes a new ObjectLocation object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • namespace_name (str) – The value to assign to the namespace_name property of this ObjectLocation.
  • bucket_name (str) – The value to assign to the bucket_name property of this ObjectLocation.
  • object_names (list[str]) – The value to assign to the object_names property of this ObjectLocation.
bucket_name

[Required] Gets the bucket_name of this ObjectLocation. Object Storage bucket name.

Returns:The bucket_name of this ObjectLocation.
Return type:str
namespace_name

[Required] Gets the namespace_name of this ObjectLocation. Object Storage namespace name.

Returns:The namespace_name of this ObjectLocation.
Return type:str
object_names

[Required] Gets the object_names of this ObjectLocation. Object Storage object names.

Returns:The object_names of this ObjectLocation.
Return type:list[str]