Class: Google::Cloud::Dlp::V2::ProcessingLocation

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#image_fallback_location::Google::Cloud::Dlp::V2::ProcessingLocation::ImageFallbackLocation

Returns Image processing will fall back using this configuration.

Returns:



7848
7849
7850
7851
7852
7853
7854
7855
7856
7857
7858
7859
7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 7848

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