Class: Google::Logging::V2::UpdateSinkRequest
- Inherits:
-
Object
- Object
- Google::Logging::V2::UpdateSinkRequest
- Defined in:
- lib/google/cloud/logging/v2/doc/google/logging/v2/logging_config.rb
Overview
The parameters to +UpdateSink+.
Instance Attribute Summary collapse
-
#sink ⇒ Google::Logging::V2::LogSink
Required.
-
#sink_name ⇒ String
Required.
-
#unique_writer_identity ⇒ true, false
Optional.
Instance Attribute Details
#sink ⇒ Google::Logging::V2::LogSink
Returns Required. The updated sink, whose name is the same identifier that appears as part of +sink_name+.
236 |
# File 'lib/google/cloud/logging/v2/doc/google/logging/v2/logging_config.rb', line 236 class UpdateSinkRequest; end |
#sink_name ⇒ String
Returns Required. The full resource name of the sink to update, including the parent resource and the sink identifier:
"projects/[PROJECT_ID]/sinks/[SINK_ID]"
"organizations/[ORGANIZATION_ID]/sinks/[SINK_ID]"
"billingAccounts/[BILLING_ACCOUNT_ID]/sinks/[SINK_ID]"
"folders/[FOLDER_ID]/sinks/[SINK_ID]"
Example: +"projects/my-project/sinks/my-sink-id"+.
236 |
# File 'lib/google/cloud/logging/v2/doc/google/logging/v2/logging_config.rb', line 236 class UpdateSinkRequest; end |
#unique_writer_identity ⇒ true, false
Returns Optional. See sinks.create for a description of this field. When updating a sink, the effect of this field on the value of +writer_identity+ in the updated sink depends on both the old and new values of this field:
- If the old and new values of this field are both false or both true, then there is no change to the sink's +writer_identity+.
- If the old value is false and the new value is true, then +writer_identity+ is changed to a unique service account.
- It is an error if the old value is true and the new value is set to false or defaulted to false.
236 |
# File 'lib/google/cloud/logging/v2/doc/google/logging/v2/logging_config.rb', line 236 class UpdateSinkRequest; end |