Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1ListGroupPriorityOrderingResponse

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

Overview

Response message for listing the group priority ordering of an app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromePolicyVersionsV1ListGroupPriorityOrderingResponse

Returns a new instance of GoogleChromePolicyVersionsV1ListGroupPriorityOrderingResponse.



449
450
451
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 449

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

Instance Attribute Details

#group_idsArray<String>

Output only. The group IDs, in priority ordering. Corresponds to the JSON property groupIds

Returns:

  • (Array<String>)


432
433
434
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 432

def group_ids
  @group_ids
end

#policy_namespaceString

Output only. The namespace of the policy type of the group IDs. Corresponds to the JSON property policyNamespace

Returns:

  • (String)


437
438
439
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 437

def policy_namespace
  @policy_namespace
end

#policy_schemaString

Output only. The schema name of the policy for the group IDs. Corresponds to the JSON property policySchema

Returns:

  • (String)


442
443
444
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 442

def policy_schema
  @policy_schema
end

#policy_target_keyGoogle::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey

The key used to identify the target on which the policy will be applied. Corresponds to the JSON property policyTargetKey



447
448
449
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 447

def policy_target_key
  @policy_target_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



454
455
456
457
458
459
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 454

def update!(**args)
  @group_ids = args[:group_ids] if args.key?(:group_ids)
  @policy_namespace = args[:policy_namespace] if args.key?(:policy_namespace)
  @policy_schema = args[:policy_schema] if args.key?(:policy_schema)
  @policy_target_key = args[:policy_target_key] if args.key?(:policy_target_key)
end