OciFssSecurity¶
-
class
oci.container_instances.models.OciFssSecurity(**kwargs)¶ Bases:
objectSecurity options for OCI FSS File System.
Attributes
AUTH_SYSA constant which can be used with the auth property of a OciFssSecurity. authGets the auth of this OciFssSecurity. is_encrypted_in_transitGets the is_encrypted_in_transit of this OciFssSecurity. Methods
__init__(**kwargs)Initializes a new OciFssSecurity 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. -
AUTH_SYS= 'SYS'¶ A constant which can be used with the auth property of a OciFssSecurity. This constant has a value of “SYS”
-
__init__(**kwargs)¶ Initializes a new OciFssSecurity 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: - auth (str) – The value to assign to the auth property of this OciFssSecurity. Allowed values for this property are: “SYS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- is_encrypted_in_transit (bool) – The value to assign to the is_encrypted_in_transit property of this OciFssSecurity.
-
auth¶ Gets the auth of this OciFssSecurity. NFS authentication type to be used. Currently, only auth type SYS is supported.
Allowed values for this property are: “SYS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The auth of this OciFssSecurity. Return type: str
-
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.
-
is_encrypted_in_transit¶ Gets the is_encrypted_in_transit of this OciFssSecurity. Determines whether in-transit encryption needs to be enables. Check https://docs.oracle.com/en-us/iaas/Content/File/Tasks/intransitencryption.htm#Using_Intransit_Encryption for more details.
Returns: The is_encrypted_in_transit of this OciFssSecurity. Return type: bool
-