google-cloud-cloud_controls_partner 1.0.1 → 2.0.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: 41b54271462c0b3d9993faa70f0a8b963a5347d365570c01b4b45b8fbb7f91f3
4
- data.tar.gz: 0c383b8fb41c2ead94aff75c85c6a5e541229a288cf59876c62717f94afb38d4
3
+ metadata.gz: 6dca0080bc566e114eaf4cdca233276d56028b56a4db42b17a1bc30f59aeed9e
4
+ data.tar.gz: addd88f579c22e736f020ac4b504f8c6a4b4338685ba23fd2740a2c049894f88
5
5
  SHA512:
6
- metadata.gz: a84a391092301995e1c64a5f945aaf807df55d6f2290c26eeb5ca709c4006fbe05c0ffee08c47cb48993495ef14f8fdd3e99b24368d564c3989fa256efc30c1f
7
- data.tar.gz: 851e70e4e7e52790cf0848d053693d7b4624a4adf7463cb3041011b872f381e12baf2cae0d348af13c0931e79da15cbd0f031284c3c371940b399393dfeb5cb9
6
+ metadata.gz: d0a794c18ec4d641e0f62e15263e49cf71de0516d71f5abe5f1ba2034ed6bada2b5deb62a8260bdd98df260f13ebe4bb9577e165e00cb1d0cdc17e8d30e2b684
7
+ data.tar.gz: adba6b0b95d8bfe9e9d473889380683383c217c3678b17353db942eb96989ee09662db36b738c613da315c1f2e8fe3289904db37f659aea375844ffc5fde7feb
data/README.md CHANGED
@@ -34,9 +34,39 @@ In order to use this library, you first need to go through the following steps:
34
34
  1. [Enable the API.](https://console.cloud.google.com/apis/library/cloudcontrolspartner.googleapis.com)
35
35
  1. {file:AUTHENTICATION.md Set up authentication.}
36
36
 
37
+ ## Debug Logging
38
+
39
+ This library comes with opt-in Debug Logging that can help you troubleshoot
40
+ your application's integration with the API. When logging is activated, key
41
+ events such as requests and responses, along with data payloads and metadata
42
+ such as headers and client configuration, are logged to the standard error
43
+ stream.
44
+
45
+ **WARNING:** Client Library Debug Logging includes your data payloads in
46
+ plaintext, which could include sensitive data such as PII for yourself or your
47
+ customers, private keys, or other security data that could be compromising if
48
+ leaked. Always practice good data hygiene with your application logs, and follow
49
+ the principle of least access. Google also recommends that Client Library Debug
50
+ Logging be enabled only temporarily during active debugging, and not used
51
+ permanently in production.
52
+
53
+ To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
54
+ to the value `all`. Alternatively, you can set the value to a comma-delimited
55
+ list of client library gem names. This will select the default logging behavior,
56
+ which writes logs to the standard error stream. On a local workstation, this may
57
+ result in logs appearing on the console. When running on a Google Cloud hosting
58
+ service such as [Google Cloud Run](https://cloud.google.com/run), this generally
59
+ results in logs appearing alongside your application logs in the
60
+ [Google Cloud Logging](https://cloud.google.com/logging/) service.
61
+
62
+ Debug logging also requires that the versioned clients for this service be
63
+ sufficiently recent, released after about Dec 10, 2024. If logging is not
64
+ working, try updating the versioned clients in your bundle or installed gems:
65
+ [google-cloud-cloud_controls_partner-v1](https://cloud.google.com/ruby/docs/reference/google-cloud-cloud_controls_partner-v1/latest).
66
+
37
67
  ## Supported Ruby Versions
38
68
 
39
- This library is supported on Ruby 2.7+.
69
+ This library is supported on Ruby 3.0+.
40
70
 
41
71
  Google provides official support for Ruby versions that are actively supported
42
72
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Cloud
22
22
  module CloudControlsPartner
23
- VERSION = "1.0.1"
23
+ VERSION = "2.0.0"
24
24
  end
25
25
  end
26
26
  end
@@ -58,6 +58,11 @@ module Google
58
58
  # You can also specify a different transport by passing `:rest` or `:grpc` in
59
59
  # the `transport` parameter.
60
60
  #
61
+ # Raises an exception if the currently installed versioned client gem for the
62
+ # given API version does not support the given transport of the CloudControlsPartnerCore service.
63
+ # You can determine whether the method will succeed by calling
64
+ # {Google::Cloud::CloudControlsPartner.cloud_controls_partner_core_available?}.
65
+ #
61
66
  # ## About CloudControlsPartnerCore
62
67
  #
63
68
  # Service describing handlers for resources
@@ -79,6 +84,37 @@ module Google
79
84
  service_module.const_get(:Client).new(&block)
80
85
  end
81
86
 
87
+ ##
88
+ # Determines whether the CloudControlsPartnerCore service is supported by the current client.
89
+ # If true, you can retrieve a client object by calling {Google::Cloud::CloudControlsPartner.cloud_controls_partner_core}.
90
+ # If false, that method will raise an exception. This could happen if the given
91
+ # API version does not exist or does not support the CloudControlsPartnerCore service,
92
+ # or if the versioned client gem needs an update to support the CloudControlsPartnerCore service.
93
+ #
94
+ # @param version [::String, ::Symbol] The API version to connect to. Optional.
95
+ # Defaults to `:v1`.
96
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
97
+ # @return [boolean] Whether the service is available.
98
+ #
99
+ def self.cloud_controls_partner_core_available? version: :v1, transport: :grpc
100
+ require "google/cloud/cloud_controls_partner/#{version.to_s.downcase}"
101
+ package_name = Google::Cloud::CloudControlsPartner
102
+ .constants
103
+ .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
104
+ .first
105
+ return false unless package_name
106
+ service_module = Google::Cloud::CloudControlsPartner.const_get package_name
107
+ return false unless service_module.const_defined? :CloudControlsPartnerCore
108
+ service_module = service_module.const_get :CloudControlsPartnerCore
109
+ if transport == :rest
110
+ return false unless service_module.const_defined? :Rest
111
+ service_module = service_module.const_get :Rest
112
+ end
113
+ service_module.const_defined? :Client
114
+ rescue ::LoadError
115
+ false
116
+ end
117
+
82
118
  ##
83
119
  # Create a new client object for CloudControlsPartnerMonitoring.
84
120
  #
@@ -92,6 +128,11 @@ module Google
92
128
  # You can also specify a different transport by passing `:rest` or `:grpc` in
93
129
  # the `transport` parameter.
94
130
  #
131
+ # Raises an exception if the currently installed versioned client gem for the
132
+ # given API version does not support the given transport of the CloudControlsPartnerMonitoring service.
133
+ # You can determine whether the method will succeed by calling
134
+ # {Google::Cloud::CloudControlsPartner.cloud_controls_partner_monitoring_available?}.
135
+ #
95
136
  # ## About CloudControlsPartnerMonitoring
96
137
  #
97
138
  # Service describing handlers for resources
@@ -113,6 +154,37 @@ module Google
113
154
  service_module.const_get(:Client).new(&block)
114
155
  end
115
156
 
157
+ ##
158
+ # Determines whether the CloudControlsPartnerMonitoring service is supported by the current client.
159
+ # If true, you can retrieve a client object by calling {Google::Cloud::CloudControlsPartner.cloud_controls_partner_monitoring}.
160
+ # If false, that method will raise an exception. This could happen if the given
161
+ # API version does not exist or does not support the CloudControlsPartnerMonitoring service,
162
+ # or if the versioned client gem needs an update to support the CloudControlsPartnerMonitoring service.
163
+ #
164
+ # @param version [::String, ::Symbol] The API version to connect to. Optional.
165
+ # Defaults to `:v1`.
166
+ # @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
167
+ # @return [boolean] Whether the service is available.
168
+ #
169
+ def self.cloud_controls_partner_monitoring_available? version: :v1, transport: :grpc
170
+ require "google/cloud/cloud_controls_partner/#{version.to_s.downcase}"
171
+ package_name = Google::Cloud::CloudControlsPartner
172
+ .constants
173
+ .select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
174
+ .first
175
+ return false unless package_name
176
+ service_module = Google::Cloud::CloudControlsPartner.const_get package_name
177
+ return false unless service_module.const_defined? :CloudControlsPartnerMonitoring
178
+ service_module = service_module.const_get :CloudControlsPartnerMonitoring
179
+ if transport == :rest
180
+ return false unless service_module.const_defined? :Rest
181
+ service_module = service_module.const_get :Rest
182
+ end
183
+ service_module.const_defined? :Client
184
+ rescue ::LoadError
185
+ false
186
+ end
187
+
116
188
  ##
117
189
  # Configure the google-cloud-cloud_controls_partner library.
118
190
  #
metadata CHANGED
@@ -1,35 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-cloud_controls_partner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-08-09 00:00:00.000000000 Z
10
+ date: 2025-02-13 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-cloud-cloud_controls_partner-v1
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0.0'
20
- - - "<"
16
+ - - "~>"
21
17
  - !ruby/object:Gem::Version
22
- version: 2.a
18
+ version: '2.0'
23
19
  type: :runtime
24
20
  prerelease: false
25
21
  version_requirements: !ruby/object:Gem::Requirement
26
22
  requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- version: '0.0'
30
- - - "<"
23
+ - - "~>"
31
24
  - !ruby/object:Gem::Version
32
- version: 2.a
25
+ version: '2.0'
33
26
  - !ruby/object:Gem::Dependency
34
27
  name: google-cloud-core
35
28
  requirement: !ruby/object:Gem::Requirement
@@ -62,7 +55,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
62
55
  licenses:
63
56
  - Apache-2.0
64
57
  metadata: {}
65
- post_install_message:
66
58
  rdoc_options: []
67
59
  require_paths:
68
60
  - lib
@@ -70,15 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
70
62
  requirements:
71
63
  - - ">="
72
64
  - !ruby/object:Gem::Version
73
- version: '2.7'
65
+ version: '3.0'
74
66
  required_rubygems_version: !ruby/object:Gem::Requirement
75
67
  requirements:
76
68
  - - ">="
77
69
  - !ruby/object:Gem::Version
78
70
  version: '0'
79
71
  requirements: []
80
- rubygems_version: 3.5.6
81
- signing_key:
72
+ rubygems_version: 3.6.3
82
73
  specification_version: 4
83
74
  summary: Provides insights about your customers and their Assured Workloads based
84
75
  on your Sovereign Controls by Partners offering.