google-apis-cloudidentity_v1beta1 0.62.0 → 0.63.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: e0da8e5f4f6931c266e3a6f47b423d67b6cdf2f32991a9355d0fd12f0f4fdcd4
|
|
4
|
+
data.tar.gz: 90644e942a10e237289349869dc3ea740d95d0e337c9729c1f6ff79305ac43c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e272bf0b0f781a64c1d043f7dee994d0ef8585d843206b55e035f4c9a266a870af5688498fc5ff6bba4b7d5c70c20e890da920ff05833ebce17dee8298e7c819
|
|
7
|
+
data.tar.gz: 7a34c6797478f3b58c7d21f9efc16909cc34172aa79ba4ec06ccd42d40a1455b1b0f7ccc5d7742e9edd056daebdf31a6347e1ec57ae03811801cef9590ac9d3b
|
data/CHANGELOG.md
CHANGED
|
@@ -222,15 +222,15 @@ module Google
|
|
|
222
222
|
end
|
|
223
223
|
end
|
|
224
224
|
|
|
225
|
-
# Contains information about browser profiles reported by the
|
|
226
|
-
# Verification extension](https://chromewebstore.google.
|
|
227
|
-
# verification/callobklhcbilhphinckomhgkigmfocg?pli=1).
|
|
225
|
+
# Contains information about browser profiles reported by the Clients on the
|
|
226
|
+
# device (e.g. [Endpoint Verification extension](https://chromewebstore.google.
|
|
227
|
+
# com/detail/endpoint-verification/callobklhcbilhphinckomhgkigmfocg?pli=1)).
|
|
228
228
|
class BrowserAttributes
|
|
229
229
|
include Google::Apis::Core::Hashable
|
|
230
230
|
|
|
231
|
-
# Browser-specific fields reported by the [Endpoint
|
|
232
|
-
# https://chromewebstore.google.com/detail/endpoint-
|
|
233
|
-
# callobklhcbilhphinckomhgkigmfocg?pli=1).
|
|
231
|
+
# Browser-specific fields reported by clients on the device, such as [Endpoint
|
|
232
|
+
# Verification extension](https://chromewebstore.google.com/detail/endpoint-
|
|
233
|
+
# verification/callobklhcbilhphinckomhgkigmfocg?pli=1).
|
|
234
234
|
# Corresponds to the JSON property `chromeBrowserInfo`
|
|
235
235
|
# @return [Google::Apis::CloudidentityV1beta1::BrowserInfo]
|
|
236
236
|
attr_accessor :chrome_browser_info
|
|
@@ -259,9 +259,9 @@ module Google
|
|
|
259
259
|
end
|
|
260
260
|
end
|
|
261
261
|
|
|
262
|
-
# Browser-specific fields reported by the [Endpoint
|
|
263
|
-
# https://chromewebstore.google.com/detail/endpoint-
|
|
264
|
-
# callobklhcbilhphinckomhgkigmfocg?pli=1).
|
|
262
|
+
# Browser-specific fields reported by clients on the device, such as [Endpoint
|
|
263
|
+
# Verification extension](https://chromewebstore.google.com/detail/endpoint-
|
|
264
|
+
# verification/callobklhcbilhphinckomhgkigmfocg?pli=1).
|
|
265
265
|
class BrowserInfo
|
|
266
266
|
include Google::Apis::Core::Hashable
|
|
267
267
|
|
|
@@ -357,6 +357,13 @@ module Google
|
|
|
357
357
|
# @return [String]
|
|
358
358
|
attr_accessor :password_protection_warning_trigger
|
|
359
359
|
|
|
360
|
+
# Output only. Chrome policies information for the browser as can be seen in
|
|
361
|
+
# chrome://policy. Full possibilities of policies can be consulted in [Chrome
|
|
362
|
+
# Enterprise Policy List](https://chromeenterprise.google/policies/).
|
|
363
|
+
# Corresponds to the JSON property `policies`
|
|
364
|
+
# @return [Array<Google::Apis::CloudidentityV1beta1::ChromePolicy>]
|
|
365
|
+
attr_accessor :policies
|
|
366
|
+
|
|
360
367
|
# Current state of [Safe Browsing protection level](https://chromeenterprise.
|
|
361
368
|
# google/policies/#SafeBrowsingProtectionLevel).
|
|
362
369
|
# Corresponds to the JSON property `safeBrowsingProtectionLevel`
|
|
@@ -382,6 +389,7 @@ module Google
|
|
|
382
389
|
@is_site_isolation_enabled = args[:is_site_isolation_enabled] if args.key?(:is_site_isolation_enabled)
|
|
383
390
|
@is_third_party_blocking_enabled = args[:is_third_party_blocking_enabled] if args.key?(:is_third_party_blocking_enabled)
|
|
384
391
|
@password_protection_warning_trigger = args[:password_protection_warning_trigger] if args.key?(:password_protection_warning_trigger)
|
|
392
|
+
@policies = args[:policies] if args.key?(:policies)
|
|
385
393
|
@safe_browsing_protection_level = args[:safe_browsing_protection_level] if args.key?(:safe_browsing_protection_level)
|
|
386
394
|
end
|
|
387
395
|
end
|
|
@@ -611,6 +619,55 @@ module Google
|
|
|
611
619
|
end
|
|
612
620
|
end
|
|
613
621
|
|
|
622
|
+
# Represents a Chrome policy and its current state.
|
|
623
|
+
class ChromePolicy
|
|
624
|
+
include Google::Apis::Core::Hashable
|
|
625
|
+
|
|
626
|
+
# Output only. A list of other policy values for the same policy name that were
|
|
627
|
+
# not applied due to lower precedence. This field is empty if there were no
|
|
628
|
+
# conflicts.
|
|
629
|
+
# Corresponds to the JSON property `conflicts`
|
|
630
|
+
# @return [Array<Google::Apis::CloudidentityV1beta1::PolicyConflict>]
|
|
631
|
+
attr_accessor :conflicts
|
|
632
|
+
|
|
633
|
+
# Output only. The unique name of the Chrome policy. These names correspond to
|
|
634
|
+
# the policy names listed in [Chrome Enterprise Policy List](https://
|
|
635
|
+
# chromeenterprise.google/policies/)
|
|
636
|
+
# Corresponds to the JSON property `name`
|
|
637
|
+
# @return [String]
|
|
638
|
+
attr_accessor :name
|
|
639
|
+
|
|
640
|
+
# Output only. The scope at which the *applied* policy value is set (USER or
|
|
641
|
+
# MACHINE).
|
|
642
|
+
# Corresponds to the JSON property `scope`
|
|
643
|
+
# @return [String]
|
|
644
|
+
attr_accessor :scope
|
|
645
|
+
|
|
646
|
+
# Output only. The source from which the *applied* policy value originated.
|
|
647
|
+
# Corresponds to the JSON property `source`
|
|
648
|
+
# @return [String]
|
|
649
|
+
attr_accessor :source
|
|
650
|
+
|
|
651
|
+
# Output only. The currently applied value of the policy. The format depends on
|
|
652
|
+
# the policy type (e.g., boolean, string, JSON array/object).
|
|
653
|
+
# Corresponds to the JSON property `value`
|
|
654
|
+
# @return [String]
|
|
655
|
+
attr_accessor :value
|
|
656
|
+
|
|
657
|
+
def initialize(**args)
|
|
658
|
+
update!(**args)
|
|
659
|
+
end
|
|
660
|
+
|
|
661
|
+
# Update properties of this object
|
|
662
|
+
def update!(**args)
|
|
663
|
+
@conflicts = args[:conflicts] if args.key?(:conflicts)
|
|
664
|
+
@name = args[:name] if args.key?(:name)
|
|
665
|
+
@scope = args[:scope] if args.key?(:scope)
|
|
666
|
+
@source = args[:source] if args.key?(:source)
|
|
667
|
+
@value = args[:value] if args.key?(:value)
|
|
668
|
+
end
|
|
669
|
+
end
|
|
670
|
+
|
|
614
671
|
# Represents the state associated with an API client calling the Devices API.
|
|
615
672
|
# Resource representing ClientState and supports updates from API users
|
|
616
673
|
class ClientState
|
|
@@ -917,6 +974,14 @@ module Google
|
|
|
917
974
|
# @return [String]
|
|
918
975
|
attr_accessor :brand
|
|
919
976
|
|
|
977
|
+
# Browser profiles on the device. This is a copy of the BrowserAttributes
|
|
978
|
+
# message defined in EndpointVerificationSpecificAttributes. We are replicating
|
|
979
|
+
# it here since EndpointVerification isn't the only client reporting browser
|
|
980
|
+
# profiles.
|
|
981
|
+
# Corresponds to the JSON property `browserProfiles`
|
|
982
|
+
# @return [Array<Google::Apis::CloudidentityV1beta1::BrowserAttributes>]
|
|
983
|
+
attr_accessor :browser_profiles
|
|
984
|
+
|
|
920
985
|
# Output only. Build number of the device.
|
|
921
986
|
# Corresponds to the JSON property `buildNumber`
|
|
922
987
|
# @return [String]
|
|
@@ -1078,6 +1143,7 @@ module Google
|
|
|
1078
1143
|
@baseband_version = args[:baseband_version] if args.key?(:baseband_version)
|
|
1079
1144
|
@bootloader_version = args[:bootloader_version] if args.key?(:bootloader_version)
|
|
1080
1145
|
@brand = args[:brand] if args.key?(:brand)
|
|
1146
|
+
@browser_profiles = args[:browser_profiles] if args.key?(:browser_profiles)
|
|
1081
1147
|
@build_number = args[:build_number] if args.key?(:build_number)
|
|
1082
1148
|
@client_types = args[:client_types] if args.key?(:client_types)
|
|
1083
1149
|
@compromised_state = args[:compromised_state] if args.key?(:compromised_state)
|
|
@@ -3894,6 +3960,39 @@ module Google
|
|
|
3894
3960
|
end
|
|
3895
3961
|
end
|
|
3896
3962
|
|
|
3963
|
+
# Represents a policy value from a source that was not applied because a higher-
|
|
3964
|
+
# priority source took precedence.
|
|
3965
|
+
class PolicyConflict
|
|
3966
|
+
include Google::Apis::Core::Hashable
|
|
3967
|
+
|
|
3968
|
+
# Output only. The scope at which this lower-priority policy is set (USER or
|
|
3969
|
+
# MACHINE).
|
|
3970
|
+
# Corresponds to the JSON property `scope`
|
|
3971
|
+
# @return [String]
|
|
3972
|
+
attr_accessor :scope
|
|
3973
|
+
|
|
3974
|
+
# Output only. The source from which this lower-priority policy value originated.
|
|
3975
|
+
# Corresponds to the JSON property `source`
|
|
3976
|
+
# @return [String]
|
|
3977
|
+
attr_accessor :source
|
|
3978
|
+
|
|
3979
|
+
# Output only. The policy value from this lower-priority source.
|
|
3980
|
+
# Corresponds to the JSON property `value`
|
|
3981
|
+
# @return [String]
|
|
3982
|
+
attr_accessor :value
|
|
3983
|
+
|
|
3984
|
+
def initialize(**args)
|
|
3985
|
+
update!(**args)
|
|
3986
|
+
end
|
|
3987
|
+
|
|
3988
|
+
# Update properties of this object
|
|
3989
|
+
def update!(**args)
|
|
3990
|
+
@scope = args[:scope] if args.key?(:scope)
|
|
3991
|
+
@source = args[:source] if args.key?(:source)
|
|
3992
|
+
@value = args[:value] if args.key?(:value)
|
|
3993
|
+
end
|
|
3994
|
+
end
|
|
3995
|
+
|
|
3897
3996
|
# PolicyQuery
|
|
3898
3997
|
class PolicyQuery
|
|
3899
3998
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudidentityV1beta1
|
|
18
18
|
# Version of the google-apis-cloudidentity_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.63.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260310"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -124,6 +124,12 @@ module Google
|
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
|
125
125
|
end
|
|
126
126
|
|
|
127
|
+
class ChromePolicy
|
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
|
+
|
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
131
|
+
end
|
|
132
|
+
|
|
127
133
|
class ClientState
|
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
135
|
|
|
@@ -646,6 +652,12 @@ module Google
|
|
|
646
652
|
include Google::Apis::Core::JsonObjectSupport
|
|
647
653
|
end
|
|
648
654
|
|
|
655
|
+
class PolicyConflict
|
|
656
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
657
|
+
|
|
658
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
659
|
+
end
|
|
660
|
+
|
|
649
661
|
class PolicyQuery
|
|
650
662
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
651
663
|
|
|
@@ -892,6 +904,8 @@ module Google
|
|
|
892
904
|
property :is_site_isolation_enabled, as: 'isSiteIsolationEnabled'
|
|
893
905
|
property :is_third_party_blocking_enabled, as: 'isThirdPartyBlockingEnabled'
|
|
894
906
|
property :password_protection_warning_trigger, as: 'passwordProtectionWarningTrigger'
|
|
907
|
+
collection :policies, as: 'policies', class: Google::Apis::CloudidentityV1beta1::ChromePolicy, decorator: Google::Apis::CloudidentityV1beta1::ChromePolicy::Representation
|
|
908
|
+
|
|
895
909
|
property :safe_browsing_protection_level, as: 'safeBrowsingProtectionLevel'
|
|
896
910
|
end
|
|
897
911
|
end
|
|
@@ -964,6 +978,18 @@ module Google
|
|
|
964
978
|
end
|
|
965
979
|
end
|
|
966
980
|
|
|
981
|
+
class ChromePolicy
|
|
982
|
+
# @private
|
|
983
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
984
|
+
collection :conflicts, as: 'conflicts', class: Google::Apis::CloudidentityV1beta1::PolicyConflict, decorator: Google::Apis::CloudidentityV1beta1::PolicyConflict::Representation
|
|
985
|
+
|
|
986
|
+
property :name, as: 'name'
|
|
987
|
+
property :scope, as: 'scope'
|
|
988
|
+
property :source, as: 'source'
|
|
989
|
+
property :value, as: 'value'
|
|
990
|
+
end
|
|
991
|
+
end
|
|
992
|
+
|
|
967
993
|
class ClientState
|
|
968
994
|
# @private
|
|
969
995
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1054,6 +1080,8 @@ module Google
|
|
|
1054
1080
|
property :baseband_version, as: 'basebandVersion'
|
|
1055
1081
|
property :bootloader_version, as: 'bootloaderVersion'
|
|
1056
1082
|
property :brand, as: 'brand'
|
|
1083
|
+
collection :browser_profiles, as: 'browserProfiles', class: Google::Apis::CloudidentityV1beta1::BrowserAttributes, decorator: Google::Apis::CloudidentityV1beta1::BrowserAttributes::Representation
|
|
1084
|
+
|
|
1057
1085
|
property :build_number, as: 'buildNumber'
|
|
1058
1086
|
collection :client_types, as: 'clientTypes'
|
|
1059
1087
|
property :compromised_state, as: 'compromisedState'
|
|
@@ -1856,6 +1884,15 @@ module Google
|
|
|
1856
1884
|
end
|
|
1857
1885
|
end
|
|
1858
1886
|
|
|
1887
|
+
class PolicyConflict
|
|
1888
|
+
# @private
|
|
1889
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1890
|
+
property :scope, as: 'scope'
|
|
1891
|
+
property :source, as: 'source'
|
|
1892
|
+
property :value, as: 'value'
|
|
1893
|
+
end
|
|
1894
|
+
end
|
|
1895
|
+
|
|
1859
1896
|
class PolicyQuery
|
|
1860
1897
|
# @private
|
|
1861
1898
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudidentity_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.63.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.63.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudidentity_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|