Class: Google::Apis::TestingV1::ClientInfo
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::ClientInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/testing_v1/classes.rb,
lib/google/apis/testing_v1/representations.rb,
lib/google/apis/testing_v1/representations.rb
Overview
Information about the client which invoked the test.
Instance Attribute Summary collapse
-
#client_info_details ⇒ Array<Google::Apis::TestingV1::ClientInfoDetail>
The list of detailed information about client.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClientInfo
constructor
A new instance of ClientInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClientInfo
Returns a new instance of ClientInfo.
822 823 824 |
# File 'lib/google/apis/testing_v1/classes.rb', line 822 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_info_details ⇒ Array<Google::Apis::TestingV1::ClientInfoDetail>
The list of detailed information about client.
Corresponds to the JSON property clientInfoDetails
815 816 817 |
# File 'lib/google/apis/testing_v1/classes.rb', line 815 def client_info_details @client_info_details end |
#name ⇒ String
Required. Client name, such as gcloud.
Corresponds to the JSON property name
820 821 822 |
# File 'lib/google/apis/testing_v1/classes.rb', line 820 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
827 828 829 830 |
# File 'lib/google/apis/testing_v1/classes.rb', line 827 def update!(**args) @client_info_details = args[:client_info_details] if args.key?(:client_info_details) @name = args[:name] if args.key?(:name) end |