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.



79
80
81
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 79

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#agent_idString

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

Returns:

  • (String)


72
73
74
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 72

def agent_id
  @agent_id
end

#customer_idString

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

Returns:

  • (String)


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