InboundAuthConfig¶
-
class
oci.generative_ai.models.InboundAuthConfig(**kwargs)¶ Bases:
objectThe client-side inbound authentication configuration for the Hosted Application. Defines the network access rules. When unspecified, the service applies the default inbound authentication configuration type.
Attributes
INBOUND_AUTH_CONFIG_TYPE_IDCS_AUTH_CONFIGA constant which can be used with the inbound_auth_config_type property of a InboundAuthConfig. idcs_configGets the idcs_config of this InboundAuthConfig. inbound_auth_config_type[Required] Gets the inbound_auth_config_type of this InboundAuthConfig. Methods
__init__(**kwargs)Initializes a new InboundAuthConfig object with values from keyword arguments. -
INBOUND_AUTH_CONFIG_TYPE_IDCS_AUTH_CONFIG= 'IDCS_AUTH_CONFIG'¶ A constant which can be used with the inbound_auth_config_type property of a InboundAuthConfig. This constant has a value of “IDCS_AUTH_CONFIG”
-
__init__(**kwargs)¶ Initializes a new InboundAuthConfig object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - inbound_auth_config_type (str) – The value to assign to the inbound_auth_config_type property of this InboundAuthConfig. Allowed values for this property are: “IDCS_AUTH_CONFIG”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- idcs_config (oci.generative_ai.models.IdcsAuthConfig) – The value to assign to the idcs_config property of this InboundAuthConfig.
-
idcs_config¶ Gets the idcs_config of this InboundAuthConfig.
Returns: The idcs_config of this InboundAuthConfig. Return type: oci.generative_ai.models.IdcsAuthConfig
-
inbound_auth_config_type¶ [Required] Gets the inbound_auth_config_type of this InboundAuthConfig. Inbound authentication configuration type of network access (IDCS_AUTH_CONFIG).
Allowed values for this property are: “IDCS_AUTH_CONFIG”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The inbound_auth_config_type of this InboundAuthConfig. Return type: str
-