Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163799,6 +163799,10 @@
"/developerconnect:v1/AccountConnector/oauthStartUri": oauth_start_uri
"/developerconnect:v1/AccountConnector/providerOauthConfig": provider_oauth_config
"/developerconnect:v1/AccountConnector/updateTime": update_time
"/developerconnect:v1/AppHubService": app_hub_service
"/developerconnect:v1/AppHubService/apphubService": apphub_service
"/developerconnect:v1/AppHubService/criticality": criticality
"/developerconnect:v1/AppHubService/environment": environment
"/developerconnect:v1/AppHubWorkload": app_hub_workload
"/developerconnect:v1/AppHubWorkload/criticality": criticality
"/developerconnect:v1/AppHubWorkload/environment": environment
Expand Down Expand Up @@ -163930,6 +163934,8 @@
"/developerconnect:v1/GoogleArtifactRegistry": google_artifact_registry
"/developerconnect:v1/GoogleArtifactRegistry/artifactRegistryPackage": artifact_registry_package
"/developerconnect:v1/GoogleArtifactRegistry/projectId": project_id
"/developerconnect:v1/GoogleCloudRun": google_cloud_run
"/developerconnect:v1/GoogleCloudRun/serviceUri": service_uri
"/developerconnect:v1/HttpBody": http_body
"/developerconnect:v1/HttpBody/contentType": content_type
"/developerconnect:v1/HttpBody/data": data
Expand Down Expand Up @@ -164045,8 +164051,10 @@
"/developerconnect:v1/ProviderOAuthConfig/scopes/scope": scope
"/developerconnect:v1/ProviderOAuthConfig/systemProviderId": system_provider_id
"/developerconnect:v1/RuntimeConfig": runtime_config
"/developerconnect:v1/RuntimeConfig/appHubService": app_hub_service
"/developerconnect:v1/RuntimeConfig/appHubWorkload": app_hub_workload
"/developerconnect:v1/RuntimeConfig/gkeWorkload": gke_workload
"/developerconnect:v1/RuntimeConfig/googleCloudRun": google_cloud_run
"/developerconnect:v1/RuntimeConfig/state": state
"/developerconnect:v1/RuntimeConfig/uri": uri
"/developerconnect:v1/ServiceDirectoryConfig": service_directory_config
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-developerconnect_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-developerconnect_v1

### v0.15.0 (2025-10-26)

* Regenerated from discovery document revision 20251016

### v0.14.0 (2025-10-12)

* Regenerated from discovery document revision 20251003
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,39 @@ def update!(**args)
end
end

# AppHubService represents the App Hub Service.
class AppHubService
include Google::Apis::Core::Hashable

# Required. Output only. Immutable. The name of the App Hub Service. Format: `
# projects/`project`/locations/`location`/applications/`application`/services/`
# service``.
# Corresponds to the JSON property `apphubService`
# @return [String]
attr_accessor :apphub_service

# Output only. The criticality of the App Hub Service.
# Corresponds to the JSON property `criticality`
# @return [String]
attr_accessor :criticality

# Output only. The environment of the App Hub Service.
# Corresponds to the JSON property `environment`
# @return [String]
attr_accessor :environment

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@apphub_service = args[:apphub_service] if args.key?(:apphub_service)
@criticality = args[:criticality] if args.key?(:criticality)
@environment = args[:environment] if args.key?(:environment)
end
end

# AppHubWorkload represents the App Hub Workload.
class AppHubWorkload
include Google::Apis::Core::Hashable
Expand Down Expand Up @@ -1079,6 +1112,26 @@ def update!(**args)
end
end

# GoogleCloudRun represents the Cloud Run runtime.
class GoogleCloudRun
include Google::Apis::Core::Hashable

# Required. Immutable. The name of the Cloud Run service. Format: `projects/`
# project`/locations/`location`/services/`service``.
# Corresponds to the JSON property `serviceUri`
# @return [String]
attr_accessor :service_uri

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@service_uri = args[:service_uri] if args.key?(:service_uri)
end
end

# Message that represents an arbitrary HTTP body. It should only be used for
# payload formats that can't be represented as JSON, such as raw binary or an
# HTML page. This message can be used both in streaming and non-streaming API
Expand Down Expand Up @@ -1915,6 +1968,11 @@ def update!(**args)
class RuntimeConfig
include Google::Apis::Core::Hashable

# AppHubService represents the App Hub Service.
# Corresponds to the JSON property `appHubService`
# @return [Google::Apis::DeveloperconnectV1::AppHubService]
attr_accessor :app_hub_service

# AppHubWorkload represents the App Hub Workload.
# Corresponds to the JSON property `appHubWorkload`
# @return [Google::Apis::DeveloperconnectV1::AppHubWorkload]
Expand All @@ -1925,6 +1983,11 @@ class RuntimeConfig
# @return [Google::Apis::DeveloperconnectV1::GkeWorkload]
attr_accessor :gke_workload

# GoogleCloudRun represents the Cloud Run runtime.
# Corresponds to the JSON property `googleCloudRun`
# @return [Google::Apis::DeveloperconnectV1::GoogleCloudRun]
attr_accessor :google_cloud_run

# Output only. The state of the Runtime.
# Corresponds to the JSON property `state`
# @return [String]
Expand All @@ -1942,8 +2005,10 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@app_hub_service = args[:app_hub_service] if args.key?(:app_hub_service)
@app_hub_workload = args[:app_hub_workload] if args.key?(:app_hub_workload)
@gke_workload = args[:gke_workload] if args.key?(:gke_workload)
@google_cloud_run = args[:google_cloud_run] if args.key?(:google_cloud_run)
@state = args[:state] if args.key?(:state)
@uri = args[:uri] if args.key?(:uri)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DeveloperconnectV1
# Version of the google-apis-developerconnect_v1 gem
GEM_VERSION = "0.14.0"
GEM_VERSION = "0.15.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251003"
REVISION = "20251016"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class AppHubService
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class AppHubWorkload
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -190,6 +196,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class GoogleCloudRun
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class HttpBody
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -367,6 +379,15 @@ class Representation < Google::Apis::Core::JsonRepresentation
end
end

class AppHubService
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :apphub_service, as: 'apphubService'
property :criticality, as: 'criticality'
property :environment, as: 'environment'
end
end

class AppHubWorkload
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down Expand Up @@ -651,6 +672,13 @@ class Representation < Google::Apis::Core::JsonRepresentation
end
end

class GoogleCloudRun
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :service_uri, as: 'serviceUri'
end
end

class HttpBody
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down Expand Up @@ -869,10 +897,14 @@ class Representation < Google::Apis::Core::JsonRepresentation
class RuntimeConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :app_hub_service, as: 'appHubService', class: Google::Apis::DeveloperconnectV1::AppHubService, decorator: Google::Apis::DeveloperconnectV1::AppHubService::Representation

property :app_hub_workload, as: 'appHubWorkload', class: Google::Apis::DeveloperconnectV1::AppHubWorkload, decorator: Google::Apis::DeveloperconnectV1::AppHubWorkload::Representation

property :gke_workload, as: 'gkeWorkload', class: Google::Apis::DeveloperconnectV1::GkeWorkload, decorator: Google::Apis::DeveloperconnectV1::GkeWorkload::Representation

property :google_cloud_run, as: 'googleCloudRun', class: Google::Apis::DeveloperconnectV1::GoogleCloudRun, decorator: Google::Apis::DeveloperconnectV1::GoogleCloudRun::Representation

property :state, as: 'state'
property :uri, as: 'uri'
end
Expand Down