Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppInfo
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Chrome Web Store app information.
Instance Attribute Summary collapse
-
#google_owned ⇒ Boolean
(also: #google_owned?)
Output only.
-
#is_cws_hosted ⇒ Boolean
(also: #is_cws_hosted?)
Output only.
-
#is_kiosk_only ⇒ Boolean
(also: #is_kiosk_only?)
Output only.
-
#is_theme ⇒ Boolean
(also: #is_theme?)
Output only.
-
#kiosk_enabled ⇒ Boolean
(also: #kiosk_enabled?)
Output only.
-
#min_user_count ⇒ Fixnum
Output only.
-
#permissions ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppPermission>
Output only.
-
#site_access ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppSiteAccess>
Output only.
-
#support_enabled ⇒ Boolean
(also: #support_enabled?)
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1ChromeAppInfo
constructor
A new instance of GoogleChromeManagementV1ChromeAppInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1ChromeAppInfo
Returns a new instance of GoogleChromeManagementV1ChromeAppInfo.
535 536 537 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 535 def initialize(**args) update!(**args) end |
Instance Attribute Details
#google_owned ⇒ Boolean Also known as: google_owned?
Output only. Whether the app or extension is built and maintained by Google.
Version-specific field that will only be set when the requested app version is
found.
Corresponds to the JSON property googleOwned
481 482 483 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 481 def google_owned @google_owned end |
#is_cws_hosted ⇒ Boolean Also known as: is_cws_hosted?
Output only. Whether the app or extension is in a published state in the
Chrome Web Store.
Corresponds to the JSON property isCwsHosted
488 489 490 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 488 def is_cws_hosted @is_cws_hosted end |
#is_kiosk_only ⇒ Boolean Also known as: is_kiosk_only?
Output only. Whether the app is only for Kiosk mode on ChromeOS devices
Corresponds to the JSON property isKioskOnly
494 495 496 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 494 def is_kiosk_only @is_kiosk_only end |
#is_theme ⇒ Boolean Also known as: is_theme?
Output only. Whether the app or extension is a theme.
Corresponds to the JSON property isTheme
500 501 502 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 500 def is_theme @is_theme end |
#kiosk_enabled ⇒ Boolean Also known as: kiosk_enabled?
Output only. Whether this app is enabled for Kiosk mode on ChromeOS devices
Corresponds to the JSON property kioskEnabled
506 507 508 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 506 def kiosk_enabled @kiosk_enabled end |
#min_user_count ⇒ Fixnum
Output only. The minimum number of users using this app.
Corresponds to the JSON property minUserCount
512 513 514 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 512 def min_user_count @min_user_count end |
#permissions ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppPermission>
Output only. Every custom permission requested by the app. Version-specific
field that will only be set when the requested app version is found.
Corresponds to the JSON property permissions
518 519 520 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 518 def @permissions end |
#site_access ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppSiteAccess>
Output only. Every permission giving access to domains or broad host patterns.
( e.g. www.google.com). This includes the matches from content scripts as well
as hosts in the permissions node of the manifest. Version-specific field that
will only be set when the requested app version is found.
Corresponds to the JSON property siteAccess
526 527 528 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 526 def site_access @site_access end |
#support_enabled ⇒ Boolean Also known as: support_enabled?
Output only. The app developer has enabled support for their app. Version-
specific field that will only be set when the requested app version is found.
Corresponds to the JSON property supportEnabled
532 533 534 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 532 def support_enabled @support_enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
540 541 542 543 544 545 546 547 548 549 550 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 540 def update!(**args) @google_owned = args[:google_owned] if args.key?(:google_owned) @is_cws_hosted = args[:is_cws_hosted] if args.key?(:is_cws_hosted) @is_kiosk_only = args[:is_kiosk_only] if args.key?(:is_kiosk_only) @is_theme = args[:is_theme] if args.key?(:is_theme) @kiosk_enabled = args[:kiosk_enabled] if args.key?(:kiosk_enabled) @min_user_count = args[:min_user_count] if args.key?(:min_user_count) @permissions = args[:permissions] if args.key?(:permissions) @site_access = args[:site_access] if args.key?(:site_access) @support_enabled = args[:support_enabled] if args.key?(:support_enabled) end |