google-apis-developerconnect_v1 0.20.0 → 0.22.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: e0098ad990b6c37632437dff16e0ad448d899c0a27d6e17add274c7ea54f25a1
4
- data.tar.gz: 431387e35995841117323a030c42a91ca3194b55dc14d81d73038f7236e5aeca
3
+ metadata.gz: 6b9e72b61f61b6fe8ba09f5f17fc0db7e5ba828ce1ae758df9e6fea61c0c5e80
4
+ data.tar.gz: 453f13264faf7c7637085d993dbc0109ca322c4f9781769840b6bd4b81a10d8b
5
5
  SHA512:
6
- metadata.gz: 47bc8b8279acca32283678e7a58812e148df708788da8189ef48d659dd29654d2e8e786f303bcdf8e1f2b4cfe65c2964877a9f833818ea78d1d9a0c029c96843
7
- data.tar.gz: 744bb46b151ac6e23de8c9f1a3e3a5edcdab3693fb682ab2cb75c2b61e33dcd3fb1695aff4f85924d2236430f46057953576e97d678b861f08d00ca72a061df1
6
+ metadata.gz: e5bb49c679b210d8b29d7685c0ea85712c659c6b80c20038177337680e787c4aa8fcf0a54112742df19503003ee678624088f2f339c13de57ff35746f06a742e
7
+ data.tar.gz: d74cf469ae3432ce00c38e5d949e9ed8110b6e1c6792e2164b5cbfc435792660b4d1e0204d2ae0f1e8b2211ff596669ca1bb3d3c9a4a4b6ee0e3dae4cf7424af
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-developerconnect_v1
2
2
 
3
+ ### v0.22.0 (2026-03-01)
4
+
5
+ * Regenerated from discovery document revision 20260223
6
+
7
+ ### v0.21.0 (2026-02-01)
8
+
9
+ * Regenerated from discovery document revision 20260123
10
+
3
11
  ### v0.20.0 (2025-12-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20251211
@@ -249,6 +249,50 @@ module Google
249
249
  end
250
250
  end
251
251
 
252
+ # Basic authentication with username and password.
253
+ class BasicAuthentication
254
+ include Google::Apis::Core::Hashable
255
+
256
+ # The password SecretManager secret version to authenticate as.
257
+ # Corresponds to the JSON property `passwordSecretVersion`
258
+ # @return [String]
259
+ attr_accessor :password_secret_version
260
+
261
+ # Required. The username to authenticate as.
262
+ # Corresponds to the JSON property `username`
263
+ # @return [String]
264
+ attr_accessor :username
265
+
266
+ def initialize(**args)
267
+ update!(**args)
268
+ end
269
+
270
+ # Update properties of this object
271
+ def update!(**args)
272
+ @password_secret_version = args[:password_secret_version] if args.key?(:password_secret_version)
273
+ @username = args[:username] if args.key?(:username)
274
+ end
275
+ end
276
+
277
+ # Bearer token authentication with a token.
278
+ class BearerTokenAuthentication
279
+ include Google::Apis::Core::Hashable
280
+
281
+ # Optional. The token SecretManager secret version to authenticate as.
282
+ # Corresponds to the JSON property `tokenSecretVersion`
283
+ # @return [String]
284
+ attr_accessor :token_secret_version
285
+
286
+ def initialize(**args)
287
+ update!(**args)
288
+ end
289
+
290
+ # Update properties of this object
291
+ def update!(**args)
292
+ @token_secret_version = args[:token_secret_version] if args.key?(:token_secret_version)
293
+ end
294
+ end
295
+
252
296
  # Configuration for connections to an instance of Bitbucket Cloud.
253
297
  class BitbucketCloudConfig
254
298
  include Google::Apis::Core::Hashable
@@ -443,6 +487,11 @@ module Google
443
487
  # @return [Google::Apis::DeveloperconnectV1::GitLabEnterpriseConfig]
444
488
  attr_accessor :gitlab_enterprise_config
445
489
 
490
+ # Defines the configuration for connections to an HTTP service provider.
491
+ # Corresponds to the JSON property `httpConfig`
492
+ # @return [Google::Apis::DeveloperconnectV1::GenericHttpEndpointConfig]
493
+ attr_accessor :http_config
494
+
446
495
  # Describes stage and necessary actions to be taken by the user to complete the
447
496
  # installation. Used for GitHub and GitHub Enterprise based connections.
448
497
  # Corresponds to the JSON property `installationState`
@@ -467,6 +516,11 @@ module Google
467
516
  attr_accessor :reconciling
468
517
  alias_method :reconciling?, :reconciling
469
518
 
519
+ # Configuration for connections to Secure Source Manager instance
520
+ # Corresponds to the JSON property `secureSourceManagerInstanceConfig`
521
+ # @return [Google::Apis::DeveloperconnectV1::SecureSourceManagerInstanceConfig]
522
+ attr_accessor :secure_source_manager_instance_config
523
+
470
524
  # Output only. A system-assigned unique identifier for the Connection.
