google-apis-developerconnect_v1 0.23.0 → 0.25.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/developerconnect_v1/classes.rb +15 -0
- data/lib/google/apis/developerconnect_v1/gem_version.rb +2 -2
- data/lib/google/apis/developerconnect_v1/representations.rb +2 -0
- data/lib/google/apis/developerconnect_v1/service.rb +11 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7acb1607bb402234a9e6e660fccbbceccf8c7b07f9cf49a2cdf0fe1db60056c4
|
|
4
|
+
data.tar.gz: 36a121928d33a408e7265738498fce68ac6ac0d922555a56190a15449dec5805
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d56721364bf70742e908d5e85d9fb85aee1de193b2e52ea2fabacceda571c08f6ed3b17b8d852b78e3dca76a70664ffb24dec8dcee9d17aeb74f71ed05715eb4
|
|
7
|
+
data.tar.gz: 923f382775fa2e18d1ec7a85845e4a346123213b2af04e89902d93432ee847a42625a4bc170901e7c96a7f3460828b4620129f5cbde03d155bf95ecdf9f630bd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-developerconnect_v1
|
|
2
2
|
|
|
3
|
+
### v0.25.0 (2026-05-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260426
|
|
6
|
+
|
|
7
|
+
### v0.24.0 (2026-04-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260403
|
|
10
|
+
|
|
3
11
|
### v0.23.0 (2026-03-22)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260313
|
|
@@ -77,6 +77,11 @@ module Google
|
|
|
77
77
|
# @return [Google::Apis::DeveloperconnectV1::ProxyConfig]
|
|
78
78
|
attr_accessor :proxy_config
|
|
79
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
|
+
|
|
80
85
|
# Output only. The timestamp when the accountConnector was updated.
|
|
81
86
|
# Corresponds to the JSON property `updateTime`
|
|
82
87
|
# @return [String]
|
|
@@ -97,6 +102,7 @@ module Google
|
|
|
97
102
|
@oauth_start_uri = args[:oauth_start_uri] if args.key?(:oauth_start_uri)
|
|
98
103
|
@provider_oauth_config = args[:provider_oauth_config] if args.key?(:provider_oauth_config)
|
|
99
104
|
@proxy_config = args[:proxy_config] if args.key?(:proxy_config)
|
|
105
|
+
@uid = args[:uid] if args.key?(:uid)
|
|
100
106
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
101
107
|
end
|
|
102
108
|
end
|
|
@@ -2430,6 +2436,14 @@ module Google
|
|
|
2430
2436
|
attr_accessor :enabled
|
|
2431
2437
|
alias_method :enabled?, :enabled
|
|
2432
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
|
+
|
|
2433
2447
|
def initialize(**args)
|
|
2434
2448
|
update!(**args)
|
|
2435
2449
|
end
|
|
@@ -2437,6 +2451,7 @@ module Google
|
|
|
2437
2451
|
# Update properties of this object
|
|
2438
2452
|
def update!(**args)
|
|
2439
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)
|
|
2440
2455
|
end
|
|
2441
2456
|
end
|
|
2442
2457
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.25.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 = "
|
|
25
|
+
REVISION = "20260426"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -463,6 +463,7 @@ module Google
|
|
|
463
463
|
|
|
464
464
|
property :proxy_config, as: 'proxyConfig', class: Google::Apis::DeveloperconnectV1::ProxyConfig, decorator: Google::Apis::DeveloperconnectV1::ProxyConfig::Representation
|
|
465
465
|
|
|
466
|
+
property :uid, as: 'uid'
|
|
466
467
|
property :update_time, as: 'updateTime'
|
|
467
468
|
end
|
|
468
469
|
end
|
|
@@ -1104,6 +1105,7 @@ module Google
|
|
|
1104
1105
|
# @private
|
|
1105
1106
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1106
1107
|
property :enabled, as: 'enabled'
|
|
1108
|
+
property :http_proxy_base_uri, as: 'httpProxyBaseUri'
|
|
1107
1109
|
end
|
|
1108
1110
|
end
|
|
1109
1111
|
|
|
@@ -82,15 +82,20 @@ module Google
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
# Lists information about the supported locations for this service. This method
|
|
85
|
-
#
|
|
86
|
-
#
|
|
87
|
-
#
|
|
88
|
-
#
|
|
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
|
|
92
|
-
# Optional. Do not use this field
|
|
93
|
-
#
|
|
97
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
98
|
+
# is primarily for internal usage.
|
|
94
99
|
# @param [String] filter
|
|
95
100
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
96
101
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
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.
|
|
4
|
+
version: 0.25.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.25.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:
|