From 2a7727e47af0a1310455912ca124bb9aeb7d4ce2 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Sun, 2 Nov 2025 10:05:04 +0000 Subject: [PATCH] feat: Automated regeneration of apphub v1 client --- api_names_out.yaml | 4 +++ generated/google-apis-apphub_v1/CHANGELOG.md | 4 +++ .../lib/google/apis/apphub_v1/classes.rb | 31 +++++++++++++++++++ .../lib/google/apis/apphub_v1/gem_version.rb | 4 +-- .../google/apis/apphub_v1/representations.rb | 17 ++++++++++ .../lib/google/apis/apphub_v1/service.rb | 4 +-- 6 files changed, 60 insertions(+), 4 deletions(-) diff --git a/api_names_out.yaml b/api_names_out.yaml index aaa6bc0c3d0..fe9b49684ac 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -45220,6 +45220,8 @@ "/apphub:v1/Expr/title": title "/apphub:v1/ExtraParameter": extra_parameter "/apphub:v1/ExtraParameter/regionalMigDistributionPolicy": regional_mig_distribution_policy +"/apphub:v1/FunctionalType": functional_type +"/apphub:v1/FunctionalType/type": type "/apphub:v1/IsolationExpectations": isolation_expectations "/apphub:v1/IsolationExpectations/requirementOverride": requirement_override "/apphub:v1/IsolationExpectations/ziOrgPolicy": zi_org_policy @@ -45355,6 +45357,7 @@ "/apphub:v1/ServiceProjectAttachment/state": state "/apphub:v1/ServiceProjectAttachment/uid": uid "/apphub:v1/ServiceProperties": service_properties +"/apphub:v1/ServiceProperties/functionalType": functional_type "/apphub:v1/ServiceProperties/gcpProject": gcp_project "/apphub:v1/ServiceProperties/location": location "/apphub:v1/ServiceProperties/zone": zone @@ -45396,6 +45399,7 @@ "/apphub:v1/Workload/workloadProperties": workload_properties "/apphub:v1/Workload/workloadReference": workload_reference "/apphub:v1/WorkloadProperties": workload_properties +"/apphub:v1/WorkloadProperties/functionalType": functional_type "/apphub:v1/WorkloadProperties/gcpProject": gcp_project "/apphub:v1/WorkloadProperties/location": location "/apphub:v1/WorkloadProperties/zone": zone diff --git a/generated/google-apis-apphub_v1/CHANGELOG.md b/generated/google-apis-apphub_v1/CHANGELOG.md index dcab70bc012..ba052e69a8b 100644 --- a/generated/google-apis-apphub_v1/CHANGELOG.md +++ b/generated/google-apis-apphub_v1/CHANGELOG.md @@ -1,5 +1,9 @@ # Release history for google-apis-apphub_v1 +### v0.13.0 (2025-11-02) + +* Regenerated from discovery document revision 20251028 + ### v0.12.0 (2025-10-12) * Regenerated from discovery document revision 20251001 diff --git a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/classes.rb b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/classes.rb index 72122f00156..9c08adbf311 100644 --- a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/classes.rb +++ b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/classes.rb @@ -551,6 +551,25 @@ def update!(**args) end end + # The functional type of a service or workload. + class FunctionalType + include Google::Apis::Core::Hashable + + # Output only. The functional type of a service or workload. + # Corresponds to the JSON property `type` + # @return [String] + attr_accessor :type + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @type = args[:type] if args.key?(:type) + end + end + # Response for ListApplications. class ListApplicationsResponse include Google::Apis::Core::Hashable @@ -1310,6 +1329,11 @@ def update!(**args) class ServiceProperties include Google::Apis::Core::Hashable + # The functional type of a service or workload. + # Corresponds to the JSON property `functionalType` + # @return [Google::Apis::ApphubV1::FunctionalType] + attr_accessor :functional_type + # Output only. The service project identifier that the underlying cloud resource # resides in. # Corresponds to the JSON property `gcpProject` @@ -1334,6 +1358,7 @@ def initialize(**args) # Update properties of this object def update!(**args) + @functional_type = args[:functional_type] if args.key?(:functional_type) @gcp_project = args[:gcp_project] if args.key?(:gcp_project) @location = args[:location] if args.key?(:location) @zone = args[:zone] if args.key?(:zone) @@ -1583,6 +1608,11 @@ def update!(**args) class WorkloadProperties include Google::Apis::Core::Hashable + # The functional type of a service or workload. + # Corresponds to the JSON property `functionalType` + # @return [Google::Apis::ApphubV1::FunctionalType] + attr_accessor :functional_type + # Output only. The service project identifier that the underlying cloud resource # resides in. Empty for non-cloud resources. # Corresponds to the JSON property `gcpProject` @@ -1607,6 +1637,7 @@ def initialize(**args) # Update properties of this object def update!(**args) + @functional_type = args[:functional_type] if args.key?(:functional_type) @gcp_project = args[:gcp_project] if args.key?(:gcp_project) @location = args[:location] if args.key?(:location) @zone = args[:zone] if args.key?(:zone) diff --git a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/gem_version.rb b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/gem_version.rb index b17910e2684..8fa3f7b97b7 100644 --- a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/gem_version.rb +++ b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/gem_version.rb @@ -16,13 +16,13 @@ module Google module Apis module ApphubV1 # Version of the google-apis-apphub_v1 gem - GEM_VERSION = "0.12.0" + GEM_VERSION = "0.13.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 = "20251001" + REVISION = "20251028" end end end diff --git a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/representations.rb b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/representations.rb index 8d0febecef5..95d4a7e523a 100644 --- a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/representations.rb +++ b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/representations.rb @@ -112,6 +112,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end include Google::Apis::Core::JsonObjectSupport end + class FunctionalType + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class ListApplicationsResponse class Representation < Google::Apis::Core::JsonRepresentation; end @@ -418,6 +424,13 @@ class Representation < Google::Apis::Core::JsonRepresentation end end + class FunctionalType + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :type, as: 'type' + end + end + class ListApplicationsResponse # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -618,6 +631,8 @@ class Representation < Google::Apis::Core::JsonRepresentation class ServiceProperties # @private class Representation < Google::Apis::Core::JsonRepresentation + property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation + property :gcp_project, as: 'gcpProject' property :location, as: 'location' property :zone, as: 'zone' @@ -686,6 +701,8 @@ class Representation < Google::Apis::Core::JsonRepresentation class WorkloadProperties # @private class Representation < Google::Apis::Core::JsonRepresentation + property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation + property :gcp_project, as: 'gcpProject' property :location, as: 'location' property :zone, as: 'zone' diff --git a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/service.rb b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/service.rb index 8157d3f65b7..3ac4e9ae017 100644 --- a/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/service.rb +++ b/generated/google-apis-apphub_v1/lib/google/apis/apphub_v1/service.rb @@ -122,8 +122,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc # @param [String] name # The resource that owns the locations collection, if applicable. # @param [Array, String] extra_location_types - # Optional. Unless explicitly documented otherwise, don't use this unsupported - # field which is primarily intended for internal usage. + # Optional. Do not use this field. It is unsupported and is ignored unless + # explicitly documented otherwise. This is primarily for internal usage. # @param [String] filter # A filter to narrow down results to a preferred subset. The filtering language # accepts strings like `"displayName=tokyo"`, and is documented in more detail