Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStoragePath
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStoragePath
 
 
- 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
Message representing a single file or path in Cloud Storage.
Instance Attribute Summary collapse
- 
  
    
      #path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A URL representing a file or path (no wildcards) in Cloud Storage.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2CloudStoragePath 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2CloudStoragePath.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2CloudStoragePath
Returns a new instance of GooglePrivacyDlpV2CloudStoragePath.
      1197 1198 1199  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1197 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#path ⇒ String
A URL representing a file or path (no wildcards) in Cloud Storage. Example: 
gs://[BUCKET_NAME]/dictionary.txt
Corresponds to the JSON property path
      1195 1196 1197  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1195 def path @path end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1202 1203 1204  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 1202 def update!(**args) @path = args[:path] if args.key?(:path) end  |