Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ReportingDataExtensionData
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ReportingDataExtensionData
- 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
Information of an extension installed on a Chrome browser profile.
Instance Attribute Summary collapse
-
#description ⇒ String
Output only.
-
#extension_id ⇒ String
Output only.
-
#extension_type ⇒ String
Output only.
-
#homepage_uri ⇒ String
Output only.
-
#installation_type ⇒ String
Output only.
-
#is_disabled ⇒ Boolean
(also: #is_disabled?)
Output only.
-
#is_webstore_extension ⇒ Boolean
(also: #is_webstore_extension?)
Output only.
-
#manifest_version ⇒ Fixnum
Output only.
-
#name ⇒ String
Output only.
-
#permissions ⇒ Array<String>
Output only.
-
#version ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ReportingDataExtensionData
constructor
A new instance of GoogleChromeManagementVersionsV1ReportingDataExtensionData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ReportingDataExtensionData
Returns a new instance of GoogleChromeManagementVersionsV1ReportingDataExtensionData.
6035 6036 6037 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6035 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Output only. Description of the extension.
Corresponds to the JSON property description
5981 5982 5983 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5981 def description @description end |
#extension_id ⇒ String
Output only. ID of the extension.
Corresponds to the JSON property extensionId
5986 5987 5988 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5986 def extension_id @extension_id end |
#extension_type ⇒ String
Output only. Type of the extension.
Corresponds to the JSON property extensionType
5991 5992 5993 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5991 def extension_type @extension_type end |
#homepage_uri ⇒ String
Output only. The URL of the homepage of the extension.
Corresponds to the JSON property homepageUri
5996 5997 5998 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5996 def homepage_uri @homepage_uri end |
#installation_type ⇒ String
Output only. Installation type of the extension.
Corresponds to the JSON property installationType
6001 6002 6003 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6001 def installation_type @installation_type end |
#is_disabled ⇒ Boolean Also known as: is_disabled?
Output only. Represents whether the user disabled the extension.
Corresponds to the JSON property isDisabled
6006 6007 6008 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6006 def is_disabled @is_disabled end |
#is_webstore_extension ⇒ Boolean Also known as: is_webstore_extension?
Output only. Represents whether the extension is from the webstore.
Corresponds to the JSON property isWebstoreExtension
6012 6013 6014 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6012 def is_webstore_extension @is_webstore_extension end |
#manifest_version ⇒ Fixnum
Output only. Manifest version of the extension.
Corresponds to the JSON property manifestVersion
6018 6019 6020 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6018 def manifest_version @manifest_version end |
#name ⇒ String
Output only. Name of the extension.
Corresponds to the JSON property name
6023 6024 6025 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6023 def name @name end |
#permissions ⇒ Array<String>
Output only. Permissions requested by the extension.
Corresponds to the JSON property permissions
6028 6029 6030 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6028 def @permissions end |
#version ⇒ String
Output only. Version of the extension.
Corresponds to the JSON property version
6033 6034 6035 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6033 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6040 def update!(**args) @description = args[:description] if args.key?(:description) @extension_id = args[:extension_id] if args.key?(:extension_id) @extension_type = args[:extension_type] if args.key?(:extension_type) @homepage_uri = args[:homepage_uri] if args.key?(:homepage_uri) @installation_type = args[:installation_type] if args.key?(:installation_type) @is_disabled = args[:is_disabled] if args.key?(:is_disabled) @is_webstore_extension = args[:is_webstore_extension] if args.key?(:is_webstore_extension) @manifest_version = args[:manifest_version] if args.key?(:manifest_version) @name = args[:name] if args.key?(:name) @permissions = args[:permissions] if args.key?(:permissions) @version = args[:version] if args.key?(:version) end |