Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
Cloud Logging details for execution info
Instance Attribute Summary collapse
-
#cloud_logging_severity ⇒ String
Optional.
-
#enable_cloud_logging ⇒ Boolean
(also: #enable_cloud_logging?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCloudLoggingDetails
constructor
A new instance of GoogleCloudIntegrationsV1alphaCloudLoggingDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCloudLoggingDetails
Returns a new instance of GoogleCloudIntegrationsV1alphaCloudLoggingDetails.
7035 7036 7037 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7035 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cloud_logging_severity ⇒ String
Optional. Severity selected by the customer for the logs to be sent to Cloud
Logging, for the integration version getting executed.
Corresponds to the JSON property cloudLoggingSeverity
7026 7027 7028 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7026 def cloud_logging_severity @cloud_logging_severity end |
#enable_cloud_logging ⇒ Boolean Also known as: enable_cloud_logging?
Optional. Status of whether Cloud Logging is enabled or not for the
integration version getting executed.
Corresponds to the JSON property enableCloudLogging
7032 7033 7034 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7032 def enable_cloud_logging @enable_cloud_logging end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7040 7041 7042 7043 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7040 def update!(**args) @cloud_logging_severity = args[:cloud_logging_severity] if args.key?(:cloud_logging_severity) @enable_cloud_logging = args[:enable_cloud_logging] if args.key?(:enable_cloud_logging) end |