google-apis-developerconnect_v1 0.22.0 → 0.24.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: 6b9e72b61f61b6fe8ba09f5f17fc0db7e5ba828ce1ae758df9e6fea61c0c5e80
4
- data.tar.gz: 453f13264faf7c7637085d993dbc0109ca322c4f9781769840b6bd4b81a10d8b
3
+ metadata.gz: 9656094f90e440ffb8bcfd7df5a2c9af21f8b7598ee5dd75f0b685e8141fa279
4
+ data.tar.gz: c5190001f63c390930dff8f476832f486bfadb52b77f122716c5453b5e532a30
5
5
  SHA512:
6
- metadata.gz: e5bb49c679b210d8b29d7685c0ea85712c659c6b80c20038177337680e787c4aa8fcf0a54112742df19503003ee678624088f2f339c13de57ff35746f06a742e
7
- data.tar.gz: d74cf469ae3432ce00c38e5d949e9ed8110b6e1c6792e2164b5cbfc435792660b4d1e0204d2ae0f1e8b2211ff596669ca1bb3d3c9a4a4b6ee0e3dae4cf7424af
6
+ metadata.gz: 33681bba421004dbdd6f0c3a2592cb189929874bac557b2fd85ecc9e7f80d36a0a8f3d7f702c2f7920c4fa1ed3471fd8960c30d90a5d38490f72c00a7193a18e
7
+ data.tar.gz: 80bb17a1d2195f267c60d31947efb7da02b24e58778b4e028a09e29163de63c7f9ced5df308e41d5c32cc05f23c9532ff56e2b32f870ee5fa65c00127538d8d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-developerconnect_v1
2
2
 
3
+ ### v0.24.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260403
6
+
7
+ ### v0.23.0 (2026-03-22)
8
+
9
+ * Regenerated from discovery document revision 20260313
10
+
3
11
  ### v0.22.0 (2026-03-01)
4
12
 
5
13
  * Regenerated from discovery document revision 20260223
@@ -39,6 +39,11 @@ module Google
39
39
  # @return [String]
40
40
  attr_accessor :create_time
41
41
 
42
+ # Message for a customized OAuth config.
43
+ # Corresponds to the JSON property `customOauthConfig`
44
+ # @return [Google::Apis::DeveloperconnectV1::CustomOAuthConfig]
45
+ attr_accessor :custom_oauth_config
46
+
42
47
  # Optional. This checksum is computed by the server based on the value of other
43
48
  # fields, and may be sent on update and delete requests to ensure the client has
44
49
  # an up-to-date value before proceeding.
@@ -67,6 +72,16 @@ module Google
67
72
  # @return [Google::Apis::DeveloperconnectV1::ProviderOAuthConfig]
68
73
  attr_accessor :provider_oauth_config
69
74
 
75
+ # The proxy configuration.
76
+ # Corresponds to the JSON property `proxyConfig`
77
+ # @return [Google::Apis::DeveloperconnectV1::ProxyConfig]
78
+ attr_accessor :proxy_config
79
+
80
+ # Output only. A system-assigned unique identifier for the Account Connector.
81
+ # Corresponds to the JSON property `uid`
82
+ # @return [String]
83
+ attr_accessor :uid
84
+
70
85
  # Output only. The timestamp when the accountConnector was updated.
71
86
  # Corresponds to the JSON property `updateTime`
72
87
  # @return [String]
@@ -80,11 +95,14 @@ module Google
80
95
  def update!(**args)
81
96
  @annotations = args[:annotations] if args.key?(:annotations)
82
97
  @create_time = args[:create_time] if args.key?(:create_time)
98
+ @custom_oauth_config = args[:custom_oauth_config] if args.key?(:custom_oauth_config)
83
99
  @etag = args[:etag] if args.key?(:etag)
84
100
  @labels = args[:labels] if args.key?(:labels)
85
101
  @name = args[:name] if args.key?(:name)
86
102
  @oauth_start_uri = args[:oauth_start_uri] if args.key?(:oauth_start_uri)
87
103
  @provider_oauth_config = args[:provider_oauth_config] if args.key?(:provider_oauth_config)
104
+ @proxy_config = args[:proxy_config] if args.key?(:proxy_config)
105
+ @uid = args[:uid] if args.key?(:uid)
88
106
  @update_time = args[:update_time] if args.key?(:update_time)
89
107
  end
90
108
  end
