Class: Google::Apis::DfareportingV3_2::EncryptionInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_2::EncryptionInfo
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb 
Overview
A description of how user IDs are encrypted.
Instance Attribute Summary collapse
- 
  
    
      #encryption_entity_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The encryption entity ID.
 - 
  
    
      #encryption_entity_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The encryption entity type.
 - 
  
    
      #encryption_source  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Describes whether the encrypted cookie was received from ad serving (the %m macro) or from Data Transfer.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ EncryptionInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of EncryptionInfo.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ EncryptionInfo
Returns a new instance of EncryptionInfo
      5566 5567 5568  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 5566 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#encryption_entity_id ⇒ Fixnum
The encryption entity ID. This should match the encryption configuration for
ad serving or Data Transfer.
Corresponds to the JSON property encryptionEntityId
      5546 5547 5548  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 5546 def encryption_entity_id @encryption_entity_id end  | 
  
#encryption_entity_type ⇒ String
The encryption entity type. This should match the encryption configuration for
ad serving or Data Transfer.
Corresponds to the JSON property encryptionEntityType
      5552 5553 5554  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 5552 def encryption_entity_type @encryption_entity_type end  | 
  
#encryption_source ⇒ String
Describes whether the encrypted cookie was received from ad serving (the %m
macro) or from Data Transfer.
Corresponds to the JSON property encryptionSource
      5558 5559 5560  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 5558 def encryption_source @encryption_source end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#encryptionInfo".
Corresponds to the JSON property kind
      5564 5565 5566  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 5564 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5571 5572 5573 5574 5575 5576  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 5571 def update!(**args) @encryption_entity_id = args[:encryption_entity_id] if args.key?(:encryption_entity_id) @encryption_entity_type = args[:encryption_entity_type] if args.key?(:encryption_entity_type) @encryption_source = args[:encryption_source] if args.key?(:encryption_source) @kind = args[:kind] if args.key?(:kind) end  |