Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb 
Overview
Request message for CreateJobTrigger.
Instance Attribute Summary collapse
- 
  
    
      #job_trigger  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains a configuration to make API calls on a repeating basis.
 - 
  
    
      #location_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Deprecated.
 - 
  
    
      #trigger_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The trigger id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\d-_]+. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2CreateJobTriggerRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2CreateJobTriggerRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateJobTriggerRequest
Returns a new instance of GooglePrivacyDlpV2CreateJobTriggerRequest.
      1949 1950 1951  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1949 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#job_trigger ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
Contains a configuration to make API calls on a repeating basis. See https://
cloud.google.com/sensitive-data-protection/docs/concepts-job-triggers to learn
more.
Corresponds to the JSON property jobTrigger
      1934 1935 1936  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1934 def job_trigger @job_trigger end  | 
  
#location_id ⇒ String
Deprecated. This field has no effect.
Corresponds to the JSON property locationId
      1939 1940 1941  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1939 def location_id @location_id end  | 
  
#trigger_id ⇒ String
The trigger 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.
Corresponds to the JSON property triggerId
      1947 1948 1949  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1947 def trigger_id @trigger_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1954 1955 1956 1957 1958  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1954 def update!(**args) @job_trigger = args[:job_trigger] if args.key?(:job_trigger) @location_id = args[:location_id] if args.key?(:location_id) @trigger_id = args[:trigger_id] if args.key?(:trigger_id) end  |