@@ -583,6 +601,89 @@ module Google
583
601
  end
584
602
  end
585
603
 
604
+ # Message for a customized OAuth config.
605
+ class CustomOAuthConfig
606
+ include Google::Apis::Core::Hashable
607
+
608
+ # Required. Immutable. The OAuth2 authorization server URL.
609
+ # Corresponds to the JSON property `authUri`
610
+ # @return [String]
611
+ attr_accessor :auth_uri
612
+
613
+ # Required. The client ID of the OAuth application.
614
+ # Corresponds to the JSON property `clientId`
615
+ # @return [String]
616
+ attr_accessor :client_id
617
+
618
+ # Required. Input only. The client secret of the OAuth application. It will be
619
+ # provided as plain text, but encrypted and stored in developer connect. As
620
+ # INPUT_ONLY field, it will not be included in the output.
621
+ # Corresponds to the JSON property `clientSecret`
622
+ # @return [String]
623
+ attr_accessor :client_secret
624
+
625
+ # Required. The host URI of the OAuth application.
626
+ # Corresponds to the JSON property `hostUri`
627
+ # @return [String]
628
+ attr_accessor :host_uri
629
+
630
+ # Optional. Disable PKCE for this OAuth config. PKCE is enabled by default.
631
+ # Corresponds to the JSON property `pkceDisabled`
632
+ # @return [Boolean]
633
+ attr_accessor :pkce_disabled
634
+ alias_method :pkce_disabled?, :pkce_disabled
635
+
636
+ # Required. The type of the SCM provider.
637
+ # Corresponds to the JSON property `scmProvider`
638
+ # @return [String]
639
+ attr_accessor :scm_provider
640
+
641
+ # Required. The scopes to be requested during OAuth.
642
+ # Corresponds to the JSON property `scopes`
643
+ # @return [Array<String>]
644
+ attr_accessor :scopes
645
+
646
+ # Output only. SCM server version installed at the host URI.
647
+ # Corresponds to the JSON property `serverVersion`
648
+ # @return [String]
649
+ attr_accessor :server_version
650
+
651
+ # ServiceDirectoryConfig represents Service Directory configuration for a
652
+ # connection.
653
+ # Corresponds to the JSON property `serviceDirectoryConfig`
654
+ # @return [Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig]
655
+ attr_accessor :service_directory_config
656
+
657
+ # Optional. SSL certificate to use for requests to a private service.
658
+ # Corresponds to the JSON property `sslCaCertificate`
659
+ # @return [String]
660
+ attr_accessor :ssl_ca_certificate
661
+
662
+ # Required. Immutable. The OAuth2 token request URL.
663
+ # Corresponds to the JSON property `tokenUri`
664
+ # @return [String]
665
+ attr_accessor :token_uri
666
+
667
+ def initialize(**args)
668
+ update!(**args)
669
+ end
670
+
671
+ # Update properties of this object
672
+ def update!(**args)
673
+ @auth_uri = args[:auth_uri] if args.key?(:auth_uri)
674
+ @client_id = args[:client_id] if args.key?(:client_id)
675
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
676
+ @host_uri = args[:host_uri] if args.key?(:host_uri)
677
+ @pkce_disabled = args[:pkce_disabled] if args.key?(:pkce_disabled)
678
+ @scm_provider = args[:scm_provider] if args.key?(:scm_provider)
679
+ @scopes = args[:scopes] if args.key?(:scopes)
680
+ @server_version = args[:server_version] if args.key?(:server_version)
681
+ @service_directory_config = args[:service_directory_config] if args.key?(:service_directory_config)
682
+ @ssl_ca_certificate = args[:ssl_ca_certificate] if args.key?(:ssl_ca_certificate)
683
+ @token_uri = args[:token_uri] if args.key?(:token_uri)
684
+ end
685
+ end
686
+
586
687
  # The DeploymentEvent resource represents the deployment of the artifact within
587
688
  # the InsightsConfig resource.
588
689
  class DeploymentEvent
@@ -913,6 +1014,31 @@ module Google
913
1014
  end
914
1015
  end
915
1016
 
1017
+ # Response message for FetchUserRepositories.
1018
+ class FetchUserRepositoriesResponse
1019
+ include Google::Apis::Core::Hashable
1020
+
1021
+ # A token identifying a page of results the server should return.
1022
+ # Corresponds to the JSON property `nextPageToken`
1023
+ # @return [String]
1024
+ attr_accessor :next_page_token
1025
+
1026
+ # The repositories that the user can access with this account connector.
1027
+ # Corresponds to the JSON property `userRepos`
1028
+ # @return [Array<Google::Apis::DeveloperconnectV1::UserRepository>]
1029
+ attr_accessor :user_repos
1030
+
1031
+ def initialize(**args)
1032
+ update!(**args)
1033
+ end
1034
+
1035
+ # Update properties of this object
1036
+ def update!(**args)
1037
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1038
+ @user_repos = args[:user_repos] if args.key?(:user_repos)
1039
+ end
1040
+ end
1041
+
916
1042
  # Message for responding to finishing an OAuth flow.
917
1043
  class FinishOAuthResponse
918
1044
  include Google::Apis::Core::Hashable
@@ -2299,6 +2425,36 @@ module Google
2299
2425
  end
2300
2426
  end
2301
2427
 
2428
+ # The proxy configuration.
2429
+ class ProxyConfig
2430
+ include Google::Apis::Core::Hashable
2431
+
2432
+ # Optional. Setting this to true allows the git and http proxies to perform
2433
+ # actions on behalf of the user configured under the account connector.
2434
+ # Corresponds to the JSON property `enabled`
2435
+ # @return [Boolean]
2436
+ attr_accessor :enabled
2437
+ alias_method :enabled?, :enabled
2438
+
2439
+ # Output only. The base URI for the HTTP proxy endpoint. Has the format `https://
2440
+ # `generatedID`-a-h-`shortRegion`.developerconnect.dev` Populated only when `
2441
+ # enabled` is set to `true`. This endpoint is used by other Google services that
2442
+ # integrate with Developer Connect.
2443
+ # Corresponds to the JSON property `httpProxyBaseUri`
2444
+ # @return [String]
2445
+ attr_accessor :http_proxy_base_uri
2446
+
2447
+ def initialize(**args)
2448
+ update!(**args)
2449
+ end
2450
+
2451
+ # Update properties of this object
2452
+ def update!(**args)
2453
+ @enabled = args[:enabled] if args.key?(:enabled)
2454
+ @http_proxy_base_uri = args[:http_proxy_base_uri] if args.key?(:http_proxy_base_uri)
2455
+ end
2456
+ end
2457
+
2302
2458
  # RuntimeConfig represents the runtimes where the application is deployed.
2303
2459
  class RuntimeConfig
2304
2460
  include Google::Apis::Core::Hashable
@@ -2553,6 +2709,42 @@ module Google
2553
2709
  @username = args[:username] if args.key?(:username)
2554
2710
  end
2555
2711
  end
2712
+
2713
+ # A user repository that can be linked to the account connector. Consists of the
2714
+ # repo name and the git proxy URL to forward requests to this repo.
2715
+ class UserRepository
2716
+ include Google::Apis::Core::Hashable
2717
+
2718
+ # Output only. The git clone URL of the repo. For example: https://github.com/
2719
+ # myuser/myrepo.git
2720
+ # Corresponds to the JSON property `cloneUri`
2721
+ # @return [String]
2722
+ attr_accessor :clone_uri
2723
+
2724
+ # Output only. The user friendly repo name (e.g., myuser/myrepo)
2725
+ # Corresponds to the JSON property `displayName`
2726
+ # @return [String]
2727
+ attr_accessor :display_name
2728
+
2729
+ # Output only. The Git proxy URL for this repo. For example: https://us-west1-
2730
+ # git.developerconnect.dev/a/my-proj/my-ac/myuser/myrepo.git. Populated only
2731
+ # when `proxy_config.enabled` is set to `true` in the Account Connector. This
2732
+ # URL is used by other Google services that integrate with Developer Connect.
2733
+ # Corresponds to the JSON property `gitProxyUri`
2734
+ # @return [String]
2735
+ attr_accessor :git_proxy_uri
2736
+
2737
+ def initialize(**args)
2738
+ update!(**args)
2739
+ end
2740
+
2741
+ # Update properties of this object
2742
+ def update!(**args)
2743
+ @clone_uri = args[:clone_uri] if args.key?(:clone_uri)
2744
+ @display_name = args[:display_name] if args.key?(:display_name)
2745
+ @git_proxy_uri = args[:git_proxy_uri] if args.key?(:git_proxy_uri)
2746
+ end
2747
+ end
2556
2748
  end
2557
2749
  end
2558
2750
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeveloperconnectV1
18
18
  # Version of the google-apis-developerconnect_v1 gem
19
- GEM_VERSION = "0.22.0"
19
+ GEM_VERSION = "0.24.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 = "20260223"
25
+ REVISION = "20260403"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class CustomOAuthConfig
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class DeploymentEvent
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -166,6 +172,12 @@ module Google
166
172
  include Google::Apis::Core::JsonObjectSupport
167
173
  end
168
174
 
175
+ class FetchUserRepositoriesResponse
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
169
181
  class FinishOAuthResponse
170
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
183
 
@@ -382,6 +394,12 @@ module Google
382
394
  include Google::Apis::Core::JsonObjectSupport
383
395
  end
384
396
 
397
+ class ProxyConfig
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
385
403
  class RuntimeConfig
386
404
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
405
 
@@ -424,17 +442,28 @@ module Google
424
442
  include Google::Apis::Core::JsonObjectSupport
425
443
  end
426
444
 
445
+ class UserRepository
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
427
451
  class AccountConnector
428
452
  # @private
429
453
  class Representation < Google::Apis::Core::JsonRepresentation
430
454
  hash :annotations, as: 'annotations'
431
455
  property :create_time, as: 'createTime'
456
+ property :custom_oauth_config, as: 'customOauthConfig', class: Google::Apis::DeveloperconnectV1::CustomOAuthConfig, decorator: Google::Apis::DeveloperconnectV1::CustomOAuthConfig::Representation
457
+
432
458
  property :etag, as: 'etag'
433
459
  hash :labels, as: 'labels'
434
460
  property :name, as: 'name'
435
461
  property :oauth_start_uri, as: 'oauthStartUri'
436
462
  property :provider_oauth_config, as: 'providerOauthConfig', class: Google::Apis::DeveloperconnectV1::ProviderOAuthConfig, decorator: Google::Apis::DeveloperconnectV1::ProviderOAuthConfig::Representation
437
463
 
464
+ property :proxy_config, as: 'proxyConfig', class: Google::Apis::DeveloperconnectV1::ProxyConfig, decorator: Google::Apis::DeveloperconnectV1::ProxyConfig::Representation
465
+
466
+ property :uid, as: 'uid'
438
467
  property :update_time, as: 'updateTime'
439
468
  end
440
469
  end
@@ -575,6 +604,24 @@ module Google
575
604
  end
576
605
  end
577
606
 
607
+ class CustomOAuthConfig
608
+ # @private
609
+ class Representation < Google::Apis::Core::JsonRepresentation
610
+ property :auth_uri, as: 'authUri'
611
+ property :client_id, as: 'clientId'
612
+ property :client_secret, as: 'clientSecret'
613
+ property :host_uri, as: 'hostUri'
614
+ property :pkce_disabled, as: 'pkceDisabled'
615
+ property :scm_provider, as: 'scmProvider'
616
+ collection :scopes, as: 'scopes'
617
+ property :server_version, as: 'serverVersion'
618
+ property :service_directory_config, as: 'serviceDirectoryConfig', class: Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig, decorator: Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig::Representation
619
+
620
+ property :ssl_ca_certificate, as: 'sslCaCertificate'
621
+ property :token_uri, as: 'tokenUri'
622
+ end
623
+ end
624
+
578
625
  class DeploymentEvent
579
626
  # @private
580
627
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -678,6 +725,15 @@ module Google
678
725
  end
679
726
  end
680
727
 
728
+ class FetchUserRepositoriesResponse
729
+ # @private
730
+ class Representation < Google::Apis::Core::JsonRepresentation
731
+ property :next_page_token, as: 'nextPageToken'
732
+ collection :user_repos, as: 'userRepos', class: Google::Apis::DeveloperconnectV1::UserRepository, decorator: Google::Apis::DeveloperconnectV1::UserRepository::Representation
733
+
734
+ end
735
+ end
736
+
681
737
  class FinishOAuthResponse
682
738
  # @private
683
739
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1045,6 +1101,14 @@ module Google
1045
1101
  end
1046
1102
  end
1047
1103
 
1104
+ class ProxyConfig
1105
+ # @private
1106
+ class Representation < Google::Apis::Core::JsonRepresentation
1107
+ property :enabled, as: 'enabled'
1108
+ property :http_proxy_base_uri, as: 'httpProxyBaseUri'
1109
+ end
1110
+ end
1111
+
1048
1112
  class RuntimeConfig
1049
1113
  # @private
1050
1114
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1114,6 +1178,15 @@ module Google
1114
1178
  property :username, as: 'username'
1115
1179
  end
1116
1180
  end
1181
+
1182
+ class UserRepository
1183
+ # @private
1184
+ class Representation < Google::Apis::Core::JsonRepresentation
1185
+ property :clone_uri, as: 'cloneUri'
1186
+ property :display_name, as: 'displayName'
1187
+ property :git_proxy_uri, as: 'gitProxyUri'
1188
+ end
1189
+ end
1117
1190
  end
1118
1191
  end
1119
1192
  end
@@ -82,10 +82,15 @@ module Google
82
82
  end
83
83
 
84
84
  # Lists information about the supported locations for this service. This method
85
- # can be called in two ways: * **List all public locations:** Use the path `GET /
86
- # v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
87
- # projects/`project_id`/locations`. This may include public locations as well as
88
- # private or other locations specifically visible to the project.
85
+ # lists locations based on the resource scope provided in the [
86
+ # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
87
+ # the method lists the public locations available to all projects. * **Project-
88
+ # specific locations**: If `name` follows the format `projects/`project``, the
89
+ # method lists locations visible to that specific project. This includes public,
90
+ # private, or other project-specific locations enabled for the project. For gRPC
91
+ # and client library implementations, the resource name is passed as the `name`
92
+ # field. For direct service calls, the resource name is incorporated into the
93
+ # request path based on the specific service implementation and version.
89
94
  # @param [String] name
90
95
  # The resource that owns the locations collection, if applicable.
91
96
  # @param [Array<String>, String] extra_location_types
@@ -241,6 +246,49 @@ module Google
241
246
  execute_or_queue_command(command, &block)
242
247
  end
243
248
 
249
+ # FetchUserRepositories returns a list of UserRepos that are available for an
250
+ # account connector resource.
251
+ # @param [String] account_connector
252
+ # Required. The name of the Account Connector resource in the format: `projects/*
253
+ # /locations/*/accountConnectors/*`.
254
+ # @param [Fixnum] page_size
255
+ # Optional. Number of results to return in the list. Defaults to 20.
256
+ # @param [String] page_token
257
+ # Optional. Page start.
258
+ # @param [String] repository
259
+ # Optional. The name of the repository. When specified, only the UserRepository
260
+ # with this name will be returned if the repository is accessible under this
261
+ # Account Connector for the calling user.
262
+ # @param [String] fields
263
+ # Selector specifying which fields to include in a partial response.
264
+ # @param [String] quota_user
265
+ # Available to use for quota purposes for server-side applications. Can be any
266
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
267
+ # @param [Google::Apis::RequestOptions] options
268
+ # Request-specific options
269
+ #
270
+ # @yield [result, err] Result & error if block supplied
271
+ # @yieldparam result [Google::Apis::DeveloperconnectV1::FetchUserRepositoriesResponse] parsed result object
272
+ # @yieldparam err [StandardError] error object if request failed
273
+ #
274
+ # @return [Google::Apis::DeveloperconnectV1::FetchUserRepositoriesResponse]
275
+ #
276
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
277
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
278
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
279
+ def fetch_project_location_account_connector_user_repositories(account_connector, page_size: nil, page_token: nil, repository: nil, fields: nil, quota_user: nil, options: nil, &block)
280
+ command = make_simple_command(:get, 'v1/{+accountConnector}:fetchUserRepositories', options)
281
+ command.response_representation = Google::Apis::DeveloperconnectV1::FetchUserRepositoriesResponse::Representation
282
+ command.response_class = Google::Apis::DeveloperconnectV1::FetchUserRepositoriesResponse
283
+ command.params['accountConnector'] = account_connector unless account_connector.nil?
284
+ command.query['pageSize'] = page_size unless page_size.nil?
285
+ command.query['pageToken'] = page_token unless page_token.nil?
286
+ command.query['repository'] = repository unless repository.nil?
287
+ command.query['fields'] = fields unless fields.nil?
288
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
289
+ execute_or_queue_command(command, &block)
290
+ end
291
+
244
292
  # Gets details of a single AccountConnector.
245
293
  # @param [String] name
246
294
  # Required. Name of the resource
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-developerconnect_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.24.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-developerconnect_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.22.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.24.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerconnect_v1
62
62
  rdoc_options: []
63
63
  require_paths: