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
The Agent ID of the Crowdstrike agent.
-
#customer_id ⇒ String
The Customer ID to which the agent belongs to.
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.
59 60 61 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 59 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_id ⇒ String
The Agent ID of the Crowdstrike agent.
Corresponds to the JSON property agentId
52 53 54 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 52 def agent_id @agent_id end |
#customer_id ⇒ String
The Customer ID to which the agent belongs to.
Corresponds to the JSON property customerId
57 58 59 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 57 def customer_id @customer_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
64 65 66 67 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 64 def update!(**args) @agent_id = args[:agent_id] if args.key?(:agent_id) @customer_id = args[:customer_id] if args.key?(:customer_id) end |