Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListConnectionsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DlpV2::GooglePrivacyDlpV2ListConnectionsResponse
 
 
- 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
Response message for ListConnections.
Instance Attribute Summary collapse
- 
  
    
      #connections  ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Connection> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of connections.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token to retrieve the next page of results.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2ListConnectionsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GooglePrivacyDlpV2ListConnectionsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListConnectionsResponse
Returns a new instance of GooglePrivacyDlpV2ListConnectionsResponse.
      6646 6647 6648  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6646 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#connections ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Connection>
List of connections.
Corresponds to the JSON property connections
      6638 6639 6640  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6638 def connections @connections end  | 
  
#next_page_token ⇒ String
Token to retrieve the next page of results. An empty value means there are no
more results.
Corresponds to the JSON property nextPageToken
      6644 6645 6646  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6644 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6651 6652 6653 6654  | 
    
      # File 'lib/google/apis/dlp_v2/classes.rb', line 6651 def update!(**args) @connections = args[:connections] if args.key?(:connections) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |