Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1Partition
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1Partition
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb 
Overview
Represents partition metadata contained within entity instances.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #values  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1Partition 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1Partition.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1Partition
Returns a new instance of GoogleCloudDataplexV1Partition.
      6123 6124 6125  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6123 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
Optional. The etag for this partition.
Corresponds to the JSON property etag
      6100 6101 6102  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6100 def etag @etag end  | 
  
#location ⇒ String
Required. Immutable. The location of the entity data within the partition, for
example, gs://bucket/path/to/entity/key1=value1/key2=value2. Or projects//
datasets//tables/
Corresponds to the JSON property location
      6107 6108 6109  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6107 def location @location end  | 
  
#name ⇒ String
Output only. Partition values used in the HTTP URL must be double encoded. For
example, url_encode(url_encode(value)) can be used to encode "US:CA/CA#
Sunnyvale so that the request URL ends with "/partitions/US%253ACA/CA%
2523Sunnyvale". The name field in the response retains the encoded format.
Corresponds to the JSON property name
      6115 6116 6117  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6115 def name @name end  | 
  
#values ⇒ Array<String>
Required. Immutable. The set of values representing the partition, which
correspond to the partition schema defined in the parent entity.
Corresponds to the JSON property values
      6121 6122 6123  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6121 def values @values end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6128 6129 6130 6131 6132 6133  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6128 def update!(**args) @etag = args[:etag] if args.key?(:etag) @location = args[:location] if args.key?(:location) @name = args[:name] if args.key?(:name) @values = args[:values] if args.key?(:values) end  |