Class: Google::Apis::VerifiedaccessV2::CrowdStrikeAgent
- Inherits:
-
Object
- Object
- Google::Apis::VerifiedaccessV2::CrowdStrikeAgent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/verifiedaccess_v2/classes.rb,
lib/google/apis/verifiedaccess_v2/representations.rb,
lib/google/apis/verifiedaccess_v2/representations.rb
Overview
Properties of the CrowdStrike agent installed on a device.
Instance Attribute Summary collapse
-
#agent_id ⇒ String
Output only.
-
#customer_id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CrowdStrikeAgent
constructor
A new instance of CrowdStrikeAgent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CrowdStrikeAgent
Returns a new instance of CrowdStrikeAgent.
79 80 81 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 79 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_id ⇒ String
Output only. The Agent ID of the Crowdstrike agent.
Corresponds to the JSON property agentId
72 73 74 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 72 def agent_id @agent_id end |
#customer_id ⇒ String
Output only. The Customer ID to which the agent belongs to.
Corresponds to the JSON property customerId
77 78 79 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 77 def customer_id @customer_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
84 85 86 87 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 84 def update!(**args) @agent_id = args[:agent_id] if args.key?(:agent_id) @customer_id = args[:customer_id] if args.key?(:customer_id) end |