Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1UpdateGroupPriorityOrderingRequest

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

Request message for updating the group priority ordering of an app.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromePolicyVersionsV1UpdateGroupPriorityOrderingRequest

Returns a new instance of GoogleChromePolicyVersionsV1UpdateGroupPriorityOrderingRequest.



1187
1188
1189
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 1187

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

Instance Attribute Details

#group_idsArray<String>

Required. The group IDs, in desired priority ordering. Corresponds to the JSON property groupIds

Returns:

  • (Array<String>)


1175
1176
1177
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 1175

def group_ids
  @group_ids
end

#policy_namespaceString

Required. The namespace of the policy type for the request. Corresponds to the JSON property policyNamespace

Returns:

  • (String)


1180
1181
1182
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 1180

def policy_namespace
  @policy_namespace
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



1185
1186
1187
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 1185

def policy_target_key
  @policy_target_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1192
1193
1194
1195
1196
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 1192

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