google-apis-chromemanagement_v1 0.60.0 → 0.61.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: 91433a33df3ec1f2a9bf4569538f270237433c3048e1f9b37d2ffb653270e77f
|
4
|
+
data.tar.gz: 32562c083477a56fc6dd0f61dc7283ae345402b71cb422849ae74e0e3e0c95d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9198040ec6caa5e0f9ac677ae2957959bc7a2d609125d80f7e3c78e30797282e00506d2478b390480ce5056da4bef80fe2c2b7bcc9cff3795c505123e2dafc03
|
7
|
+
data.tar.gz: 8824ec092fcdeecaa786b8d84512fd535a00cac61de0d0d9b9a72c7d0edfab80813b368a5fec427187175a872258beb0597d4eadb32cab57c1fafc55a0d7e695
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.61.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250212
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.60.0 (2024-12-22)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241216
|
@@ -4156,6 +4156,16 @@ module Google
|
|
4156
4156
|
# @return [String]
|
4157
4157
|
attr_accessor :failure_message
|
4158
4158
|
|
4159
|
+
# Describes a generic Certificate Authority Connection.
|
4160
|
+
# Corresponds to the JSON property `genericCaConnection`
|
4161
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GenericCaConnection]
|
4162
|
+
attr_accessor :generic_ca_connection
|
4163
|
+
|
4164
|
+
# Describes a generic certificate provisioning profile.
|
4165
|
+
# Corresponds to the JSON property `genericProfile`
|
4166
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GenericProfile]
|
4167
|
+
attr_accessor :generic_profile
|
4168
|
+
|
4159
4169
|
# Output only. The issued certificate for this `CertificateProvisioningProcess`
|
4160
4170
|
# in PEM format.
|
4161
4171
|
# Corresponds to the JSON property `issuedCertificate`
|
@@ -4228,6 +4238,8 @@ module Google
|
|
4228
4238
|
@chrome_os_device = args[:chrome_os_device] if args.key?(:chrome_os_device)
|
4229
4239
|
@chrome_os_user_session = args[:chrome_os_user_session] if args.key?(:chrome_os_user_session)
|
4230
4240
|
@failure_message = args[:failure_message] if args.key?(:failure_message)
|
4241
|
+
@generic_ca_connection = args[:generic_ca_connection] if args.key?(:generic_ca_connection)
|
4242
|
+
@generic_profile = args[:generic_profile] if args.key?(:generic_profile)
|
4231
4243
|
@issued_certificate = args[:issued_certificate] if args.key?(:issued_certificate)
|
4232
4244
|
@name = args[:name] if args.key?(:name)
|
4233
4245
|
@profile_adapter_config_reference = args[:profile_adapter_config_reference] if args.key?(:profile_adapter_config_reference)
|
@@ -4517,6 +4529,48 @@ module Google
|
|
4517
4529
|
end
|
4518
4530
|
end
|
4519
4531
|
|
4532
|
+
# Describes a generic Certificate Authority Connection.
|
4533
|
+
class GoogleChromeManagementVersionsV1GenericCaConnection
|
4534
|
+
include Google::Apis::Core::Hashable
|
4535
|
+
|
4536
|
+
# Output only. A string that references the administrator-provided configuration
|
4537
|
+
# for the certification authority service. This field can be missing if no
|
4538
|
+
# configuration was given.
|
4539
|
+
# Corresponds to the JSON property `caConnectionAdapterConfigReference`
|
4540
|
+
# @return [String]
|
4541
|
+
attr_accessor :ca_connection_adapter_config_reference
|
4542
|
+
|
4543
|
+
def initialize(**args)
|
4544
|
+
update!(**args)
|
4545
|
+
end
|
4546
|
+
|
4547
|
+
# Update properties of this object
|
4548
|
+
def update!(**args)
|
4549
|
+
@ca_connection_adapter_config_reference = args[:ca_connection_adapter_config_reference] if args.key?(:ca_connection_adapter_config_reference)
|
4550
|
+
end
|
4551
|
+
end
|
4552
|
+
|
4553
|
+
# Describes a generic certificate provisioning profile.
|
4554
|
+
class GoogleChromeManagementVersionsV1GenericProfile
|
4555
|
+
include Google::Apis::Core::Hashable
|
4556
|
+
|
4557
|
+
# Output only. A string that references the administrator-provided configuration
|
4558
|
+
# for the certificate provisioning profile. This field can be missing if no
|
4559
|
+
# configuration was given.
|
4560
|
+
# Corresponds to the JSON property `profileAdapterConfigReference`
|
4561
|
+
# @return [String]
|
4562
|
+
attr_accessor :profile_adapter_config_reference
|
4563
|
+
|
4564
|
+
def initialize(**args)
|
4565
|
+
update!(**args)
|
4566
|
+
end
|
4567
|
+
|
4568
|
+
# Update properties of this object
|
4569
|
+
def update!(**args)
|
4570
|
+
@profile_adapter_config_reference = args[:profile_adapter_config_reference] if args.key?(:profile_adapter_config_reference)
|
4571
|
+
end
|
4572
|
+
end
|
4573
|
+
|
4520
4574
|
# Response to ListChromeBrowserProfiles method.
|
4521
4575
|
class GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse
|
4522
4576
|
include Google::Apis::Core::Hashable
|
@@ -4844,6 +4898,16 @@ module Google
|
|
4844
4898
|
# @return [String]
|
4845
4899
|
attr_accessor :failure_message
|
4846
4900
|
|
4901
|
+
# Describes a generic Certificate Authority Connection.
|
4902
|
+
# Corresponds to the JSON property `genericCaConnection`
|
4903
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1GenericCaConnection]
|
4904
|
+
attr_accessor :generic_ca_connection
|
4905
|
+
|
4906
|
+
# Describes a generic certificate provisioning profile.
|
4907
|
+
# Corresponds to the JSON property `genericProfile`
|
4908
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1GenericProfile]
|
4909
|
+
attr_accessor :generic_profile
|
4910
|
+
|
4847
4911
|
# Output only. The issued certificate for this `CertificateProvisioningProcess`
|
4848
4912
|
# in PEM format.
|
4849
4913
|
# Corresponds to the JSON property `issuedCertificate`
|
@@ -4916,6 +4980,8 @@ module Google
|
|
4916
4980
|
@chrome_os_device = args[:chrome_os_device] if args.key?(:chrome_os_device)
|
4917
4981
|
@chrome_os_user_session = args[:chrome_os_user_session] if args.key?(:chrome_os_user_session)
|
4918
4982
|
@failure_message = args[:failure_message] if args.key?(:failure_message)
|
4983
|
+
@generic_ca_connection = args[:generic_ca_connection] if args.key?(:generic_ca_connection)
|
4984
|
+
@generic_profile = args[:generic_profile] if args.key?(:generic_profile)
|
4919
4985
|
@issued_certificate = args[:issued_certificate] if args.key?(:issued_certificate)
|
4920
4986
|
@name = args[:name] if args.key?(:name)
|
4921
4987
|
@profile_adapter_config_reference = args[:profile_adapter_config_reference] if args.key?(:profile_adapter_config_reference)
|
@@ -4989,6 +5055,48 @@ module Google
|
|
4989
5055
|
end
|
4990
5056
|
end
|
4991
5057
|
|
5058
|
+
# Describes a generic Certificate Authority Connection.
|
5059
|
+
class GoogleChromeManagementVersionsV1alpha1GenericCaConnection
|
5060
|
+
include Google::Apis::Core::Hashable
|
5061
|
+
|
5062
|
+
# Output only. A string that references the administrator-provided configuration
|
5063
|
+
# for the certification authority service. This field can be missing if no
|
5064
|
+
# configuration was given.
|
5065
|
+
# Corresponds to the JSON property `caConnectionAdapterConfigReference`
|
5066
|
+
# @return [String]
|
5067
|
+
attr_accessor :ca_connection_adapter_config_reference
|
5068
|
+
|
5069
|
+
def initialize(**args)
|
5070
|
+
update!(**args)
|
5071
|
+
end
|
5072
|
+
|
5073
|
+
# Update properties of this object
|
5074
|
+
def update!(**args)
|
5075
|
+
@ca_connection_adapter_config_reference = args[:ca_connection_adapter_config_reference] if args.key?(:ca_connection_adapter_config_reference)
|
5076
|
+
end
|
5077
|
+
end
|
5078
|
+
|
5079
|
+
# Describes a generic certificate provisioning profile.
|
5080
|
+
class GoogleChromeManagementVersionsV1alpha1GenericProfile
|
5081
|
+
include Google::Apis::Core::Hashable
|
5082
|
+
|
5083
|
+
# Output only. A string that references the administrator-provided configuration
|
5084
|
+
# for the certificate provisioning profile. This field can be missing if no
|
5085
|
+
# configuration was given.
|
5086
|
+
# Corresponds to the JSON property `profileAdapterConfigReference`
|
5087
|
+
# @return [String]
|
5088
|
+
attr_accessor :profile_adapter_config_reference
|
5089
|
+
|
5090
|
+
def initialize(**args)
|
5091
|
+
update!(**args)
|
5092
|
+
end
|
5093
|
+
|
5094
|
+
# Update properties of this object
|
5095
|
+
def update!(**args)
|
5096
|
+
@profile_adapter_config_reference = args[:profile_adapter_config_reference] if args.key?(:profile_adapter_config_reference)
|
5097
|
+
end
|
5098
|
+
end
|
5099
|
+
|
4992
5100
|
# Metadata for the long-running operation returned by signData.
|
4993
5101
|
class GoogleChromeManagementVersionsV1alpha1SignDataMetadata
|
4994
5102
|
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.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250212"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -622,6 +622,18 @@ module Google
|
|
622
622
|
include Google::Apis::Core::JsonObjectSupport
|
623
623
|
end
|
624
624
|
|
625
|
+
class GoogleChromeManagementVersionsV1GenericCaConnection
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
627
|
+
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
629
|
+
end
|
630
|
+
|
631
|
+
class GoogleChromeManagementVersionsV1GenericProfile
|
632
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
|
+
|
634
|
+
include Google::Apis::Core::JsonObjectSupport
|
635
|
+
end
|
636
|
+
|
625
637
|
class GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse
|
626
638
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
627
639
|
|
@@ -688,6 +700,18 @@ module Google
|
|
688
700
|
include Google::Apis::Core::JsonObjectSupport
|
689
701
|
end
|
690
702
|
|
703
|
+
class GoogleChromeManagementVersionsV1alpha1GenericCaConnection
|
704
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
|
+
|
706
|
+
include Google::Apis::Core::JsonObjectSupport
|
707
|
+
end
|
708
|
+
|
709
|
+
class GoogleChromeManagementVersionsV1alpha1GenericProfile
|
710
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
|
+
|
712
|
+
include Google::Apis::Core::JsonObjectSupport
|
713
|
+
end
|
714
|
+
|
691
715
|
class GoogleChromeManagementVersionsV1alpha1SignDataMetadata
|
692
716
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
693
717
|
|
@@ -1797,6 +1821,10 @@ module Google
|
|
1797
1821
|
property :chrome_os_user_session, as: 'chromeOsUserSession', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ChromeOsUserSession, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ChromeOsUserSession::Representation
|
1798
1822
|
|
1799
1823
|
property :failure_message, as: 'failureMessage'
|
1824
|
+
property :generic_ca_connection, as: 'genericCaConnection', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GenericCaConnection, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GenericCaConnection::Representation
|
1825
|
+
|
1826
|
+
property :generic_profile, as: 'genericProfile', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GenericProfile, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1GenericProfile::Representation
|
1827
|
+
|
1800
1828
|
property :issued_certificate, as: 'issuedCertificate'
|
1801
1829
|
property :name, as: 'name'
|
1802
1830
|
property :profile_adapter_config_reference, as: 'profileAdapterConfigReference'
|
@@ -1872,6 +1900,20 @@ module Google
|
|
1872
1900
|
end
|
1873
1901
|
end
|
1874
1902
|
|
1903
|
+
class GoogleChromeManagementVersionsV1GenericCaConnection
|
1904
|
+
# @private
|
1905
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1906
|
+
property :ca_connection_adapter_config_reference, as: 'caConnectionAdapterConfigReference'
|
1907
|
+
end
|
1908
|
+
end
|
1909
|
+
|
1910
|
+
class GoogleChromeManagementVersionsV1GenericProfile
|
1911
|
+
# @private
|
1912
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1913
|
+
property :profile_adapter_config_reference, as: 'profileAdapterConfigReference'
|
1914
|
+
end
|
1915
|
+
end
|
1916
|
+
|
1875
1917
|
class GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse
|
1876
1918
|
# @private
|
1877
1919
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1967,6 +2009,10 @@ module Google
|
|
1967
2009
|
property :chrome_os_user_session, as: 'chromeOsUserSession', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1ChromeOsUserSession, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1ChromeOsUserSession::Representation
|
1968
2010
|
|
1969
2011
|
property :failure_message, as: 'failureMessage'
|
2012
|
+
property :generic_ca_connection, as: 'genericCaConnection', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1GenericCaConnection, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1GenericCaConnection::Representation
|
2013
|
+
|
2014
|
+
property :generic_profile, as: 'genericProfile', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1GenericProfile, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1alpha1GenericProfile::Representation
|
2015
|
+
|
1970
2016
|
property :issued_certificate, as: 'issuedCertificate'
|
1971
2017
|
property :name, as: 'name'
|
1972
2018
|
property :profile_adapter_config_reference, as: 'profileAdapterConfigReference'
|
@@ -1997,6 +2043,20 @@ module Google
|
|
1997
2043
|
end
|
1998
2044
|
end
|
1999
2045
|
|
2046
|
+
class GoogleChromeManagementVersionsV1alpha1GenericCaConnection
|
2047
|
+
# @private
|
2048
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2049
|
+
property :ca_connection_adapter_config_reference, as: 'caConnectionAdapterConfigReference'
|
2050
|
+
end
|
2051
|
+
end
|
2052
|
+
|
2053
|
+
class GoogleChromeManagementVersionsV1alpha1GenericProfile
|
2054
|
+
# @private
|
2055
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2056
|
+
property :profile_adapter_config_reference, as: 'profileAdapterConfigReference'
|
2057
|
+
end
|
2058
|
+
end
|
2059
|
+
|
2000
2060
|
class GoogleChromeManagementVersionsV1alpha1SignDataMetadata
|
2001
2061
|
# @private
|
2002
2062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -34,6 +34,12 @@ module Google
|
|
34
34
|
# See detailed information about apps installed on Chrome browsers and devices managed by your organization
|
35
35
|
AUTH_CHROME_MANAGEMENT_APPDETAILS_READONLY = 'https://www.googleapis.com/auth/chrome.management.appdetails.readonly'
|
36
36
|
|
37
|
+
# See, edit, delete, and take other necessary actions on Chrome browser profiles managed by your organization
|
38
|
+
AUTH_CHROME_MANAGEMENT_PROFILES = 'https://www.googleapis.com/auth/chrome.management.profiles'
|
39
|
+
|
40
|
+
# See Chrome browser profiles managed by your organization
|
41
|
+
AUTH_CHROME_MANAGEMENT_PROFILES_READONLY = 'https://www.googleapis.com/auth/chrome.management.profiles.readonly'
|
42
|
+
|
37
43
|
# See reports about devices and Chrome browsers managed within your organization
|
38
44
|
AUTH_CHROME_MANAGEMENT_REPORTS_READONLY = 'https://www.googleapis.com/auth/chrome.management.reports.readonly'
|
39
45
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.61.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.61.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Chrome Management API V1
|
82
79
|
test_files: []
|