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

managed_configurations[RW]

Options for displaying the Managed Configuration page. Corresponds to the JSON property `managedConfigurations` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecManagedConfigurations]

parent[RW]

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]

permission[RW]

Deprecated. Use PlaySearch.approveApps. Corresponds to the JSON property `permission` @return [Array<String>]

private_apps[RW]

Options for displaying the Private Apps page. Corresponds to the JSON property `privateApps` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecPrivateApps]

store_builder[RW]

Options for displaying the Organize apps page. Corresponds to the JSON property `storeBuilder` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecStoreBuilder]

web_apps[RW]

Options for displaying the Web Apps page. Corresponds to the JSON property `webApps` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecWebApps]

zero_touch[RW]

Options for displaying the Zero Touch page. Corresponds to the JSON property `zeroTouch` @return [Google::Apis::AndroidenterpriseV1::AdministratorWebTokenSpecZeroTouch]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidenterprise_v1/classes.rb, line 112
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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