google-apis-chromepolicy_v1 0.35.0 → 0.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 646d4578bb9b6bb0cb3944385ee09a4b8a0f8a0b497115bba861a0dacc2e4400
|
4
|
+
data.tar.gz: 55e48aea0ac1ed4d68075170bded1cd960dbd99d67c7c8d71544ad0e509044e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf5269f4ce8ec6eaef3e1e5ff59891f9c18d6a8be093085ef26019e49111b511be24cee542bb9fb742a0921c9b733ded1b6f7a8a9e35f2573c442f8538edbd20
|
7
|
+
data.tar.gz: eaa7531b0416074759061229fa56c62db9aca87fee7a4da9129ad053b705a8f7dd76fd298ae3637ebde1ed9449b6a6207f3d5148e3ff60eef5a78bdb7d35b5c7
|
data/CHANGELOG.md
CHANGED
@@ -435,11 +435,16 @@ module Google
|
|
435
435
|
class GoogleChromePolicyVersionsV1ListGroupPriorityOrderingRequest
|
436
436
|
include Google::Apis::Core::Hashable
|
437
437
|
|
438
|
-
#
|
438
|
+
# The namespace of the policy type for the request.
|
439
439
|
# Corresponds to the JSON property `policyNamespace`
|
440
440
|
# @return [String]
|
441
441
|
attr_accessor :policy_namespace
|
442
442
|
|
443
|
+
# The schema name of the policy for the request.
|
444
|
+
# Corresponds to the JSON property `policySchema`
|
445
|
+
# @return [String]
|
446
|
+
attr_accessor :policy_schema
|
447
|
+
|
443
448
|
# The key used to identify the target on which the policy will be applied.
|
444
449
|
# Corresponds to the JSON property `policyTargetKey`
|
445
450
|
# @return [Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey]
|
@@ -452,6 +457,7 @@ module Google
|
|
452
457
|
# Update properties of this object
|
453
458
|
def update!(**args)
|
454
459
|
@policy_namespace = args[:policy_namespace] if args.key?(:policy_namespace)
|
460
|
+
@policy_schema = args[:policy_schema] if args.key?(:policy_schema)
|
455
461
|
@policy_target_key = args[:policy_target_key] if args.key?(:policy_target_key)
|
456
462
|
end
|
457
463
|
end
|
@@ -470,6 +476,11 @@ module Google
|
|
470
476
|
# @return [String]
|
471
477
|
attr_accessor :policy_namespace
|
472
478
|
|
479
|
+
# Output only. The schema name of the policy for the group IDs.
|
480
|
+
# Corresponds to the JSON property `policySchema`
|
481
|
+
# @return [String]
|
482
|
+
attr_accessor :policy_schema
|
483
|
+
|
473
484
|
# The key used to identify the target on which the policy will be applied.
|
474
485
|
# Corresponds to the JSON property `policyTargetKey`
|
475
486
|
# @return [Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey]
|
@@ -483,6 +494,7 @@ module Google
|
|
483
494
|
def update!(**args)
|
484
495
|
@group_ids = args[:group_ids] if args.key?(:group_ids)
|
485
496
|
@policy_namespace = args[:policy_namespace] if args.key?(:policy_namespace)
|
497
|
+
@policy_schema = args[:policy_schema] if args.key?(:policy_schema)
|
486
498
|
@policy_target_key = args[:policy_target_key] if args.key?(:policy_target_key)
|
487
499
|
end
|
488
500
|
end
|
@@ -1286,11 +1298,16 @@ module Google
|
|
1286
1298
|
# @return [Array<String>]
|
1287
1299
|
attr_accessor :group_ids
|
1288
1300
|
|
1289
|
-
#
|
1301
|
+
# The namespace of the policy type for the request.
|
1290
1302
|
# Corresponds to the JSON property `policyNamespace`
|
1291
1303
|
# @return [String]
|
1292
1304
|
attr_accessor :policy_namespace
|
1293
1305
|
|
1306
|
+
# The schema name of the policy for the request.
|
1307
|
+
# Corresponds to the JSON property `policySchema`
|
1308
|
+
# @return [String]
|
1309
|
+
attr_accessor :policy_schema
|
1310
|
+
|
1294
1311
|
# The key used to identify the target on which the policy will be applied.
|
1295
1312
|
# Corresponds to the JSON property `policyTargetKey`
|
1296
1313
|
# @return [Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey]
|
@@ -1304,6 +1321,7 @@ module Google
|
|
1304
1321
|
def update!(**args)
|
1305
1322
|
@group_ids = args[:group_ids] if args.key?(:group_ids)
|
1306
1323
|
@policy_namespace = args[:policy_namespace] if args.key?(:policy_namespace)
|
1324
|
+
@policy_schema = args[:policy_schema] if args.key?(:policy_schema)
|
1307
1325
|
@policy_target_key = args[:policy_target_key] if args.key?(:policy_target_key)
|
1308
1326
|
end
|
1309
1327
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ChromepolicyV1
|
18
18
|
# Version of the google-apis-chromepolicy_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230402"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -458,6 +458,7 @@ module Google
|
|
458
458
|
# @private
|
459
459
|
class Representation < Google::Apis::Core::JsonRepresentation
|
460
460
|
property :policy_namespace, as: 'policyNamespace'
|
461
|
+
property :policy_schema, as: 'policySchema'
|
461
462
|
property :policy_target_key, as: 'policyTargetKey', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey::Representation
|
462
463
|
|
463
464
|
end
|
@@ -468,6 +469,7 @@ module Google
|
|
468
469
|
class Representation < Google::Apis::Core::JsonRepresentation
|
469
470
|
collection :group_ids, as: 'groupIds'
|
470
471
|
property :policy_namespace, as: 'policyNamespace'
|
472
|
+
property :policy_schema, as: 'policySchema'
|
471
473
|
property :policy_target_key, as: 'policyTargetKey', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey::Representation
|
472
474
|
|
473
475
|
end
|
@@ -718,6 +720,7 @@ module Google
|
|
718
720
|
class Representation < Google::Apis::Core::JsonRepresentation
|
719
721
|
collection :group_ids, as: 'groupIds'
|
720
722
|
property :policy_namespace, as: 'policyNamespace'
|
723
|
+
property :policy_schema, as: 'policySchema'
|
721
724
|
property :policy_target_key, as: 'policyTargetKey', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicyTargetKey::Representation
|
722
725
|
|
723
726
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-chromepolicy_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromepolicy_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromepolicy_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromepolicy_v1/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromepolicy_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|