Class: Google::Apis::CloudidentityV1beta1::EndpointVerificationSpecificAttributes
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::EndpointVerificationSpecificAttributes
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Resource representing the Endpoint Verification-specific attributes of a device.
Instance Attribute Summary collapse
-
#additional_signals ⇒ Hash<String,Object>
Additional signals reported by Endpoint Verification.
-
#browser_attributes ⇒ Array<Google::Apis::CloudidentityV1beta1::BrowserAttributes>
Details of browser profiles reported by Endpoint Verification.
-
#certificate_attributes ⇒ Array<Google::Apis::CloudidentityV1beta1::CertificateAttributes>
Details of certificates.
Instance Method Summary collapse
-
#initialize(**args) ⇒ EndpointVerificationSpecificAttributes
constructor
A new instance of EndpointVerificationSpecificAttributes.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ EndpointVerificationSpecificAttributes
Returns a new instance of EndpointVerificationSpecificAttributes.
1283 1284 1285 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1283 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_signals ⇒ Hash<String,Object>
Additional signals reported by Endpoint Verification. It includes the
following attributes: * Non-configurable attributes: hotfixes, av_installed,
av_enabled, windows_domain_name, is_os_native_firewall_enabled, and
is_secure_boot_enabled. * Configurable attributes: file, folder, and
binary attributes; registry entries; and properties in a plist.
Corresponds to the JSON property additionalSignals
1271 1272 1273 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1271 def additional_signals @additional_signals end |
#browser_attributes ⇒ Array<Google::Apis::CloudidentityV1beta1::BrowserAttributes>
Details of browser profiles reported by Endpoint Verification.
Corresponds to the JSON property browserAttributes
1276 1277 1278 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1276 def browser_attributes @browser_attributes end |
#certificate_attributes ⇒ Array<Google::Apis::CloudidentityV1beta1::CertificateAttributes>
Details of certificates.
Corresponds to the JSON property certificateAttributes
1281 1282 1283 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1281 def certificate_attributes @certificate_attributes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1288 1289 1290 1291 1292 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 1288 def update!(**args) @additional_signals = args[:additional_signals] if args.key?(:additional_signals) @browser_attributes = args[:browser_attributes] if args.key?(:browser_attributes) @certificate_attributes = args[:certificate_attributes] if args.key?(:certificate_attributes) end |