google-apis-chromemanagement_v1 0.75.0 → 0.76.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +103 -0
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/chromemanagement_v1/representations.rb +48 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +58 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57fbcc730c3bc9f40edef5e53dc7d1d61cd26f465826e02e0d91e215a30fde55
|
|
4
|
+
data.tar.gz: 8a7bb8cb7ee321cc2fe56c9d91516ac58eece404770743d6ac32f622aca561fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9096edb7724afee83858e84948ba0e982a16f4f0950fc2534de2601b3ec071843099b16dc80a0a65b341285c8f96073e58ef0e2b871be13993f56a83c8f0fe2
|
|
7
|
+
data.tar.gz: 43b6a4f2383f83cab6a4442aba6a0f2a17a9d9e3aa69a81150bf536c5903346453f547b4b3629c35ff6afd424728fc7354b85ad3e13ffb7369720e4c402edad4
|
data/CHANGELOG.md
CHANGED
|
@@ -1947,6 +1947,38 @@ module Google
|
|
|
1947
1947
|
end
|
|
1948
1948
|
end
|
|
1949
1949
|
|
|
1950
|
+
# Response containing a list of profiles with queried app installed.
|
|
1951
|
+
class GoogleChromeManagementV1FindInstalledAppProfilesResponse
|
|
1952
|
+
include Google::Apis::Core::Hashable
|
|
1953
|
+
|
|
1954
|
+
# Token to specify the next page of the request.
|
|
1955
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
1956
|
+
# @return [String]
|
|
1957
|
+
attr_accessor :next_page_token
|
|
1958
|
+
|
|
1959
|
+
# A list of profiles which have the app installed. Sorted in ascending
|
|
1960
|
+
# alphabetical order on the profile.Email field.
|
|
1961
|
+
# Corresponds to the JSON property `profiles`
|
|
1962
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ProfileAppInstallInstance>]
|
|
1963
|
+
attr_accessor :profiles
|
|
1964
|
+
|
|
1965
|
+
# Total number of profiles matching request.
|
|
1966
|
+
# Corresponds to the JSON property `totalSize`
|
|
1967
|
+
# @return [Fixnum]
|
|
1968
|
+
attr_accessor :total_size
|
|
1969
|
+
|
|
1970
|
+
def initialize(**args)
|
|
1971
|
+
update!(**args)
|
|
1972
|
+
end
|
|
1973
|
+
|
|
1974
|
+
# Update properties of this object
|
|
1975
|
+
def update!(**args)
|
|
1976
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1977
|
+
@profiles = args[:profiles] if args.key?(:profiles)
|
|
1978
|
+
@total_size = args[:total_size] if args.key?(:total_size)
|
|
1979
|
+
end
|
|
1980
|
+
end
|
|
1981
|
+
|
|
1950
1982
|
# Information of a graphics adapter (GPU).
|
|
1951
1983
|
class GoogleChromeManagementV1GraphicsAdapterInfo
|
|
1952
1984
|
include Google::Apis::Core::Hashable
|
|
@@ -2948,6 +2980,44 @@ module Google
|
|
|
2948
2980
|
end
|
|
2949
2981
|
end
|
|
2950
2982
|
|
|
2983
|
+
# Describes a profile reporting Chrome Profile information.
|
|
2984
|
+
class GoogleChromeManagementV1ProfileAppInstallInstance
|
|
2985
|
+
include Google::Apis::Core::Hashable
|
|
2986
|
+
|
|
2987
|
+
# Output only. The email of the profile.
|
|
2988
|
+
# Corresponds to the JSON property `email`
|
|
2989
|
+
# @return [String]
|
|
2990
|
+
attr_accessor :email
|
|
2991
|
+
|
|
2992
|
+
# Output only. The Chrome client side profile ID.
|
|
2993
|
+
# Corresponds to the JSON property `profileId`
|
|
2994
|
+
# @return [String]
|
|
2995
|
+
attr_accessor :profile_id
|
|
2996
|
+
|
|
2997
|
+
# Output only. The organizational unit id of the profile.
|
|
2998
|
+
# Corresponds to the JSON property `profileOrgUnitId`
|
|
2999
|
+
# @return [String]
|
|
3000
|
+
attr_accessor :profile_org_unit_id
|
|
3001
|
+
|
|
3002
|
+
# Output only. Profile permanent ID is the unique identifier of a profile within
|
|
3003
|
+
# one customer.
|
|
3004
|
+
# Corresponds to the JSON property `profilePermanentId`
|
|
3005
|
+
# @return [String]
|
|
3006
|
+
attr_accessor :profile_permanent_id
|
|
3007
|
+
|
|
3008
|
+
def initialize(**args)
|
|
3009
|
+
update!(**args)
|
|
3010
|
+
end
|
|
3011
|
+
|
|
3012
|
+
# Update properties of this object
|
|
3013
|
+
def update!(**args)
|
|
3014
|
+
@email = args[:email] if args.key?(:email)
|
|
3015
|
+
@profile_id = args[:profile_id] if args.key?(:profile_id)
|
|
3016
|
+
@profile_org_unit_id = args[:profile_org_unit_id] if args.key?(:profile_org_unit_id)
|
|
3017
|
+
@profile_permanent_id = args[:profile_permanent_id] if args.key?(:profile_permanent_id)
|
|
3018
|
+
end
|
|
3019
|
+
end
|
|
3020
|
+
|
|
2951
3021
|
# Risk assessment for a Chrome extension.
|
|
2952
3022
|
class GoogleChromeManagementV1RiskAssessment
|
|
2953
3023
|
include Google::Apis::Core::Hashable
|
|
@@ -4979,6 +5049,11 @@ module Google
|
|
|
4979
5049
|
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GoogleSecOpsConfig]
|
|
4980
5050
|
attr_accessor :google_sec_ops_config
|
|
4981
5051
|
|
|
5052
|
+
# MIP label connector config.
|
|
5053
|
+
# Corresponds to the JSON property `mipLabelConfig`
|
|
5054
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MipLabelConfig]
|
|
5055
|
+
attr_accessor :mip_label_config
|
|
5056
|
+
|
|
4982
5057
|
# Palo Alto Networks connector config.
|
|
4983
5058
|
# Corresponds to the JSON property `paloAltoNetworksConfig`
|
|
4984
5059
|
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PaloAltoNetworksConfig]
|
|
@@ -5010,6 +5085,7 @@ module Google
|
|
|
5010
5085
|
@crowd_strike_xdr_config = args[:crowd_strike_xdr_config] if args.key?(:crowd_strike_xdr_config)
|
|
5011
5086
|
@device_trust_config = args[:device_trust_config] if args.key?(:device_trust_config)
|
|
5012
5087
|
@google_sec_ops_config = args[:google_sec_ops_config] if args.key?(:google_sec_ops_config)
|
|
5088
|
+
@mip_label_config = args[:mip_label_config] if args.key?(:mip_label_config)
|
|
5013
5089
|
@palo_alto_networks_config = args[:palo_alto_networks_config] if args.key?(:palo_alto_networks_config)
|
|
5014
5090
|
@pub_sub_config = args[:pub_sub_config] if args.key?(:pub_sub_config)
|
|
5015
5091
|
@pub_sub_xdr_config = args[:pub_sub_xdr_config] if args.key?(:pub_sub_xdr_config)
|
|
@@ -5395,6 +5471,33 @@ module Google
|
|
|
5395
5471
|
end
|
|
5396
5472
|
end
|
|
5397
5473
|
|
|
5474
|
+
# MIP label connector config.
|
|
5475
|
+
class GoogleChromeManagementVersionsV1MipLabelConfig
|
|
5476
|
+
include Google::Apis::Core::Hashable
|
|
5477
|
+
|
|
5478
|
+
# Optional. Domain can be used optionally for the corner case where one Dasher
|
|
5479
|
+
# customer ID maps to multiple Microsoft tenant ID. Each domain can be verified
|
|
5480
|
+
# with at most one Microsoft tenant.
|
|
5481
|
+
# Corresponds to the JSON property `domains`
|
|
5482
|
+
# @return [Array<String>]
|
|
5483
|
+
attr_accessor :domains
|
|
5484
|
+
|
|
5485
|
+
# Required. Microsoft tenant ID.
|
|
5486
|
+
# Corresponds to the JSON property `microsoftTenantId`
|
|
5487
|
+
# @return [String]
|
|
5488
|
+
attr_accessor :microsoft_tenant_id
|
|
5489
|
+
|
|
5490
|
+
def initialize(**args)
|
|
5491
|
+
update!(**args)
|
|
5492
|
+
end
|
|
5493
|
+
|
|
5494
|
+
# Update properties of this object
|
|
5495
|
+
def update!(**args)
|
|
5496
|
+
@domains = args[:domains] if args.key?(:domains)
|
|
5497
|
+
@microsoft_tenant_id = args[:microsoft_tenant_id] if args.key?(:microsoft_tenant_id)
|
|
5498
|
+
end
|
|
5499
|
+
end
|
|
5500
|
+
|
|
5398
5501
|
# Request to MoveThirdPartyProfileUser method.
|
|
5399
5502
|
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
|
|
5400
5503
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ChromemanagementV1
|
|
18
18
|
# Version of the google-apis-chromemanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.76.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 = "20260505"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -286,6 +286,12 @@ module Google
|
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
|
287
287
|
end
|
|
288
288
|
|
|
289
|
+
class GoogleChromeManagementV1FindInstalledAppProfilesResponse
|
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
|
+
|
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
293
|
+
end
|
|
294
|
+
|
|
289
295
|
class GoogleChromeManagementV1GraphicsAdapterInfo
|
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
297
|
|
|
@@ -418,6 +424,12 @@ module Google
|
|
|
418
424
|
include Google::Apis::Core::JsonObjectSupport
|
|
419
425
|
end
|
|
420
426
|
|
|
427
|
+
class GoogleChromeManagementV1ProfileAppInstallInstance
|
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
429
|
+
|
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
431
|
+
end
|
|
432
|
+
|
|
421
433
|
class GoogleChromeManagementV1RiskAssessment
|
|
422
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
435
|
|
|
@@ -760,6 +772,12 @@ module Google
|
|
|
760
772
|
include Google::Apis::Core::JsonObjectSupport
|
|
761
773
|
end
|
|
762
774
|
|
|
775
|
+
class GoogleChromeManagementVersionsV1MipLabelConfig
|
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
777
|
+
|
|
778
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
779
|
+
end
|
|
780
|
+
|
|
763
781
|
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
|
|
764
782
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
765
783
|
|
|
@@ -1430,6 +1448,16 @@ module Google
|
|
|
1430
1448
|
end
|
|
1431
1449
|
end
|
|
1432
1450
|
|
|
1451
|
+
class GoogleChromeManagementV1FindInstalledAppProfilesResponse
|
|
1452
|
+
# @private
|
|
1453
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1454
|
+
property :next_page_token, as: 'nextPageToken'
|
|
1455
|
+
collection :profiles, as: 'profiles', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ProfileAppInstallInstance, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ProfileAppInstallInstance::Representation
|
|
1456
|
+
|
|
1457
|
+
property :total_size, as: 'totalSize'
|
|
1458
|
+
end
|
|
1459
|
+
end
|
|
1460
|
+
|
|
1433
1461
|
class GoogleChromeManagementV1GraphicsAdapterInfo
|
|
1434
1462
|
# @private
|
|
1435
1463
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1674,6 +1702,16 @@ module Google
|
|
|
1674
1702
|
end
|
|
1675
1703
|
end
|
|
1676
1704
|
|
|
1705
|
+
class GoogleChromeManagementV1ProfileAppInstallInstance
|
|
1706
|
+
# @private
|
|
1707
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1708
|
+
property :email, as: 'email'
|
|
1709
|
+
property :profile_id, as: 'profileId'
|
|
1710
|
+
property :profile_org_unit_id, as: 'profileOrgUnitId'
|
|
1711
|
+
property :profile_permanent_id, as: 'profilePermanentId'
|
|
1712
|
+
end
|
|
1713
|
+
end
|
|
1714
|
+
|
|
1677
1715
|
class GoogleChromeManagementV1RiskAssessment
|
|
1678
1716
|
# @private
|
|
1679
1717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2227,6 +2265,8 @@ module Google
|
|
|
2227
2265
|
|
|
2228
2266
|
property :google_sec_ops_config, as: 'googleSecOpsConfig', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GoogleSecOpsConfig, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GoogleSecOpsConfig::Representation
|
|
2229
2267
|
|
|
2268
|
+
property :mip_label_config, as: 'mipLabelConfig', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MipLabelConfig, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1MipLabelConfig::Representation
|
|
2269
|
+
|
|
2230
2270
|
property :palo_alto_networks_config, as: 'paloAltoNetworksConfig', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PaloAltoNetworksConfig, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PaloAltoNetworksConfig::Representation
|
|
2231
2271
|
|
|
2232
2272
|
property :pub_sub_config, as: 'pubSubConfig', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PubSubConfig, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1PubSubConfig::Representation
|
|
@@ -2350,6 +2390,14 @@ module Google
|
|
|
2350
2390
|
end
|
|
2351
2391
|
end
|
|
2352
2392
|
|
|
2393
|
+
class GoogleChromeManagementVersionsV1MipLabelConfig
|
|
2394
|
+
# @private
|
|
2395
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2396
|
+
collection :domains, as: 'domains'
|
|
2397
|
+
property :microsoft_tenant_id, as: 'microsoftTenantId'
|
|
2398
|
+
end
|
|
2399
|
+
end
|
|
2400
|
+
|
|
2353
2401
|
class GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest
|
|
2354
2402
|
# @private
|
|
2355
2403
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1572,6 +1572,64 @@ module Google
|
|
|
1572
1572
|
execute_or_queue_command(command, &block)
|
|
1573
1573
|
end
|
|
1574
1574
|
|
|
1575
|
+
# Generate report of managed Chrome profiles that have a specified app installed.
|
|
1576
|
+
# @param [String] customer
|
|
1577
|
+
# Required. Customer id or "my_customer" to use the customer associated to the
|
|
1578
|
+
# account making the request.
|
|
1579
|
+
# @param [String] app_id
|
|
1580
|
+
# Required. Unique identifier of the app. For Chrome apps and extensions, the 32-
|
|
1581
|
+
# character id (e.g. ehoadneljpdggcbbknedodolkkjodefl). For Android apps, the
|
|
1582
|
+
# package name (e.g. com.evernote).
|
|
1583
|
+
# @param [String] app_type
|
|
1584
|
+
# Type of the app. Optional. If not provided, an app type will be inferred from
|
|
1585
|
+
# the format of the app ID.
|
|
1586
|
+
# @param [String] filter
|
|
1587
|
+
# Optional. Query string to filter results, AND-separated fields in EBNF syntax.
|
|
1588
|
+
# Note: OR operations are not supported in this filter. Supported filter fields:
|
|
1589
|
+
# * last_active_date
|
|
1590
|
+
# @param [String] order_by
|
|
1591
|
+
# Optional. Field used to order results. Supported order by fields: * email *
|
|
1592
|
+
# profile_id * profile_permanent_id
|
|
1593
|
+
# @param [String] org_unit_id
|
|
1594
|
+
# Optional. The ID of the organizational unit.
|
|
1595
|
+
# @param [Fixnum] page_size
|
|
1596
|
+
# Optional. Maximum number of results to return. Maximum and default are 100.
|
|
1597
|
+
# @param [String] page_token
|
|
1598
|
+
# Optional. Token to specify the page of the request to be returned.
|
|
1599
|
+
# @param [String] fields
|
|
1600
|
+
# Selector specifying which fields to include in a partial response.
|
|
1601
|
+
# @param [String] quota_user
|
|
1602
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1603
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1604
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1605
|
+
# Request-specific options
|
|
1606
|
+
#
|
|
1607
|
+
# @yield [result, err] Result & error if block supplied
|
|
1608
|
+
# @yieldparam result [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1FindInstalledAppProfilesResponse] parsed result object
|
|
1609
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1610
|
+
#
|
|
1611
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1FindInstalledAppProfilesResponse]
|
|
1612
|
+
#
|
|
1613
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1614
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1615
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1616
|
+
def find_customer_report_installed_app_profiles(customer, app_id: nil, app_type: nil, filter: nil, order_by: nil, org_unit_id: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1617
|
+
command = make_simple_command(:get, 'v1/{+customer}/reports:findInstalledAppProfiles', options)
|
|
1618
|
+
command.response_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1FindInstalledAppProfilesResponse::Representation
|
|
1619
|
+
command.response_class = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1FindInstalledAppProfilesResponse
|
|
1620
|
+
command.params['customer'] = customer unless customer.nil?
|
|
1621
|
+
command.query['appId'] = app_id unless app_id.nil?
|
|
1622
|
+
command.query['appType'] = app_type unless app_type.nil?
|
|
1623
|
+
command.query['filter'] = filter unless filter.nil?
|
|
1624
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
|
1625
|
+
command.query['orgUnitId'] = org_unit_id unless org_unit_id.nil?
|
|
1626
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1627
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1628
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1629
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1630
|
+
execute_or_queue_command(command, &block)
|
|
1631
|
+
end
|
|
1632
|
+
|
|
1575
1633
|
# Get telemetry device.
|
|
1576
1634
|
# @param [String] name
|
|
1577
1635
|
# Required. Name of the `TelemetryDevice` to return.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-chromemanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.76.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-chromemanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.76.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|