Class: Google::Apis::CloudidentityV1beta1::ClientState

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudidentity_v1beta1/classes.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb

Overview

Represents the state associated with an API client calling the Devices API. Resource representing ClientState and supports updates from API users

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClientState

Returns a new instance of ClientState.



337
338
339
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 337

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

Instance Attribute Details

#asset_tagsArray<String>

The caller can specify asset tags for this resource Corresponds to the JSON property assetTags

Returns:

  • (Array<String>)


273
274
275
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 273

def asset_tags
  @asset_tags
end

#compliance_stateString

The compliance state of the resource as specified by the API client. Corresponds to the JSON property complianceState

Returns:

  • (String)


278
279
280
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 278

def compliance_state
  @compliance_state
end

#create_timeString

Output only. The time the client state data was created. Corresponds to the JSON property createTime

Returns:

  • (String)


283
284
285
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 283

def create_time
  @create_time
end

#custom_idString

This field may be used to store a unique identifier for the API resource within which these CustomAttributes are a field. Corresponds to the JSON property customId

Returns:

  • (String)


289
290
291
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 289

def custom_id
  @custom_id
end

#etagString

The token that needs to be passed back for concurrency control in updates. Token needs to be passed back in UpdateRequest Corresponds to the JSON property etag

Returns:

  • (String)


295
296
297
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 295

def etag
  @etag
end

#health_scoreString

The Health score of the resource Corresponds to the JSON property healthScore

Returns:

  • (String)


300
301
302
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 300

def health_score
  @health_score
end

#key_value_pairsHash<String,Google::Apis::CloudidentityV1beta1::CustomAttributeValue>

The map of key-value attributes stored by callers specific to a device. The total serialized length of this map may not exceed 10KB. No limit is placed on the number of attributes in a map. Corresponds to the JSON property keyValuePairs



307
308
309
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 307

def key_value_pairs
  @key_value_pairs
end

#last_update_timeString

Output only. The time the client state data was last updated. Corresponds to the JSON property lastUpdateTime

Returns:

  • (String)


312
313
314
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 312

def last_update_time
  @last_update_time
end

#managedString

The management state of the resource as specified by the API client. Corresponds to the JSON property managed

Returns:

  • (String)


317
318
319
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 317

def managed
  @managed
end

#nameString

Output only. Resource name of the ClientState in format: devices/device_id/deviceUsers/ device_user_id/clientState/partner_id`, where partner_id corresponds to the partner storing the data. Corresponds to the JSON propertyname`

Returns:

  • (String)


325
326
327
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 325

def name
  @name
end

#owner_typeString

Output only. The owner of the ClientState Corresponds to the JSON property ownerType

Returns:

  • (String)


330
331
332
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 330

def owner_type
  @owner_type
end

#score_reasonString

A descriptive cause of the health score. Corresponds to the JSON property scoreReason

Returns:

  • (String)


335
336
337
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 335

def score_reason
  @score_reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 342

def update!(**args)
  @asset_tags = args[:asset_tags] if args.key?(:asset_tags)
  @compliance_state = args[:compliance_state] if args.key?(:compliance_state)
  @create_time = args[:create_time] if args.key?(:create_time)
  @custom_id = args[:custom_id] if args.key?(:custom_id)
  @etag = args[:etag] if args.key?(:etag)
  @health_score = args[:health_score] if args.key?(:health_score)
  @key_value_pairs = args[:key_value_pairs] if args.key?(:key_value_pairs)
  @last_update_time = args[:last_update_time] if args.key?(:last_update_time)
  @managed = args[:managed] if args.key?(:managed)
  @name = args[:name] if args.key?(:name)
  @owner_type = args[:owner_type] if args.key?(:owner_type)
  @score_reason = args[:score_reason] if args.key?(:score_reason)
end