google-apis-apphub_v1alpha 0.16.0 → 0.17.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: f5a147159986284effa3115210d39eb2dc5cf0553acfb6d13c60447e31ad0cee
4
- data.tar.gz: 81f68ccb06123554f1e173b19f99df74269793310fdbd7f36395d163cabd3f52
3
+ metadata.gz: c4d29ffe3f9c6c631cf4734bbf14beb79e2219b2dcb7d06ffff56d19c954b32f
4
+ data.tar.gz: 9125dd6367db271c3392c285c1ad73b255f2fa1c2028c5dba95ecacf1f0ca993
5
5
  SHA512:
6
- metadata.gz: 2fda17af2dc9a09cb1a7d5ca8161fb20baa7576811b471e3dd9d04176f393994ef6569cd436d9273c7c852c4e7035217614fbfc126749573811c3c5776c47f06
7
- data.tar.gz: 90595796ab264f7bbe97760a6c6d3f59628ae4f8d718f3a10e63f41371567d666fc9ecb2a8caa1dd965bd9666072d379a38c95fd5581d00e3fea3ce5a8bd8d04
6
+ metadata.gz: e7e3455bbacf21db23d75fdf796f7deb89aef082657f5d8a05e1cf3b899debe30cf726c6567ccc82075053157e2e73d06d78894fe30e2bf94ad6999e9b37e860
7
+ data.tar.gz: 66e39b79cda706e47733bd674afdcef473d62980730da472c09488c40905f10f30765a97464ebaa07f49282b5d749c217c0719ae049cd6455f7b83fa8b8feb0a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apphub_v1alpha
2
2
 
3
+ ### v0.17.0 (2025-11-02)
4
+
5
+ * Regenerated from discovery document revision 20251028
6
+
3
7
  ### v0.16.0 (2025-10-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20251001
@@ -662,6 +662,25 @@ module Google
662
662
  end
663
663
  end
664
664
 
665
+ # The functional type of a service or workload.
666
+ class FunctionalType
667
+ include Google::Apis::Core::Hashable
668
+
669
+ # Output only. The functional type of a service or workload.
670
+ # Corresponds to the JSON property `type`
671
+ # @return [String]
672
+ attr_accessor :type
673
+
674
+ def initialize(**args)
675
+ update!(**args)
676
+ end
677
+
678
+ # Update properties of this object
679
+ def update!(**args)
680
+ @type = args[:type] if args.key?(:type)
681
+ end
682
+ end
683
+
665
684
  # Response for ListApplications.
666
685
  class ListApplicationsResponse
667
686
  include Google::Apis::Core::Hashable
@@ -1395,6 +1414,11 @@ module Google
1395
1414
  class ServiceProperties
1396
1415
  include Google::Apis::Core::Hashable
1397
1416
 
1417
+ # The functional type of a service or workload.
1418
+ # Corresponds to the JSON property `functionalType`
1419
+ # @return [Google::Apis::ApphubV1alpha::FunctionalType]
1420
+ attr_accessor :functional_type
1421
+
1398
1422
  # Output only. The service project identifier that the underlying cloud resource
1399
1423
  # resides in.
1400
1424
  # Corresponds to the JSON property `gcpProject`
@@ -1419,6 +1443,7 @@ module Google
1419
1443
 
1420
1444
  # Update properties of this object
1421
1445
  def update!(**args)
1446
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1422
1447
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1423
1448
  @location = args[:location] if args.key?(:location)
1424
1449
  @zone = args[:zone] if args.key?(:zone)
@@ -1676,6 +1701,11 @@ module Google
1676
1701
  class WorkloadProperties
1677
1702
  include Google::Apis::Core::Hashable
1678
1703
 
1704
+ # The functional type of a service or workload.
1705
+ # Corresponds to the JSON property `functionalType`
1706
+ # @return [Google::Apis::ApphubV1alpha::FunctionalType]
1707
+ attr_accessor :functional_type
1708
+
1679
1709
  # Output only. The service project identifier that the underlying cloud resource
1680
1710
  # resides in. Empty for non-cloud resources.
1681
1711
  # Corresponds to the JSON property `gcpProject`
@@ -1700,6 +1730,7 @@ module Google
1700
1730
 
1701
1731
  # Update properties of this object
1702
1732
  def update!(**args)
1733
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1703
1734
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1704
1735
  @location = args[:location] if args.key?(:location)
1705
1736
  @zone = args[:zone] if args.key?(:zone)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApphubV1alpha
18
18
  # Version of the google-apis-apphub_v1alpha gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.17.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 = "20251001"
25
+ REVISION = "20251028"
26
26
  end
27
27
  end
28
28
  end
@@ -130,6 +130,12 @@ module Google
130
130
  include Google::Apis::Core::JsonObjectSupport
131
131
  end
132
132
 
133
+ class FunctionalType
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
133
139
  class ListApplicationsResponse
134
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
141
 
@@ -462,6 +468,13 @@ module Google
462
468
  end
463
469
  end
464
470
 
471
+ class FunctionalType
472
+ # @private
473
+ class Representation < Google::Apis::Core::JsonRepresentation
474
+ property :type, as: 'type'
475
+ end
476
+ end
477
+
465
478
  class ListApplicationsResponse
466
479
  # @private
467
480
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -654,6 +667,8 @@ module Google
654
667
  class ServiceProperties
655
668
  # @private
656
669
  class Representation < Google::Apis::Core::JsonRepresentation
670
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1alpha::FunctionalType, decorator: Google::Apis::ApphubV1alpha::FunctionalType::Representation
671
+
657
672
  property :gcp_project, as: 'gcpProject'
658
673
  property :location, as: 'location'
659
674
  property :zone, as: 'zone'
@@ -723,6 +738,8 @@ module Google
723
738
  class WorkloadProperties
724
739
  # @private
725
740
  class Representation < Google::Apis::Core::JsonRepresentation
741
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1alpha::FunctionalType, decorator: Google::Apis::ApphubV1alpha::FunctionalType::Representation
742
+
726
743
  property :gcp_project, as: 'gcpProject'
727
744
  property :location, as: 'location'
728
745
  property :zone, as: 'zone'
@@ -122,8 +122,8 @@ module Google
122
122
  # @param [String] name
123
123
  # The resource that owns the locations collection, if applicable.
124
124
  # @param [Array<String>, String] extra_location_types
125
- # Optional. Unless explicitly documented otherwise, don't use this unsupported
126
- # field which is primarily intended for internal usage.
125
+ # Optional. Do not use this field. It is unsupported and is ignored unless
126
+ # explicitly documented otherwise. This is primarily for internal usage.
127
127
  # @param [String] filter
128
128
  # A filter to narrow down results to a preferred subset. The filtering language
129
129
  # 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-apphub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.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-apphub_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.16.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.17.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: