Class: Google::Apis::AdminDirectoryV1::TrustedApps
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdminDirectoryV1::TrustedApps
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
 generated/google/apis/admin_directory_v1/representations.rb,
 generated/google/apis/admin_directory_v1/representations.rb
Overview
JSON template for Trusted Apps response object of a user in Directory API.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ETag of the resource. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies the resource as trusted apps response. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property nextPageToken.
- 
  
    
      #trusted_apps  ⇒ Array<Google::Apis::AdminDirectoryV1::TrustedAppId> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Trusted Apps list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TrustedApps 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TrustedApps. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TrustedApps
Returns a new instance of TrustedApps
| 2866 2867 2868 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2866 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
| 2849 2850 2851 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2849 def etag @etag end | 
#kind ⇒ String
Identifies the resource as trusted apps response.
Corresponds to the JSON property kind
| 2854 2855 2856 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2854 def kind @kind end | 
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
| 2859 2860 2861 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2859 def next_page_token @next_page_token end | 
#trusted_apps ⇒ Array<Google::Apis::AdminDirectoryV1::TrustedAppId>
Trusted Apps list.
Corresponds to the JSON property trustedApps
| 2864 2865 2866 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2864 def trusted_apps @trusted_apps end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2871 2872 2873 2874 2875 2876 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 2871 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @trusted_apps = args[:trusted_apps] if args.key?(:trusted_apps) end |