google-cloud-policy_troubleshooter-v1 0.5.0 → 0.7.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: c019971c38f2fd0caa961aad646c477232fcf6e5117ffcd8b8e693fb5776ac0b
4
- data.tar.gz: c24429c43f7057a43a6cde8d08427aaa3fcaa6dbf436bd70b89c7b5b4f53efa0
3
+ metadata.gz: 66fb71509d300496ed1b2c218f0d540ce4461a7ac5e1b9fa297766065a2a36be
4
+ data.tar.gz: 9396a1a2531c9eadaf08dc4315de023eaba45dbd680a480854be611fa9bc9142
5
5
  SHA512:
6
- metadata.gz: 9447dda19ede563c7b19758af17329444a164c63f5fb994da60b8e6770727050864a6eafb29ea6adb3df89337354bfc31e0de319dfbceb597468b403ed5cb7f5
7
- data.tar.gz: 9918b456033d3dd3d097aede28b811b5734266460023896fdf106c34fde22626eeea5712a76a90b54752d50a5e2e6d3d18d28f2b4c380e57c10903346edc995b
6
+ metadata.gz: eb09b4a84a4e7fab59d898d45e41d46cdb2ea0847492a5e792a22001555227baddd25161d50af4eb073c6aafc67e2ee859b96abfafb049402863fa7170ddfee5
7
+ data.tar.gz: 29e95a09e769e9befea80b92d7c156fa6cfabc3734cdface37ace59e8672497588c51086b6a4af44d4de868339610ca57cd7010d4b21c49865c4520bc69393fe
data/AUTHENTICATION.md CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
114
114
  To configure your system for this, simply:
115
115
 
116
116
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
117
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
117
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
118
118
  3. Write code as if already authenticated.
119
119
 
120
120
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -46,8 +46,8 @@ for general usage information.
46
46
  ## Enabling Logging
47
47
 
48
48
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
- The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib/libdoc/logger/rdoc/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
49
+ The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
53
 
@@ -268,9 +268,9 @@ module Google
268
268
  # * (`String`) The path to a service account key file in JSON format
269
269
  # * (`Hash`) A service account key as a Hash
270
270
  # * (`Google::Auth::Credentials`) A googleauth credentials object
271
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
271
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
272
272
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
273
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
273
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
274
274
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
275
275
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
276
276
  # * (`nil`) indicating no credentials
@@ -0,0 +1,353 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/errors"
20
+ require "google/cloud/policytroubleshooter/v1/checker_pb"
21
+ require "google/cloud/policy_troubleshooter/v1/iam_checker/rest/service_stub"
22
+
23
+ module Google
24
+ module Cloud
25
+ module PolicyTroubleshooter
26
+ module V1
27
+ module IamChecker
28
+ module Rest
29
+ ##
30
+ # REST client for the IamChecker service.
31
+ #
32
+ # IAM Policy Troubleshooter service.
33
+ #
34
+ # This service helps you troubleshoot access issues for Google Cloud resources.
35
+ #
36
+ class Client
37
+ # @private
38
+ attr_reader :iam_checker_stub
39
+
40
+ ##
41
+ # Configure the IamChecker Client class.
42
+ #
43
+ # See {::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client::Configuration}
44
+ # for a description of the configuration fields.
45
+ #
46
+ # @example
47
+ #
48
+ # # Modify the configuration for all IamChecker clients
49
+ # ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.configure do |config|
50
+ # config.timeout = 10.0
51
+ # end
52
+ #
53
+ # @yield [config] Configure the Client client.
54
+ # @yieldparam config [Client::Configuration]
55
+ #
56
+ # @return [Client::Configuration]
57
+ #
58
+ def self.configure
59
+ @configure ||= begin
60
+ namespace = ["Google", "Cloud", "PolicyTroubleshooter", "V1"]
61
+ parent_config = while namespace.any?
62
+ parent_name = namespace.join "::"
63
+ parent_const = const_get parent_name
64
+ break parent_const.configure if parent_const.respond_to? :configure
65
+ namespace.pop
66
+ end
67
+ default_config = Client::Configuration.new parent_config
68
+
69
+ default_config.timeout = 60.0
70
+ default_config.retry_policy = {
71
+ initial_delay: 1.0, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 2]
72
+ }
73
+
74
+ default_config.rpcs.troubleshoot_iam_policy.timeout = 60.0
75
+
76
+ default_config
77
+ end
78
+ yield @configure if block_given?
79
+ @configure
80
+ end
81
+
82
+ ##
83
+ # Configure the IamChecker Client instance.
84
+ #
85
+ # The configuration is set to the derived mode, meaning that values can be changed,
86
+ # but structural changes (adding new fields, etc.) are not allowed. Structural changes
87
+ # should be made on {Client.configure}.
88
+ #
89
+ # See {::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client::Configuration}
90
+ # for a description of the configuration fields.
91
+ #
92
+ # @yield [config] Configure the Client client.
93
+ # @yieldparam config [Client::Configuration]
94
+ #
95
+ # @return [Client::Configuration]
96
+ #
97
+ def configure
98
+ yield @config if block_given?
99
+ @config
100
+ end
101
+
102
+ ##
103
+ # Create a new IamChecker REST client object.
104
+ #
105
+ # @example
106
+ #
107
+ # # Create a client using the default configuration
108
+ # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.new
109
+ #
110
+ # # Create a client using a custom configuration
111
+ # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.new do |config|
112
+ # config.timeout = 10.0
113
+ # end
114
+ #
115
+ # @yield [config] Configure the IamChecker client.
116
+ # @yieldparam config [Client::Configuration]
117
+ #
118
+ def initialize
119
+ # Create the configuration object
120
+ @config = Configuration.new Client.configure
121
+
122
+ # Yield the configuration if needed
123
+ yield @config if block_given?
124
+
125
+ # Create credentials
126
+ credentials = @config.credentials
127
+ # Use self-signed JWT if the endpoint is unchanged from default,
128
+ # but only if the default endpoint does not have a region prefix.
129
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
130
+ !@config.endpoint.split(".").first.include?("-")
131
+ credentials ||= Credentials.default scope: @config.scope,
132
+ enable_self_signed_jwt: enable_self_signed_jwt
133
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
134
+ credentials = Credentials.new credentials, scope: @config.scope
135
+ end
136
+
137
+ @quota_project_id = @config.quota_project
138
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
139
+
140
+ @iam_checker_stub = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::ServiceStub.new endpoint: @config.endpoint, credentials: credentials
141
+ end
142
+
143
+ # Service calls
144
+
145
+ ##
146
+ # Checks whether a member has a specific permission for a specific resource,
147
+ # and explains why the member does or does not have that permission.
148
+ #
149
+ # @overload troubleshoot_iam_policy(request, options = nil)
150
+ # Pass arguments to `troubleshoot_iam_policy` via a request object, either of type
151
+ # {::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyRequest} or an equivalent Hash.
152
+ #
153
+ # @param request [::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyRequest, ::Hash]
154
+ # A request object representing the call parameters. Required. To specify no
155
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
156
+ # @param options [::Gapic::CallOptions, ::Hash]
157
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
158
+ #
159
+ # @overload troubleshoot_iam_policy(access_tuple: nil)
160
+ # Pass arguments to `troubleshoot_iam_policy` via keyword arguments. Note that at
161
+ # least one keyword argument is required. To specify no parameters, or to keep all
162
+ # the default parameter values, pass an empty Hash as a request object (see above).
163
+ #
164
+ # @param access_tuple [::Google::Cloud::PolicyTroubleshooter::V1::AccessTuple, ::Hash]
165
+ # The information to use for checking whether a member has a permission for a
166
+ # resource.
167
+ # @yield [result, operation] Access the result along with the TransportOperation object
168
+ # @yieldparam result [::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyResponse]
169
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
170
+ #
171
+ # @return [::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyResponse]
172
+ #
173
+ # @raise [::Google::Cloud::Error] if the REST call is aborted.
174
+ def troubleshoot_iam_policy request, options = nil
175
+ raise ::ArgumentError, "request must be provided" if request.nil?
176
+
177
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyRequest
178
+
179
+ # Converts hash and nil to an options object
180
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
181
+
182
+ # Customize the options with defaults
183
+ call_metadata = @config.rpcs.troubleshoot_iam_policy.metadata.to_h
184
+
185
+ # Set x-goog-api-client and x-goog-user-project headers
186
+ call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
187
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
188
+ gapic_version: ::Google::Cloud::PolicyTroubleshooter::V1::VERSION,
189
+ transports_version_send: [:rest]
190
+
191
+ call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
192
+
193
+ options.apply_defaults timeout: @config.rpcs.troubleshoot_iam_policy.timeout,
194
+ metadata: call_metadata,
195
+ retry_policy: @config.rpcs.troubleshoot_iam_policy.retry_policy
196
+
197
+ options.apply_defaults timeout: @config.timeout,
198
+ metadata: @config.metadata,
199
+ retry_policy: @config.retry_policy
200
+
201
+ @iam_checker_stub.troubleshoot_iam_policy request, options do |result, operation|
202
+ yield result, operation if block_given?
203
+ return result
204
+ end
205
+ rescue ::Gapic::Rest::Error => e
206
+ raise ::Google::Cloud::Error.from_error(e)
207
+ end
208
+
209
+ ##
210
+ # Configuration class for the IamChecker REST API.
211
+ #
212
+ # This class represents the configuration for IamChecker REST,
213
+ # providing control over timeouts, retry behavior, logging, transport
214
+ # parameters, and other low-level controls. Certain parameters can also be
215
+ # applied individually to specific RPCs. See
216
+ # {::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client::Configuration::Rpcs}
217
+ # for a list of RPCs that can be configured independently.
218
+ #
219
+ # Configuration can be applied globally to all clients, or to a single client
220
+ # on construction.
221
+ #
222
+ # @example
223
+ #
224
+ # # Modify the global config, setting the timeout for
225
+ # # troubleshoot_iam_policy to 20 seconds,
226
+ # # and all remaining timeouts to 10 seconds.
227
+ # ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.configure do |config|
228
+ # config.timeout = 10.0
229
+ # config.rpcs.troubleshoot_iam_policy.timeout = 20.0
230
+ # end
231
+ #
232
+ # # Apply the above configuration only to a new client.
233
+ # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.new do |config|
234
+ # config.timeout = 10.0
235
+ # config.rpcs.troubleshoot_iam_policy.timeout = 20.0
236
+ # end
237
+ #
238
+ # @!attribute [rw] endpoint
239
+ # The hostname or hostname:port of the service endpoint.
240
+ # Defaults to `"policytroubleshooter.googleapis.com"`.
241
+ # @return [::String]
242
+ # @!attribute [rw] credentials
243
+ # Credentials to send with calls. You may provide any of the following types:
244
+ # * (`String`) The path to a service account key file in JSON format
245
+ # * (`Hash`) A service account key as a Hash
246
+ # * (`Google::Auth::Credentials`) A googleauth credentials object
247
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
248
+ # * (`Signet::OAuth2::Client`) A signet oauth2 client object
249
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
250
+ # * (`nil`) indicating no credentials
251
+ # @return [::Object]
252
+ # @!attribute [rw] scope
253
+ # The OAuth scopes
254
+ # @return [::Array<::String>]
255
+ # @!attribute [rw] lib_name
256
+ # The library name as recorded in instrumentation and logging
257
+ # @return [::String]
258
+ # @!attribute [rw] lib_version
259
+ # The library version as recorded in instrumentation and logging
260
+ # @return [::String]
261
+ # @!attribute [rw] timeout
262
+ # The call timeout in seconds.
263
+ # @return [::Numeric]
264
+ # @!attribute [rw] metadata
265
+ # Additional headers to be sent with the call.
266
+ # @return [::Hash{::Symbol=>::String}]
267
+ # @!attribute [rw] retry_policy
268
+ # The retry policy. The value is a hash with the following keys:
269
+ # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
270
+ # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
271
+ # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
272
+ # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
273
+ # trigger a retry.
274
+ # @return [::Hash]
275
+ # @!attribute [rw] quota_project
276
+ # A separate project against which to charge quota.
277
+ # @return [::String]
278
+ #
279
+ class Configuration
280
+ extend ::Gapic::Config
281
+
282
+ config_attr :endpoint, "policytroubleshooter.googleapis.com", ::String
283
+ config_attr :credentials, nil do |value|
284
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
285
+ allowed.any? { |klass| klass === value }
286
+ end
287
+ config_attr :scope, nil, ::String, ::Array, nil
288
+ config_attr :lib_name, nil, ::String, nil
289
+ config_attr :lib_version, nil, ::String, nil
290
+ config_attr :timeout, nil, ::Numeric, nil
291
+ config_attr :metadata, nil, ::Hash, nil
292
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
293
+ config_attr :quota_project, nil, ::String, nil
294
+
295
+ # @private
296
+ def initialize parent_config = nil
297
+ @parent_config = parent_config unless parent_config.nil?
298
+
299
+ yield self if block_given?
300
+ end
301
+
302
+ ##
303
+ # Configurations for individual RPCs
304
+ # @return [Rpcs]
305
+ #
306
+ def rpcs
307
+ @rpcs ||= begin
308
+ parent_rpcs = nil
309
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
310
+ Rpcs.new parent_rpcs
311
+ end
312
+ end
313
+
314
+ ##
315
+ # Configuration RPC class for the IamChecker API.
316
+ #
317
+ # Includes fields providing the configuration for each RPC in this service.
318
+ # Each configuration object is of type `Gapic::Config::Method` and includes
319
+ # the following configuration fields:
320
+ #
321
+ # * `timeout` (*type:* `Numeric`) - The call timeout in seconds
322
+ # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
323
+ # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
324
+ # include the following keys:
325
+ # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
326
+ # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
327
+ # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
328
+ # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
329
+ # trigger a retry.
330
+ #
331
+ class Rpcs
332
+ ##
333
+ # RPC-specific configuration for `troubleshoot_iam_policy`
334
+ # @return [::Gapic::Config::Method]
335
+ #
336
+ attr_reader :troubleshoot_iam_policy
337
+
338
+ # @private
339
+ def initialize parent_rpcs = nil
340
+ troubleshoot_iam_policy_config = parent_rpcs.troubleshoot_iam_policy if parent_rpcs.respond_to? :troubleshoot_iam_policy
341
+ @troubleshoot_iam_policy = ::Gapic::Config::Method.new troubleshoot_iam_policy_config
342
+
343
+ yield self if block_given?
344
+ end
345
+ end
346
+ end
347
+ end
348
+ end
349
+ end
350
+ end
351
+ end
352
+ end
353
+ end
@@ -0,0 +1,106 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/policytroubleshooter/v1/checker_pb"
20
+
21
+ module Google
22
+ module Cloud
23
+ module PolicyTroubleshooter
24
+ module V1
25
+ module IamChecker
26
+ module Rest
27
+ ##
28
+ # REST service stub for the IamChecker service.
29
+ # Service stub contains baseline method implementations
30
+ # including transcoding, making the REST call, and deserialing the response.
31
+ #
32
+ class ServiceStub
33
+ def initialize endpoint:, credentials:
34
+ # These require statements are intentionally placed here to initialize
35
+ # the REST modules only when it's required.
36
+ require "gapic/rest"
37
+
38
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
39
+ numeric_enums: true,
40
+ raise_faraday_errors: false
41
+ end
42
+
43
+ ##
44
+ # Baseline implementation for the troubleshoot_iam_policy REST call
45
+ #
46
+ # @param request_pb [::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyRequest]
47
+ # A request object representing the call parameters. Required.
48
+ # @param options [::Gapic::CallOptions]
49
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
50
+ #
51
+ # @yield [result, operation] Access the result along with the TransportOperation object
52
+ # @yieldparam result [::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyResponse]
53
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
54
+ #
55
+ # @return [::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyResponse]
56
+ # A result object deserialized from the server's reply
57
+ def troubleshoot_iam_policy request_pb, options = nil
58
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
59
+
60
+ verb, uri, query_string_params, body = ServiceStub.transcode_troubleshoot_iam_policy_request request_pb
61
+ query_string_params = if query_string_params.any?
62
+ query_string_params.to_h { |p| p.split("=", 2) }
63
+ else
64
+ {}
65
+ end
66
+
67
+ response = @client_stub.make_http_request(
68
+ verb,
69
+ uri: uri,
70
+ body: body || "",
71
+ params: query_string_params,
72
+ options: options
73
+ )
74
+ operation = ::Gapic::Rest::TransportOperation.new response
75
+ result = ::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyResponse.decode_json response.body, ignore_unknown_fields: true
76
+
77
+ yield result, operation if block_given?
78
+ result
79
+ end
80
+
81
+ ##
82
+ # @private
83
+ #
84
+ # GRPC transcoding helper method for the troubleshoot_iam_policy REST call
85
+ #
86
+ # @param request_pb [::Google::Cloud::PolicyTroubleshooter::V1::TroubleshootIamPolicyRequest]
87
+ # A request object representing the call parameters. Required.
88
+ # @return [Array(String, [String, nil], Hash{String => String})]
89
+ # Uri, Body, Query string parameters
90
+ def self.transcode_troubleshoot_iam_policy_request request_pb
91
+ transcoder = Gapic::Rest::GrpcTranscoder.new
92
+ .with_bindings(
93
+ uri_method: :post,
94
+ uri_template: "/v1/iam:troubleshoot",
95
+ body: "*",
96
+ matches: []
97
+ )
98
+ transcoder.transcode request_pb
99
+ end
100
+ end
101
+ end
102
+ end
103
+ end
104
+ end
105
+ end
106
+ end
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/rest"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/policy_troubleshooter/v1/version"
24
+
25
+ require "google/cloud/policy_troubleshooter/v1/iam_checker/credentials"
26
+ require "google/cloud/policy_troubleshooter/v1/iam_checker/rest/client"
27
+
28
+ module Google
29
+ module Cloud
30
+ module PolicyTroubleshooter
31
+ module V1
32
+ ##
33
+ # IAM Policy Troubleshooter service.
34
+ #
35
+ # This service helps you troubleshoot access issues for Google Cloud resources.
36
+ #
37
+ # To load this service and instantiate a REST client:
38
+ #
39
+ # require "google/cloud/policy_troubleshooter/v1/iam_checker/rest"
40
+ # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.new
41
+ #
42
+ module IamChecker
43
+ # Client for the REST transport
44
+ module Rest
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+
52
+ helper_path = ::File.join __dir__, "rest", "helpers.rb"
53
+ require "google/cloud/policy_troubleshooter/v1/iam_checker/rest/helpers" if ::File.file? helper_path
@@ -24,6 +24,7 @@ require "google/cloud/policy_troubleshooter/v1/version"
24
24
 
