class Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpec
Specification for a token used to generate iframes. The token specifies what data the admin is allowed to modify and the URI the iframe is allowed to communiate with.
Attributes
Options for displaying the Managed Configuration page. Corresponds to the JSON property `managedConfigurations` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecManagedConfigurations]
The URI of the parent frame hosting the iframe. To prevent XSS, the iframe may not be hosted at other URIs. This URI must be https. Use whitespaces to separate multiple parent URIs. Corresponds to the JSON property `parent` @return [String]
Deprecated. Use PlaySearch.approveApps. Corresponds to the JSON property `permission` @return [Array<String>]
Options for displaying the managed Play Search apps page. Corresponds to the JSON property `playSearch` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecPlaySearch]
Options for displaying the Private Apps page. Corresponds to the JSON property `privateApps` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecPrivateApps]
Options for displaying the Organize apps page. Corresponds to the JSON property `storeBuilder` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecStoreBuilder]
Options for displaying the Web Apps page. Corresponds to the JSON property `webApps` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecWebApps]
Options for displaying the Zero Touch page. Corresponds to the JSON property `zeroTouch` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecZeroTouch]
Public Class Methods
# File lib/google/apis/androidenterprise_v1/classes.rb, line 112 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/androidenterprise_v1/classes.rb, line 117 def update!(**args) @managed_configurations = args[:managed_configurations] if args.key?(:managed_configurations) @parent = args[:parent] if args.key?(:parent) @permission = args[:permission] if args.key?(:permission) @play_search = args[:play_search] if args.key?(:play_search) @private_apps = args[:private_apps] if args.key?(:private_apps) @store_builder = args[:store_builder] if args.key?(:store_builder) @web_apps = args[:web_apps] if args.key?(:web_apps) @zero_touch = args[:zero_touch] if args.key?(:zero_touch) end