Class: Google::Cloud::Orchestration::Airflow::Service::V1::TaskLogsRetentionConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Orchestration::Airflow::Service::V1::TaskLogsRetentionConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/orchestration/airflow/service/v1/environments.rb
Overview
The configuration setting for Task Logs.
Defined Under Namespace
Modules: TaskLogsStorageMode
Instance Attribute Summary collapse
Instance Attribute Details
#storage_mode ⇒ ::Google::Cloud::Orchestration::Airflow::Service::V1::TaskLogsRetentionConfig::TaskLogsStorageMode
Returns Optional. The mode of storage for Airflow workers task logs.
1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 |
# File 'proto_docs/google/cloud/orchestration/airflow/service/v1/environments.rb', line 1918 class TaskLogsRetentionConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The definition of task_logs_storage_mode. module TaskLogsStorageMode # This configuration is not specified by the user. TASK_LOGS_STORAGE_MODE_UNSPECIFIED = 0 # Store task logs in Cloud Logging and in the environment's Cloud Storage # bucket. CLOUD_LOGGING_AND_CLOUD_STORAGE = 1 # Store task logs in Cloud Logging only. CLOUD_LOGGING_ONLY = 2 end end |