google-apis-chromepolicy_v1 0.6.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b3409629cba67e62175a11ea594a76019a561ee10cade79b749343659a0cf8c
4
- data.tar.gz: ad5bbbfc4751d201df54da9a73589564673b3a2586c3819b19e972b8c5c07646
3
+ metadata.gz: 1596c8a8f9643b2b75bbc68419e35523438e0a9ce39eacf8dab12a9b4303b019
4
+ data.tar.gz: fdf2cb69a17960a0572db83327b2dec856fe7fc45f7e55967eabc7664432c6d1
5
5
  SHA512:
6
- metadata.gz: 781e607d6bebf3e09d3d969f24a5b759d906682ec1d7343f3cd05f3583b45080eb64c1dea403fac6625ee95a309daa6c5f5257e514b04a6b71e7e0e69b64be97
7
- data.tar.gz: 1615682bbfc198ecb8c114da24ae6d95ea43d92b7e81bc492279c705b64b9b272f71e4cfe05f6120b472adaa636abfdee30d3b43609f6b4a782d9cee4a216802
6
+ metadata.gz: b5e307844c8bf3a18c01f6209bb0444047bfcc6bdabbc87c80450c2ad2fea9c9039af6f62bfbee11e7d294d2715e4f8994fcd98db55dbe4385d2e78b6f6fea3d
7
+ data.tar.gz: 86cf6e58ba7d432a0c70c5cecef02cce5543eafe8215c79ad3e0b38a15b8418dc46dc09215dcb43eb56e2f1af84291f6ba0d6a5d9c01c98cd9c466f677301cf6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-chromepolicy_v1
2
2
 
3
+ ### v0.10.0 (2021-10-20)
4
+
5
+ * Regenerated from discovery document revision 20211018
6
+
7
+ ### v0.9.0 (2021-10-14)
8
+
9
+ * Regenerated from discovery document revision 20211012
10
+
11
+ ### v0.8.0 (2021-10-08)
12
+
13
+ * Regenerated from discovery document revision 20211006
14
+
15
+ ### v0.7.0 (2021-08-28)
16
+
17
+ * Regenerated from discovery document revision 20210826
18
+
3
19
  ### v0.6.0 (2021-07-29)
4
20
 
5
21
  * Regenerated from discovery document revision 20210727
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Chromepolicy service in particular.)
67
67
 
@@ -186,7 +186,7 @@ module Google
186
186
  end
187
187
  end
188
188
 
189
- # Resource representing a policy schema. Next ID: 10
189
+ # Resource representing a policy schema. Next ID: 11
190
190
  class GoogleChromePolicyV1PolicySchema
191
191
  include Google::Apis::Core::Hashable
192
192
 
@@ -228,9 +228,9 @@ module Google
228
228
  # @return [String]
229
229
  attr_accessor :policy_description
230
230
 
231
- # Output only. The full qualified name of the policy schema. This value is used
231
+ # Output only. The fully qualified name of the policy schema. This value is used
232
232
  # to fill the field `policy_schema` in PolicyValue when calling
233
- # BatchInheritOrgUnitPolicies or BatchModifyOrgUnitPolicies.
233
+ # BatchInheritOrgUnitPolicies or BatchModifyOrgUnitPolicies
234
234
  # Corresponds to the JSON property `schemaName`
235
235
  # @return [String]
236
236
  attr_accessor :schema_name
@@ -240,6 +240,11 @@ module Google
240
240
  # @return [String]
241
241
  attr_accessor :support_uri
242
242
 
243
+ # Output only. Information about applicable target resources for the policy.
244
+ # Corresponds to the JSON property `validTargetResources`
245
+ # @return [Array<String>]
246
+ attr_accessor :valid_target_resources
247
+
243
248
  def initialize(**args)
244
249
  update!(**args)
245
250
  end
@@ -255,6 +260,7 @@ module Google
255
260
  @policy_description = args[:policy_description] if args.key?(:policy_description)
256
261
  @schema_name = args[:schema_name] if args.key?(:schema_name)
257
262
  @support_uri = args[:support_uri] if args.key?(:support_uri)
263
+ @valid_target_resources = args[:valid_target_resources] if args.key?(:valid_target_resources)
258
264
  end
259
265
  end
260
266
 
@@ -310,7 +316,7 @@ module Google
310
316
  # @return [String]
311
317
  attr_accessor :input_constraint
312
318
 
313
- # Output only. If the field has a set of know values, this field will provide a
319
+ # Output only. If the field has a set of known values, this field will provide a
314
320
  # description for these values.
315
321
  # Corresponds to the JSON property `knownValueDescriptions`
316
322
  # @return [Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyV1PolicySchemaFieldKnownValueDescription>]
@@ -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.6.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210727"
25
+ REVISION = "20211018"
26
26
  end
27
27
  end
28
28
  end
@@ -241,6 +241,7 @@ module Google
241
241
  property :policy_description, as: 'policyDescription'
242
242
  property :schema_name, as: 'schemaName'
243
243
  property :support_uri, as: 'supportUri'
244
+ collection :valid_target_resources, as: 'validTargetResources'
244
245
  end
245
246
  end
246
247
 
@@ -90,8 +90,9 @@ module Google
90
90
  # they now inherit the value from a parent (if applicable). All targets must
91
91
  # have the same target format. That is to say that they must point to the same
92
92
  # target resource and must have the same keys specified in `
93
- # additionalTargetKeyNames`. On failure the request will return the error
94
- # details as part of the google.rpc.Status.
93
+ # additionalTargetKeyNames`, though the values for those keys may be different.
94
+ # On failure the request will return the error details as part of the google.rpc.
95
+ # Status.
95
96
  # @param [String] customer
96
97
  # ID of the G Suite account or literal "my_customer" for the customer associated
97
98
  # to the request.
@@ -128,8 +129,9 @@ module Google
128
129
  # Modify multiple policy values that are applied to a specific org unit. All
129
130
  # targets must have the same target format. That is to say that they must point
130
131
  # to the same target resource and must have the same keys specified in `
131
- # additionalTargetKeyNames`. On failure the request will return the error
132
- # details as part of the google.rpc.Status.
132
+ # additionalTargetKeyNames`, though the values for those keys may be different.
133
+ # On failure the request will return the error details as part of the google.rpc.
134
+ # Status.
133
135
  # @param [String] customer
134
136
  # ID of the G Suite account or literal "my_customer" for the customer associated
135
137
  # to the request.
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.6.0
4
+ version: 0.10.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: 2021-08-02 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-chromepolicy_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-chromepolicy_v1/v0.6.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-chromepolicy_v1
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.10.0
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: []
65
65
  require_paths: