google-apis-chromepolicy_v1 0.29.0 → 0.31.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: a197452efe9fc4eafb734a711b5452884e8a0114c4ce003c022f1dbb329c7b1e
|
4
|
+
data.tar.gz: 639e7ab60ca76787560cc4c6b2652b9cf7e43808030b9964936e74d50dd38a3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcdde4c9b91829daa281353ad7bdbc159649d2d67536bf1b449d70cc8ae52dec17e32948cb53720860300357caf0b7f1eae5615de3a2db380178965068dc57f7
|
7
|
+
data.tar.gz: f5ace45c0f2c2212e2c280c1db2ef83b9739b71e65c0c28abdb6d162a75329218b1509a0312cddb36f5b504da8b02306cb714141539b22c5bbe047ae353d1ac8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-chromepolicy_v1
|
2
2
|
|
3
|
+
### v0.31.0 (2022-10-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221021
|
6
|
+
|
7
|
+
### v0.30.0 (2022-10-20)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.11.0
|
10
|
+
|
3
11
|
### v0.29.0 (2022-10-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20221014
|
@@ -190,6 +190,32 @@ module Google
|
|
190
190
|
end
|
191
191
|
end
|
192
192
|
|
193
|
+
# Error information for removing of a specific certificate on a specific target.
|
194
|
+
# A reference to a certificate.
|
195
|
+
class GoogleChromePolicyVersionsV1CertificateReference
|
196
|
+
include Google::Apis::Core::Hashable
|
197
|
+
|
198
|
+
# Output only. The name of the referencing network.
|
199
|
+
# Corresponds to the JSON property `network`
|
200
|
+
# @return [String]
|
201
|
+
attr_accessor :network
|
202
|
+
|
203
|
+
# Output only. The obfuscated id of the org unit the referencing network is in.
|
204
|
+
# Corresponds to the JSON property `orgUnitId`
|
205
|
+
# @return [String]
|
206
|
+
attr_accessor :org_unit_id
|
207
|
+
|
208
|
+
def initialize(**args)
|
209
|
+
update!(**args)
|
210
|
+
end
|
211
|
+
|
212
|
+
# Update properties of this object
|
213
|
+
def update!(**args)
|
214
|
+
@network = args[:network] if args.key?(:network)
|
215
|
+
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
193
219
|
# Request object for creating a certificate.
|
194
220
|
class GoogleChromePolicyVersionsV1DefineCertificateRequest
|
195
221
|
include Google::Apis::Core::Hashable
|
@@ -929,6 +955,29 @@ module Google
|
|
929
955
|
end
|
930
956
|
end
|
931
957
|
|
958
|
+
# Details of the errors encountered during a remove certificate request. This
|
959
|
+
# message will be returned as part of the details of a google.rpc.Status
|
960
|
+
# returned to the user when there is an error in their request.
|
961
|
+
class GoogleChromePolicyVersionsV1RemoveCertificateErrorDetails
|
962
|
+
include Google::Apis::Core::Hashable
|
963
|
+
|
964
|
+
# Output only. If the certificate was not removed, a list of references to the
|
965
|
+
# certificate that prevented it from being removed. Only unreferenced
|
966
|
+
# certificates can be removed.
|
967
|
+
# Corresponds to the JSON property `certificateReferences`
|
968
|
+
# @return [Array<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1CertificateReference>]
|
969
|
+
attr_accessor :certificate_references
|
970
|
+
|
971
|
+
def initialize(**args)
|
972
|
+
update!(**args)
|
973
|
+
end
|
974
|
+
|
975
|
+
# Update properties of this object
|
976
|
+
def update!(**args)
|
977
|
+
@certificate_references = args[:certificate_references] if args.key?(:certificate_references)
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
932
981
|
# Request object for removing a certificate.
|
933
982
|
class GoogleChromePolicyVersionsV1RemoveCertificateRequest
|
934
983
|
include Google::Apis::Core::Hashable
|
@@ -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.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221021"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,6 +58,12 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
+
class GoogleChromePolicyVersionsV1CertificateReference
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
61
67
|
class GoogleChromePolicyVersionsV1DefineCertificateRequest
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
69
|
|
@@ -184,6 +190,12 @@ module Google
|
|
184
190
|
include Google::Apis::Core::JsonObjectSupport
|
185
191
|
end
|
186
192
|
|
193
|
+
class GoogleChromePolicyVersionsV1RemoveCertificateErrorDetails
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
187
199
|
class GoogleChromePolicyVersionsV1RemoveCertificateRequest
|
188
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
201
|
|
@@ -342,6 +354,14 @@ module Google
|
|
342
354
|
end
|
343
355
|
end
|
344
356
|
|
357
|
+
class GoogleChromePolicyVersionsV1CertificateReference
|
358
|
+
# @private
|
359
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
360
|
+
property :network, as: 'network'
|
361
|
+
property :org_unit_id, as: 'orgUnitId'
|
362
|
+
end
|
363
|
+
end
|
364
|
+
|
345
365
|
class GoogleChromePolicyVersionsV1DefineCertificateRequest
|
346
366
|
# @private
|
347
367
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -562,6 +582,14 @@ module Google
|
|
562
582
|
end
|
563
583
|
end
|
564
584
|
|
585
|
+
class GoogleChromePolicyVersionsV1RemoveCertificateErrorDetails
|
586
|
+
# @private
|
587
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
588
|
+
collection :certificate_references, as: 'certificateReferences', class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1CertificateReference, decorator: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1CertificateReference::Representation
|
589
|
+
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
565
593
|
class GoogleChromePolicyVersionsV1RemoveCertificateRequest
|
566
594
|
# @private
|
567
595
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.31.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: 2022-10-
|
11
|
+
date: 2022-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.31.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: []
|