Class: Google::Cloud::Dlp::V2::CreateDiscoveryConfigRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::CreateDiscoveryConfigRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
Request message for CreateDiscoveryConfig.
Instance Attribute Summary collapse
-
#config_id ⇒ ::String
The config ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+
. -
#discovery_config ⇒ ::Google::Cloud::Dlp::V2::DiscoveryConfig
Required.
-
#parent ⇒ ::String
Required.
Instance Attribute Details
#config_id ⇒ ::String
Returns The config ID can contain uppercase and lowercase letters,
numbers, and hyphens; that is, it must match the regular
expression: [a-zA-Z\d-_]+
. The maximum length is 100
characters. Can be empty to allow the system to generate one.
3793 3794 3795 3796 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 3793 class CreateDiscoveryConfigRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#discovery_config ⇒ ::Google::Cloud::Dlp::V2::DiscoveryConfig
Returns Required. The DiscoveryConfig to create.
3793 3794 3795 3796 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 3793 class CreateDiscoveryConfigRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parent ⇒ ::String
Returns Required. Parent resource name.
The format of this value varies depending on the scope of the request (project or organization):
- Projects scope:
projects/{project_id}/locations/{location_id}
- Organizations scope:
organizations/{org_id}/locations/{location_id}
The following example parent
string specifies a parent project with the
identifier example-project
, and specifies the europe-west3
location
for processing data:
parent=projects/example-project/locations/europe-west3.
3793 3794 3795 3796 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 3793 class CreateDiscoveryConfigRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |