google-apis-apphub_v1 0.12.0 → 0.13.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: 509f9d0b9a92fa9b9f31060f5e82e0058e6e49f5a9e95ca6fb2e8b6c7ba0aa76
4
- data.tar.gz: bde0ff4b1ff4ba7618394c9ed17fef3c03af5ee8259cfd3b201ddf661a87d28a
3
+ metadata.gz: ec84e4d4f767348ea481be54aa667a5aa1cd6493d12ed7486c6f6308fd4bbf0d
4
+ data.tar.gz: 552c7d8b1267cef2f0f9213832f626fd53d414983938dcdf57582187b4c3cb58
5
5
  SHA512:
6
- metadata.gz: 442152a4b2da66024a2b8a1eb193b56b9afb930d2a9ce848956e9153985a97aa1d1555aa496e00bcb647d016f2c7704bd430ce56e388eb20d2da2cb8110edc85
7
- data.tar.gz: 49393cc95f09c0447e714a787a67fd350551345ddd24b06c59bb55566f62e6c277a1380a6c8fddeeb272679693459e0249d11a782d0afe3e4b894cda9248a9f6
6
+ metadata.gz: 2a316d649ff9c2ff362a822ab6a63c828a33d06c45066adb8fab3224d67a54b3f1b28deddaa7a8bc33d19bd5380095f3694536b40bb2b430188e1a39a2a38395
7
+ data.tar.gz: 7a9cfda4777137753d3427504f0eebc3d9e3916b92f98357d21cb61dc940e5708d3840374a459ee69572c11919ffafd562707b8dd40410f55007ca1f7083d94d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apphub_v1
2
2
 
3
+ ### v0.13.0 (2025-11-02)
4
+
5
+ * Regenerated from discovery document revision 20251028
6
+
3
7
  ### v0.12.0 (2025-10-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20251001
@@ -551,6 +551,25 @@ module Google
551
551
  end
552
552
  end
553
553
 
554
+ # The functional type of a service or workload.
555
+ class FunctionalType
556
+ include Google::Apis::Core::Hashable
557
+
558
+ # Output only. The functional type of a service or workload.
559
+ # Corresponds to the JSON property `type`
560
+ # @return [String]
561
+ attr_accessor :type
562
+
563
+ def initialize(**args)
564
+ update!(**args)
565
+ end
566
+
567
+ # Update properties of this object
568
+ def update!(**args)
569
+ @type = args[:type] if args.key?(:type)
570
+ end
571
+ end
572
+
554
573
  # Response for ListApplications.
555
574
  class ListApplicationsResponse
556
575
  include Google::Apis::Core::Hashable
@@ -1310,6 +1329,11 @@ module Google
1310
1329
  class ServiceProperties
1311
1330
  include Google::Apis::Core::Hashable
1312
1331
 
1332
+ # The functional type of a service or workload.
1333
+ # Corresponds to the JSON property `functionalType`
1334
+ # @return [Google::Apis::ApphubV1::FunctionalType]
1335
+ attr_accessor :functional_type
1336
+
1313
1337
  # Output only. The service project identifier that the underlying cloud resource
1314
1338
  # resides in.
1315
1339
  # Corresponds to the JSON property `gcpProject`
@@ -1334,6 +1358,7 @@ module Google
1334
1358
 
1335
1359
  # Update properties of this object
1336
1360
  def update!(**args)
1361
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1337
1362
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1338
1363
  @location = args[:location] if args.key?(:location)
1339
1364
  @zone = args[:zone] if args.key?(:zone)
@@ -1583,6 +1608,11 @@ module Google
1583
1608
  class WorkloadProperties
1584
1609
  include Google::Apis::Core::Hashable
1585
1610
 
1611
+ # The functional type of a service or workload.
1612
+ # Corresponds to the JSON property `functionalType`
1613
+ # @return [Google::Apis::ApphubV1::FunctionalType]
1614
+ attr_accessor :functional_type
1615
+
1586
1616
  # Output only. The service project identifier that the underlying cloud resource
1587
1617
  # resides in. Empty for non-cloud resources.
1588
1618
  # Corresponds to the JSON property `gcpProject`
@@ -1607,6 +1637,7 @@ module Google
1607
1637
 
1608
1638
  # Update properties of this object
1609
1639
  def update!(**args)
1640
+ @functional_type = args[:functional_type] if args.key?(:functional_type)
1610
1641
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1611
1642
  @location = args[:location] if args.key?(:location)
1612
1643
  @zone = args[:zone] if args.key?(:zone)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApphubV1
18
18
  # Version of the google-apis-apphub_v1 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.13.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
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class FunctionalType
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class ListApplicationsResponse
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -418,6 +424,13 @@ module Google
418
424
  end
419
425
  end
420
426
 
427
+ class FunctionalType
428
+ # @private
429
+ class Representation < Google::Apis::Core::JsonRepresentation
430
+ property :type, as: 'type'
431
+ end
432
+ end
433
+
421
434
  class ListApplicationsResponse
422
435
  # @private
423
436
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -618,6 +631,8 @@ module Google
618
631
  class ServiceProperties
619
632
  # @private
620
633
  class Representation < Google::Apis::Core::JsonRepresentation
634
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
635
+
621
636
  property :gcp_project, as: 'gcpProject'
622
637
  property :location, as: 'location'
623
638
  property :zone, as: 'zone'
@@ -686,6 +701,8 @@ module Google
686
701
  class WorkloadProperties
687
702
  # @private
688
703
  class Representation < Google::Apis::Core::JsonRepresentation
704
+ property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
705
+
689
706
  property :gcp_project, as: 'gcpProject'
690
707
  property :location, as: 'location'
691
708
  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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1/v0.12.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1/v0.13.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1
62
62
  rdoc_options: []
63
63
  require_paths: