Class: Google::Apis::VerifiedaccessV2::CrowdStrikeAgent

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_idString

The Agent ID of the Crowdstrike agent. Corresponds to the JSON property agentId

Returns:

  • (String)


52
53
54
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 52

def agent_id
  @agent_id
end

#customer_idString

The Customer ID to which the agent belongs to. Corresponds to the JSON property customerId

Returns:

  • (String)


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