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:



7968
7969
7970
7971
7972
7973
7974
7975
7976
7977
7978
7979
7980
7981
7982
7983
7984
7985
7986
7987
7988
7989
7990
7991
7992
7993
7994
7995
7996
7997
7998
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 7968

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