25
25
  require "google/cloud/policy_troubleshooter/v1/iam_checker/credentials"
26
26
  require "google/cloud/policy_troubleshooter/v1/iam_checker/client"
27
+ require "google/cloud/policy_troubleshooter/v1/iam_checker/rest"
27
28
 
28
29
  module Google
29
30
  module Cloud
@@ -34,11 +35,16 @@ module Google
34
35
  #
35
36
  # This service helps you troubleshoot access issues for Google Cloud resources.
36
37
  #
37
- # To load this service and instantiate a client:
38
+ # @example Load this service and instantiate a gRPC client
38
39
  #
39
40
  # require "google/cloud/policy_troubleshooter/v1/iam_checker"
40
41
  # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Client.new
41
42
  #
43
+ # @example Load this service and instantiate a REST client
44
+ #
45
+ # require "google/cloud/policy_troubleshooter/v1/iam_checker/rest"
46
+ # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.new
47
+ #
42
48
  module IamChecker
43
49
  end
44
50
  end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/policy_troubleshooter/v1/iam_checker/rest"
20
+ require "google/cloud/policy_troubleshooter/v1/version"
21
+
22
+ module Google
23
+ module Cloud
24
+ module PolicyTroubleshooter
25
+ ##
26
+ # To load just the REST part of this package, including all its services, and instantiate a REST client:
27
+ #
28
+ # @example
29
+ #
30
+ # require "google/cloud/policy_troubleshooter/v1/rest"
31
+ # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.new
32
+ #
33
+ module V1
34
+ end
35
+ end
36
+ end
37
+ end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module PolicyTroubleshooter
23
23
  module V1
24
- VERSION = "0.5.0"
24
+ VERSION = "0.7.0"
25
25
  end
26
26
  end
27
27
  end
@@ -23,13 +23,18 @@ module Google
23
23
  module Cloud
24
24
  module PolicyTroubleshooter
25
25
  ##
26
- # To load this package, including all its services, and instantiate a client:
26
+ # API client module.
27
27
  #
28
- # @example
28
+ # @example Load this package, including all its services, and instantiate a gRPC client
29
29
  #
30
30
  # require "google/cloud/policy_troubleshooter/v1"
31
31
  # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Client.new
32
32
  #
33
+ # @example Load this package, including all its services, and instantiate a REST client
34
+ #
35
+ # require "google/cloud/policy_troubleshooter/v1"
36
+ # client = ::Google::Cloud::PolicyTroubleshooter::V1::IamChecker::Rest::Client.new
37
+ #
33
38
  module V1
34
39
  end
35
40
  end