471
525
  # Corresponds to the JSON property `uid`
472
526
  # @return [String]
@@ -496,10 +550,12 @@ module Google
496
550
  @github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
497
551
  @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
498
552
  @gitlab_enterprise_config = args[:gitlab_enterprise_config] if args.key?(:gitlab_enterprise_config)
553
+ @http_config = args[:http_config] if args.key?(:http_config)
499
554
  @installation_state = args[:installation_state] if args.key?(:installation_state)
500
555
  @labels = args[:labels] if args.key?(:labels)
501
556
  @name = args[:name] if args.key?(:name)
502
557
  @reconciling = args[:reconciling] if args.key?(:reconciling)
558
+ @secure_source_manager_instance_config = args[:secure_source_manager_instance_config] if args.key?(:secure_source_manager_instance_config)
503
559
  @uid = args[:uid] if args.key?(:uid)
504
560
  @update_time = args[:update_time] if args.key?(:update_time)
505
561
  end
@@ -550,9 +606,9 @@ module Google
550
606
  # @return [String]
551
607
  attr_accessor :deploy_time
552
608
 
553
- # Identifier. The name of the DeploymentEvent. This name is provided by DCI.
554
- # Format: projects/`project`/locations/`location`/insightsConfigs/`
555
- # insights_config`/deploymentEvents/`uuid`
609
+ # Identifier. The name of the DeploymentEvent. This name is provided by
610
+ # Developer Connect insights. Format: projects/`project`/locations/`location`/
611
+ # insightsConfigs/`insights_config`/deploymentEvents/`uuid`
556
612
  # Corresponds to the JSON property `name`
557
613
  # @return [String]
558
614
  attr_accessor :name
@@ -904,6 +960,50 @@ module Google
904
960
  end
905
961
  end
906
962
 
963
+ # Defines the configuration for connections to an HTTP service provider.
964
+ class GenericHttpEndpointConfig
965
+ include Google::Apis::Core::Hashable
966
+
967
+ # Basic authentication with username and password.
968
+ # Corresponds to the JSON property `basicAuthentication`
969
+ # @return [Google::Apis::DeveloperconnectV1::BasicAuthentication]
970
+ attr_accessor :basic_authentication
971
+
972
+ # Bearer token authentication with a token.
973
+ # Corresponds to the JSON property `bearerTokenAuthentication`
974
+ # @return [Google::Apis::DeveloperconnectV1::BearerTokenAuthentication]
975
+ attr_accessor :bearer_token_authentication
976
+
977
+ # Required. Immutable. The service provider's https endpoint.
978
+ # Corresponds to the JSON property `hostUri`
979
+ # @return [String]
980
+ attr_accessor :host_uri
981
+
982
+ # ServiceDirectoryConfig represents Service Directory configuration for a
983
+ # connection.
984
+ # Corresponds to the JSON property `serviceDirectoryConfig`
985
+ # @return [Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig]
986
+ attr_accessor :service_directory_config
987
+
988
+ # Optional. The SSL certificate to use for requests to the HTTP service provider.
989
+ # Corresponds to the JSON property `sslCaCertificate`
990
+ # @return [String]
991
+ attr_accessor :ssl_ca_certificate
992
+
993
+ def initialize(**args)
994
+ update!(**args)
995
+ end
996
+
997
+ # Update properties of this object
998
+ def update!(**args)
999
+ @basic_authentication = args[:basic_authentication] if args.key?(:basic_authentication)
1000
+ @bearer_token_authentication = args[:bearer_token_authentication] if args.key?(:bearer_token_authentication)
1001
+ @host_uri = args[:host_uri] if args.key?(:host_uri)
1002
+ @service_directory_config = args[:service_directory_config] if args.key?(:service_directory_config)
1003
+ @ssl_ca_certificate = args[:ssl_ca_certificate] if args.key?(:ssl_ca_certificate)
1004
+ end
1005
+ end
1006
+
907
1007
  # Configuration for connections to github.com.
908
1008
  class GitHubConfig
909
1009
  include Google::Apis::Core::Hashable
@@ -974,6 +1074,12 @@ module Google
974
1074
  # @return [String]
975
1075
  attr_accessor :installation_uri
976
1076
 
1077
+ # Optional. Immutable. GitHub Enterprise organization in which the GitHub App is
1078
+ # created.
1079
+ # Corresponds to the JSON property `organization`
1080
+ # @return [String]
1081
+ attr_accessor :organization
1082
+
977
1083
  # Optional. SecretManager resource containing the private key of the GitHub App,
978
1084
  # formatted as `projects/*/secrets/*/versions/*` or `projects/*/locations/*/
979
1085
  # secrets/*/versions/*` (if regional secrets are supported in that location).
@@ -1015,6 +1121,7 @@ module Google
1015
1121
  @app_slug = args[:app_slug] if args.key?(:app_slug)
1016
1122
  @host_uri = args[:host_uri] if args.key?(:host_uri)
1017
1123
  @installation_uri = args[:installation_uri] if args.key?(:installation_uri)
1124
+ @organization = args[:organization] if args.key?(:organization)
1018
1125
  @private_key_secret_version = args[:private_key_secret_version] if args.key?(:private_key_secret_version)
1019
1126
  @server_version = args[:server_version] if args.key?(:server_version)
1020
1127
  @service_directory_config = args[:service_directory_config] if args.key?(:service_directory_config)
@@ -1356,7 +1463,7 @@ module Google
1356
1463
 
1357
1464
  # The InsightsConfig resource is the core configuration object to capture events
1358
1465
  # from your Software Development Lifecycle. It acts as the central hub for
1359
- # managing how Developer connect understands your application, its runtime
1466
+ # managing how Developer Connect understands your application, its runtime
1360
1467
  # environments, and the artifacts deployed within them.
1361
1468
  class InsightsConfig
1362
1469
  include Google::Apis::Core::Hashable
@@ -2150,7 +2257,7 @@ module Google
2150
2257
  class Projects
2151
2258
  include Google::Apis::Core::Hashable
2152
2259
 
2153
- # Optional. The GCP Project IDs. Format: projects/`project`
2260
+ # Optional. The project IDs. Format: `project`
2154
2261
  # Corresponds to the JSON property `projectIds`
2155
2262
  # @return [Array<String>]
2156
2263
  attr_accessor :project_ids
@@ -2176,7 +2283,7 @@ module Google
2176
2283
  # @return [Array<String>]
2177
2284
  attr_accessor :scopes
2178
2285
 
2179
- # Immutable. Developer Connect provided OAuth.
2286
+ # Optional. Immutable. Developer Connect provided OAuth.
2180
2287
  # Corresponds to the JSON property `systemProviderId`
2181
2288
  # @return [String]
2182
2289
  attr_accessor :system_provider_id
@@ -2242,6 +2349,26 @@ module Google
2242
2349
  end
2243
2350
  end
2244
2351
 
2352
+ # Configuration for connections to Secure Source Manager instance
2353
+ class SecureSourceManagerInstanceConfig
2354
+ include Google::Apis::Core::Hashable
2355
+
2356
+ # Required. Immutable. Secure Source Manager instance resource, formatted as `
2357
+ # projects/*/locations/*/instances/*`
2358
+ # Corresponds to the JSON property `instance`
2359
+ # @return [String]
2360
+ attr_accessor :instance
2361
+
2362
+ def initialize(**args)
2363
+ update!(**args)
2364
+ end
2365
+
2366
+ # Update properties of this object
2367
+ def update!(**args)
2368
+ @instance = args[:instance] if args.key?(:instance)
2369
+ end
2370
+ end
2371
+
2245
2372
  # ServiceDirectoryConfig represents Service Directory configuration for a
2246
2373
  # connection.
2247
2374
  class ServiceDirectoryConfig
@@ -2277,13 +2404,12 @@ module Google
2277
2404
  # @return [String]
2278
2405
  attr_accessor :client_id
2279
2406
 
2280
- # https://datatracker.ietf.org/doc/html/rfc7636#section-4.1 Follow http://shortn/
2281
- # _WFYl6U0NyC to include it in the AutoCodeURL.
2407
+ # Please refer to https://datatracker.ietf.org/doc/html/rfc7636#section-4.1
2282
2408
  # Corresponds to the JSON property `codeChallenge`
2283
2409
  # @return [String]
2284
2410
  attr_accessor :code_challenge
2285
2411
 
2286
- # https://datatracker.ietf.org/doc/html/rfc7636#section-4.2
2412
+ # Please refer to https://datatracker.ietf.org/doc/html/rfc7636#section-4.2
2287
2413
  # Corresponds to the JSON property `codeChallengeMethod`
2288
2414
  # @return [String]
2289
2415
  attr_accessor :code_challenge_method
@@ -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.20.0"
19
+ GEM_VERSION = "0.22.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 = "20251211"
25
+ REVISION = "20260223"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,18 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class BasicAuthentication
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class BearerTokenAuthentication
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
55
67
  class BitbucketCloudConfig
56
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
69
 
@@ -166,6 +178,12 @@ module Google
166
178
  include Google::Apis::Core::JsonObjectSupport
167
179
  end
168
180
 
181
+ class GenericHttpEndpointConfig
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
169
187
  class GitHubConfig
170
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
189
 
@@ -370,6 +388,12 @@ module Google
370
388
  include Google::Apis::Core::JsonObjectSupport
371
389
  end
372
390
 
391
+ class SecureSourceManagerInstanceConfig
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
373
397
  class ServiceDirectoryConfig
374
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
399
 
@@ -457,6 +481,21 @@ module Google
457
481
  end
458
482
  end
459
483
 
484
+ class BasicAuthentication
485
+ # @private
486
+ class Representation < Google::Apis::Core::JsonRepresentation
487
+ property :password_secret_version, as: 'passwordSecretVersion'
488
+ property :username, as: 'username'
489
+ end
490
+ end
491
+
492
+ class BearerTokenAuthentication
493
+ # @private
494
+ class Representation < Google::Apis::Core::JsonRepresentation
495
+ property :token_secret_version, as: 'tokenSecretVersion'
496
+ end
497
+ end
498
+
460
499
  class BitbucketCloudConfig
461
500
  # @private
462
501
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -515,11 +554,15 @@ module Google
515
554
 
516
555
  property :gitlab_enterprise_config, as: 'gitlabEnterpriseConfig', class: Google::Apis::DeveloperconnectV1::GitLabEnterpriseConfig, decorator: Google::Apis::DeveloperconnectV1::GitLabEnterpriseConfig::Representation
517
556
 
557
+ property :http_config, as: 'httpConfig', class: Google::Apis::DeveloperconnectV1::GenericHttpEndpointConfig, decorator: Google::Apis::DeveloperconnectV1::GenericHttpEndpointConfig::Representation
558
+
518
559
  property :installation_state, as: 'installationState', class: Google::Apis::DeveloperconnectV1::InstallationState, decorator: Google::Apis::DeveloperconnectV1::InstallationState::Representation
519
560
 
520
561
  hash :labels, as: 'labels'
521
562
  property :name, as: 'name'
522
563
  property :reconciling, as: 'reconciling'
564
+ property :secure_source_manager_instance_config, as: 'secureSourceManagerInstanceConfig', class: Google::Apis::DeveloperconnectV1::SecureSourceManagerInstanceConfig, decorator: Google::Apis::DeveloperconnectV1::SecureSourceManagerInstanceConfig::Representation
565
+
523
566
  property :uid, as: 'uid'
524
567
  property :update_time, as: 'updateTime'
525
568
  end
@@ -651,6 +694,20 @@ module Google
651
694
  end
652
695
  end
653
696
 
697
+ class GenericHttpEndpointConfig
698
+ # @private
699
+ class Representation < Google::Apis::Core::JsonRepresentation
700
+ property :basic_authentication, as: 'basicAuthentication', class: Google::Apis::DeveloperconnectV1::BasicAuthentication, decorator: Google::Apis::DeveloperconnectV1::BasicAuthentication::Representation
701
+
702
+ property :bearer_token_authentication, as: 'bearerTokenAuthentication', class: Google::Apis::DeveloperconnectV1::BearerTokenAuthentication, decorator: Google::Apis::DeveloperconnectV1::BearerTokenAuthentication::Representation
703
+
704
+ property :host_uri, as: 'hostUri'
705
+ property :service_directory_config, as: 'serviceDirectoryConfig', class: Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig, decorator: Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig::Representation
706
+
707
+ property :ssl_ca_certificate, as: 'sslCaCertificate'
708
+ end
709
+ end
710
+
654
711
  class GitHubConfig
655
712
  # @private
656
713
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -670,6 +727,7 @@ module Google
670
727
  property :app_slug, as: 'appSlug'
671
728
  property :host_uri, as: 'hostUri'
672
729
  property :installation_uri, as: 'installationUri'
730
+ property :organization, as: 'organization'
673
731
  property :private_key_secret_version, as: 'privateKeySecretVersion'
674
732
  property :server_version, as: 'serverVersion'
675
733
  property :service_directory_config, as: 'serviceDirectoryConfig', class: Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig, decorator: Google::Apis::DeveloperconnectV1::ServiceDirectoryConfig::Representation
@@ -1003,6 +1061,13 @@ module Google
1003
1061
  end
1004
1062
  end
1005
1063
 
1064
+ class SecureSourceManagerInstanceConfig
1065
+ # @private
1066
+ class Representation < Google::Apis::Core::JsonRepresentation
1067
+ property :instance, as: 'instance'
1068
+ end
1069
+ end
1070
+
1006
1071
  class ServiceDirectoryConfig
1007
1072
  # @private
1008
1073
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -81,7 +81,11 @@ module Google
81
81
  execute_or_queue_command(command, &block)
82
82
  end
83
83
 
84
- # Lists information about the supported locations for this service.
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
89
  # @param [String] name
86
90
  # The resource that owns the locations collection, if applicable.
87
91
  # @param [Array<String>, String] extra_location_types
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.20.0
4
+ version: 0.22.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.20.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.22.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: