google-apis-cloudidentity_v1beta1 0.64.0 → 0.65.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: 6d656700f355927287b5ad8a65cc0b6cdd235fdd000d60672f6c449f9f6c9038
4
- data.tar.gz: 62951c6aa6886b8b9f99e21553da83752d46d8bf8e768c7afb98c4be8bfeed14
3
+ metadata.gz: fbf3504a77d33967539431e3d5ece13c78debb913258c7da0a87fa6351476328
4
+ data.tar.gz: 0a57a1987334a1b2fc5dbe99aada9d2ad004fdbc2d1f340e8156111b5a74e1cf
5
5
  SHA512:
6
- metadata.gz: 47e01baaf4d5ad91293c1833d314df9106a98fe7ff7d2ae14e43a09239c00ad3404578a62d5c70c47b52aeeca9032ee3ff11f60ab50fd00f6e52a42fab7c924e
7
- data.tar.gz: 1b17f2be3e10d702e90f06199663ffe77710fc51902b2394c08e098cf0353d8c27170b9e4d29cf52480773a3c61fe051c57b8ed9c14890e1b7af3bca45b6da10
6
+ metadata.gz: 32895f3a2b46518816fbdaee4502028e8887955aa24bf35ecb617e066100a10c58d79b5fab91120a2ba120929e24dd2daec88c0b9cf6f6b86f8a8422470fb8e5
7
+ data.tar.gz: 32cf9ea951f91595d26cd5d652d2596b3b9acf79cd990b109b15410c9cdf3c5af79d2020997b272f0f53b6943bac33455883286bac0803299533356f2139734e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.65.0 (2026-05-24)
4
+
5
+ * Regenerated from discovery document revision 20260520
6
+
3
7
  ### v0.64.0 (2026-03-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20260317
@@ -136,6 +136,37 @@ module Google
136
136
  end
137
137
  end
138
138
 
139
+ # Resource representing the anti-virus information of a Device.
140
+ class AntivirusInfo
141
+ include Google::Apis::Core::Hashable
142
+
143
+ # Output only. The display name of the anti-virus software.
144
+ # Corresponds to the JSON property `displayName`
145
+ # @return [String]
146
+ attr_accessor :display_name
147
+
148
+ # Output only. The GUID of the anti-virus product.
149
+ # Corresponds to the JSON property `productGuid`
150
+ # @return [String]
151
+ attr_accessor :product_guid
152
+
153
+ # Output only. The state of the anti-virus.
154
+ # Corresponds to the JSON property `productState`
155
+ # @return [String]
156
+ attr_accessor :product_state
157
+
158
+ def initialize(**args)
159
+ update!(**args)
160
+ end
161
+
162
+ # Update properties of this object
163
+ def update!(**args)
164
+ @display_name = args[:display_name] if args.key?(:display_name)
165
+ @product_guid = args[:product_guid] if args.key?(:product_guid)
166
+ @product_state = args[:product_state] if args.key?(:product_state)
167
+ end
168
+ end
169
+
139
170
  # Request message for approving the device to access user data.
140
171
  class ApproveDeviceUserRequest
141
172
  include Google::Apis::Core::Hashable
@@ -954,6 +985,11 @@ module Google
954
985
  # @return [Google::Apis::CloudidentityV1beta1::AndroidAttributes]
955
986
  attr_accessor :android_specific_attributes
956
987
 
988
+ # Output only. Anti-virus information for the device.
989
+ # Corresponds to the JSON property `antivirusInfo`
990
+ # @return [Array<Google::Apis::CloudidentityV1beta1::AntivirusInfo>]
991
+ attr_accessor :antivirus_info
992
+
957
993
  # Asset tag of the device.
958
994
  # Corresponds to the JSON property `assetTag`
959
995
  # @return [String]
@@ -1088,6 +1124,11 @@ module Google
1088
1124
  # @return [String]
1089
1125
  attr_accessor :network_operator
1090
1126
 
1127
+ # Output only. OS firewall status of the device.
1128
+ # Corresponds to the JSON property `osFirewallStatus`
1129
+ # @return [String]
1130
+ attr_accessor :os_firewall_status
1131
+
1091
1132
  # Output only. OS version of the device. Example: Android 8.1.0.
1092
1133
  # Corresponds to the JSON property `osVersion`
1093
1134
  # @return [String]
@@ -1132,6 +1173,11 @@ module Google
1132
1173
  # @return [Array<String>]
1133
1174
  attr_accessor :wifi_mac_addresses
1134
1175
 
1176
+ # Represents the Windows specific attributes of a Device.
1177
+ # Corresponds to the JSON property `windowsSpecificDeviceAttributes`
1178
+ # @return [Google::Apis::CloudidentityV1beta1::WindowsSpecificDeviceAttributes]
1179
+ attr_accessor :windows_specific_device_attributes
1180
+
1135
1181
  def initialize(**args)
1136
1182
  update!(**args)
1137
1183
  end
@@ -1139,6 +1185,7 @@ module Google
1139
1185
  # Update properties of this object
1140
1186
  def update!(**args)
1141
1187
  @android_specific_attributes = args[:android_specific_attributes] if args.key?(:android_specific_attributes)
1188
+ @antivirus_info = args[:antivirus_info] if args.key?(:antivirus_info)
1142
1189
  @asset_tag = args[:asset_tag] if args.key?(:asset_tag)
1143
1190
  @baseband_version = args[:baseband_version] if args.key?(:baseband_version)
1144
1191
  @bootloader_version = args[:bootloader_version] if args.key?(:bootloader_version)
@@ -1164,6 +1211,7 @@ module Google
1164
1211
  @model = args[:model] if args.key?(:model)
1165
1212
  @name = args[:name] if args.key?(:name)
1166
1213
  @network_operator = args[:network_operator] if args.key?(:network_operator)
1214
+ @os_firewall_status = args[:os_firewall_status] if args.key?(:os_firewall_status)
1167
1215
  @os_version = args[:os_version] if args.key?(:os_version)
1168
1216
  @other_accounts = args[:other_accounts] if args.key?(:other_accounts)
1169
1217
  @owner_type = args[:owner_type] if args.key?(:owner_type)
@@ -1172,6 +1220,7 @@ module Google
1172
1220
  @serial_number = args[:serial_number] if args.key?(:serial_number)
1173
1221
  @unified_device_id = args[:unified_device_id] if args.key?(:unified_device_id)
1174
1222
  @wifi_mac_addresses = args[:wifi_mac_addresses] if args.key?(:wifi_mac_addresses)
1223
+ @windows_specific_device_attributes = args[:windows_specific_device_attributes] if args.key?(:windows_specific_device_attributes)
1175
1224
  end
1176
1225
  end
1177
1226
 
@@ -4606,6 +4655,45 @@ module Google
4606
4655
  end
4607
4656
  end
4608
4657
 
4658
+ # Represents the Windows specific attributes of a Device.
4659
+ class WindowsSpecificDeviceAttributes
4660
+ include Google::Apis::Core::Hashable
4661
+
4662
+ # Output only. The hotfixes installed on the device.
4663
+ # Corresponds to the JSON property `hotfixes`
4664
+ # @return [Array<String>]
4665
+ attr_accessor :hotfixes
4666
+
4667
+ # Output only. Secure boot mode of the device.
4668
+ # Corresponds to the JSON property `secureBootMode`
4669
+ # @return [String]
4670
+ attr_accessor :secure_boot_mode
4671
+
4672
+ # Output only. The domain of the machine that the user is logged into. This is
4673
+ # different from the windows_user_domain as the user could be logged into a
4674
+ # domain different from the machine domain.
4675
+ # Corresponds to the JSON property `windowsMachineDomain`
4676
+ # @return [String]
4677
+ attr_accessor :windows_machine_domain
4678
+
4679
+ # Output only. The domain of the user account that is logged into the machine.
4680
+ # Corresponds to the JSON property `windowsUserDomain`
4681
+ # @return [String]
4682
+ attr_accessor :windows_user_domain
4683
+
4684
+ def initialize(**args)
4685
+ update!(**args)
4686
+ end
4687
+
4688
+ # Update properties of this object
4689
+ def update!(**args)
4690
+ @hotfixes = args[:hotfixes] if args.key?(:hotfixes)
4691
+ @secure_boot_mode = args[:secure_boot_mode] if args.key?(:secure_boot_mode)
4692
+ @windows_machine_domain = args[:windows_machine_domain] if args.key?(:windows_machine_domain)
4693
+ @windows_user_domain = args[:windows_user_domain] if args.key?(:windows_user_domain)
4694
+ end
4695
+ end
4696
+
4609
4697
  # Request message for wiping all data on the device.
4610
4698
  class WipeDeviceRequest
4611
4699
  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.64.0"
19
+ GEM_VERSION = "0.65.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 = "20260317"
25
+ REVISION = "20260520"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class AntivirusInfo
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class ApproveDeviceUserRequest
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -796,6 +802,12 @@ module Google
796
802
  include Google::Apis::Core::JsonObjectSupport
797
803
  end
798
804
 
805
+ class WindowsSpecificDeviceAttributes
806
+ class Representation < Google::Apis::Core::JsonRepresentation; end
807
+
808
+ include Google::Apis::Core::JsonObjectSupport
809
+ end
810
+
799
811
  class WipeDeviceRequest
800
812
  class Representation < Google::Apis::Core::JsonRepresentation; end
801
813
 
@@ -848,6 +860,15 @@ module Google
848
860
  end
849
861
  end
850
862
 
863
+ class AntivirusInfo
864
+ # @private
865
+ class Representation < Google::Apis::Core::JsonRepresentation
866
+ property :display_name, as: 'displayName'
867
+ property :product_guid, as: 'productGuid'
868
+ property :product_state, as: 'productState'
869
+ end
870
+ end
871
+
851
872
  class ApproveDeviceUserRequest
852
873
  # @private
853
874
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1076,6 +1097,8 @@ module Google
1076
1097
  class Representation < Google::Apis::Core::JsonRepresentation
1077
1098
  property :android_specific_attributes, as: 'androidSpecificAttributes', class: Google::Apis::CloudidentityV1beta1::AndroidAttributes, decorator: Google::Apis::CloudidentityV1beta1::AndroidAttributes::Representation
1078
1099
 
1100
+ collection :antivirus_info, as: 'antivirusInfo', class: Google::Apis::CloudidentityV1beta1::AntivirusInfo, decorator: Google::Apis::CloudidentityV1beta1::AntivirusInfo::Representation
1101
+
1079
1102
  property :asset_tag, as: 'assetTag'
1080
1103
  property :baseband_version, as: 'basebandVersion'
1081
1104
  property :bootloader_version, as: 'bootloaderVersion'
@@ -1103,6 +1126,7 @@ module Google
1103
1126
  property :model, as: 'model'
1104
1127
  property :name, as: 'name'
1105
1128
  property :network_operator, as: 'networkOperator'
1129
+ property :os_firewall_status, as: 'osFirewallStatus'
1106
1130
  property :os_version, as: 'osVersion'
1107
1131
  collection :other_accounts, as: 'otherAccounts'
1108
1132
  property :owner_type, as: 'ownerType'
@@ -1111,6 +1135,8 @@ module Google
1111
1135
  property :serial_number, as: 'serialNumber'
1112
1136
  property :unified_device_id, as: 'unifiedDeviceId'
1113
1137
  collection :wifi_mac_addresses, as: 'wifiMacAddresses'
1138
+ property :windows_specific_device_attributes, as: 'windowsSpecificDeviceAttributes', class: Google::Apis::CloudidentityV1beta1::WindowsSpecificDeviceAttributes, decorator: Google::Apis::CloudidentityV1beta1::WindowsSpecificDeviceAttributes::Representation
1139
+
1114
1140
  end
1115
1141
  end
1116
1142
 
@@ -2080,6 +2106,16 @@ module Google
2080
2106
  end
2081
2107
  end
2082
2108
 
2109
+ class WindowsSpecificDeviceAttributes
2110
+ # @private
2111
+ class Representation < Google::Apis::Core::JsonRepresentation
2112
+ collection :hotfixes, as: 'hotfixes'
2113
+ property :secure_boot_mode, as: 'secureBootMode'
2114
+ property :windows_machine_domain, as: 'windowsMachineDomain'
2115
+ property :windows_user_domain, as: 'windowsUserDomain'
2116
+ end
2117
+ end
2118
+
2083
2119
  class WipeDeviceRequest
2084
2120
  # @private
2085
2121
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2688,15 +2688,17 @@ module Google
2688
2688
  # Optional. A CEL expression for filtering the results. Policies can be filtered
2689
2689
  # by application with this expression: setting.type.matches('^settings/gmail\\..*
2690
2690
  # $') Policies can be filtered by setting type with this expression: setting.
2691
- # type.matches('^.*\\.service_status$') A maximum of one of the above setting.
2692
- # type clauses can be used. Policies can be filtered by customer with this
2693
- # expression: customer == "customers/`customer`" Where `customer` is the `id`
2694
- # from the [Admin SDK `Customer` resource](https://developers.google.com/admin-
2695
- # sdk/directory/reference/rest/v1/customers). You may use `customers/my_customer`
2696
- # to specify your own organization. When no customer is mentioned it will be
2697
- # default to customers/my_customer. A maximum of one customer clause can be used.
2698
- # The above clauses can only be combined together in a single filter expression
2699
- # with the `&&` operator.
2691
+ # type.matches('^.*\\.service_status$') Policies can be filtered by customer
2692
+ # with this expression: customer == "customers/`customer`" Where `customer` is
2693
+ # the `id` from the [Admin SDK `Customer` resource](https://developers.google.
2694
+ # com/admin-sdk/directory/reference/rest/v1/customers). You may use `customers/
2695
+ # my_customer` to specify your own organization. When no customer is mentioned
2696
+ # it will be default to customers/my_customer. You may only filter on policies
2697
+ # for a single customer at a time. The above clauses can be combined together in
2698
+ # a single filter expression with the `&&` and `||` operators, like in the
2699
+ # following example: customer == "customers/my_customer" && ( setting.type.
2700
+ # matches('^settings/gmail\\..*$') || setting.type.matches('^.*\\.service_status$
2701
+ # ') )
2700
2702
  # @param [Fixnum] page_size
2701
2703
  # Optional. The maximum number of results to return. The service can return
2702
2704
  # fewer than this number. If omitted or set to 0, the default is 50 results per
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.64.0
4
+ version: 0.65.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.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.65.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: