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
3129 3130 3131 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3129 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
3112 3113 3114 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3112 def etag @etag end |
#kind ⇒ String
Identifies the resource as trusted apps response.
Corresponds to the JSON property kind
3117 3118 3119 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3117 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
3122 3123 3124 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3122 def next_page_token @next_page_token end |
#trusted_apps ⇒ Array<Google::Apis::AdminDirectoryV1::TrustedAppId>
Trusted Apps list.
Corresponds to the JSON property trustedApps
3127 3128 3129 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3127 def trusted_apps @trusted_apps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3134 3135 3136 3137 3138 3139 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3134 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 |