-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathdeveloper_connect.rb
More file actions
234 lines (220 loc) · 11.7 KB
/
developer_connect.rb
File metadata and controls
234 lines (220 loc) · 11.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# frozen_string_literal: true
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
# Require this file early so that the version constant gets defined before
# requiring "google/cloud". This is because google-cloud-core will load the
# entrypoint (gem name) file, which in turn re-requires this file (hence
# causing a require cycle) unless the version constant is already defined.
require "google/cloud/developer_connect/version"
require "googleauth"
gem "google-cloud-core"
require "google/cloud" unless defined? ::Google::Cloud.new
require "google/cloud/config"
# Set the default configuration
::Google::Cloud.configure.add_config! :developer_connect do |config|
config.add_field! :endpoint, nil, match: ::String
config.add_field! :credentials, nil, match: [::String, ::Hash, ::Google::Auth::Credentials]
config.add_field! :scope, nil, match: [::Array, ::String]
config.add_field! :lib_name, nil, match: ::String
config.add_field! :lib_version, nil, match: ::String
config.add_field! :interceptors, nil, match: ::Array
config.add_field! :timeout, nil, match: ::Numeric
config.add_field! :metadata, nil, match: ::Hash
config.add_field! :retry_policy, nil, match: [::Hash, ::Proc]
config.add_field! :quota_project, nil, match: ::String
config.add_field! :universe_domain, nil, match: ::String
end
module Google
module Cloud
module DeveloperConnect
##
# Create a new client object for DeveloperConnect.
#
# By default, this returns an instance of
# [Google::Cloud::DeveloperConnect::V1::DeveloperConnect::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-developer_connect-v1/latest/Google-Cloud-DeveloperConnect-V1-DeveloperConnect-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the DeveloperConnect service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the DeveloperConnect service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::DeveloperConnect.developer_connect_available?}.
#
# ## About DeveloperConnect
#
# Service describing handlers for resources
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.developer_connect version: :v1, transport: :grpc, &block
require "google/cloud/developer_connect/#{version.to_s.downcase}"
package_name = Google::Cloud::DeveloperConnect
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::DeveloperConnect.const_get(package_name).const_get(:DeveloperConnect)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the DeveloperConnect service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::DeveloperConnect.developer_connect}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the DeveloperConnect service,
# or if the versioned client gem needs an update to support the DeveloperConnect service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.developer_connect_available? version: :v1, transport: :grpc
require "google/cloud/developer_connect/#{version.to_s.downcase}"
package_name = Google::Cloud::DeveloperConnect
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::DeveloperConnect.const_get package_name
return false unless service_module.const_defined? :DeveloperConnect
service_module = service_module.const_get :DeveloperConnect
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Create a new client object for InsightsConfigService.
#
# By default, this returns an instance of
# [Google::Cloud::DeveloperConnect::V1::InsightsConfigService::Client](https://cloud.google.com/ruby/docs/reference/google-cloud-developer_connect-v1/latest/Google-Cloud-DeveloperConnect-V1-InsightsConfigService-Client)
# for a gRPC client for version V1 of the API.
# However, you can specify a different API version by passing it in the
# `version` parameter. If the InsightsConfigService service is
# supported by that API version, and the corresponding gem is available, the
# appropriate versioned client will be returned.
# You can also specify a different transport by passing `:rest` or `:grpc` in
# the `transport` parameter.
#
# Raises an exception if the currently installed versioned client gem for the
# given API version does not support the given transport of the InsightsConfigService service.
# You can determine whether the method will succeed by calling
# {Google::Cloud::DeveloperConnect.insights_config_service_available?}.
#
# ## About InsightsConfigService
#
# Creates and manages InsightsConfigs.
#
# The InsightsConfig resource is the core configuration object to capture
# events from your Software Development Lifecycle. It acts as the central hub
# for managing how Developer Connect understands your application, its runtime
# environments, and the artifacts deployed within them.
# A user can create an InsightsConfig, list previously-requested
# InsightsConfigs or get InsightsConfigs by their ID to determine the status of
# the InsightsConfig.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [::Object] A client object for the specified version.
#
def self.insights_config_service version: :v1, transport: :grpc, &block
require "google/cloud/developer_connect/#{version.to_s.downcase}"
package_name = Google::Cloud::DeveloperConnect
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
service_module = Google::Cloud::DeveloperConnect.const_get(package_name).const_get(:InsightsConfigService)
service_module = service_module.const_get(:Rest) if transport == :rest
service_module.const_get(:Client).new(&block)
end
##
# Determines whether the InsightsConfigService service is supported by the current client.
# If true, you can retrieve a client object by calling {Google::Cloud::DeveloperConnect.insights_config_service}.
# If false, that method will raise an exception. This could happen if the given
# API version does not exist or does not support the InsightsConfigService service,
# or if the versioned client gem needs an update to support the InsightsConfigService service.
#
# @param version [::String, ::Symbol] The API version to connect to. Optional.
# Defaults to `:v1`.
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
# @return [boolean] Whether the service is available.
#
def self.insights_config_service_available? version: :v1, transport: :grpc
require "google/cloud/developer_connect/#{version.to_s.downcase}"
package_name = Google::Cloud::DeveloperConnect
.constants
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
.first
return false unless package_name
service_module = Google::Cloud::DeveloperConnect.const_get package_name
return false unless service_module.const_defined? :InsightsConfigService
service_module = service_module.const_get :InsightsConfigService
if transport == :rest
return false unless service_module.const_defined? :Rest
service_module = service_module.const_get :Rest
end
service_module.const_defined? :Client
rescue ::LoadError
false
end
##
# Configure the google-cloud-developer_connect library.
#
# The following configuration parameters are supported:
#
# * `credentials` (*type:* `String, Hash, Google::Auth::Credentials`) -
# The path to the keyfile as a String, the contents of the keyfile as a
# Hash, or a Google::Auth::Credentials object.
# * `lib_name` (*type:* `String`) -
# The library name as recorded in instrumentation and logging.
# * `lib_version` (*type:* `String`) -
# The library version as recorded in instrumentation and logging.
# * `interceptors` (*type:* `Array<GRPC::ClientInterceptor>`) -
# An array of interceptors that are run before calls are executed.
# * `timeout` (*type:* `Numeric`) -
# Default timeout in seconds.
# * `metadata` (*type:* `Hash{Symbol=>String}`) -
# Additional headers to be sent with the call.
# * `retry_policy` (*type:* `Hash`) -
# The retry policy. The value is a hash with the following keys:
# * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
# * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
# * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
# * `:retry_codes` (*type:* `Array<String>`) -
# The error codes that should trigger a retry.
#
# @return [::Google::Cloud::Config] The default configuration used by this library
#
def self.configure
yield ::Google::Cloud.configure.developer_connect if block_given?
::Google::Cloud.configure.developer_connect
end
end
end
end
helper_path = ::File.join __dir__, "developer_connect", "helpers.rb"
require "google/cloud/developer_connect/helpers" if ::File.file? helper_path