Class: Google::Cloud::Dlp::V2::ProcessingLocation
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::ProcessingLocation
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
Configure processing location for discovery and inspection. For example, image OCR is only provided in limited regions but configuring ProcessingLocation will redirect OCR to a location where OCR is provided.
Defined Under Namespace
Classes: GlobalProcessing, ImageFallbackLocation, MultiRegionProcessing
Instance Attribute Summary collapse
-
#image_fallback_location ⇒ ::Google::Cloud::Dlp::V2::ProcessingLocation::ImageFallbackLocation
Image processing will fall back using this configuration.
Instance Attribute Details
#image_fallback_location ⇒ ::Google::Cloud::Dlp::V2::ProcessingLocation::ImageFallbackLocation
Returns Image processing will fall back using this configuration.
8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 8044 class ProcessingLocation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Processing will happen in a multi-region that contains the current region # if available. class MultiRegionProcessing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Processing will happen in the global region. class GlobalProcessing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Configure image processing to fall back to the configured processing option # below if unavailable in the request location. # @!attribute [rw] multi_region_processing # @return [::Google::Cloud::Dlp::V2::ProcessingLocation::MultiRegionProcessing] # Processing will happen in a multi-region that contains the current region # if available. # @!attribute [rw] global_processing # @return [::Google::Cloud::Dlp::V2::ProcessingLocation::GlobalProcessing] # Processing will happen in the global region. class ImageFallbackLocation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |