google-apis-apphub_v1 0.13.0 → 0.14.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: ec84e4d4f767348ea481be54aa667a5aa1cd6493d12ed7486c6f6308fd4bbf0d
4
- data.tar.gz: 552c7d8b1267cef2f0f9213832f626fd53d414983938dcdf57582187b4c3cb58
3
+ metadata.gz: f5bbba7a1fef7c3fced04f8b9d850d52a14569bb0ad2a2f0f2b59f18e663e32e
4
+ data.tar.gz: cbd1cd775e6aa8851fc94a0a505fbf2b51b6be192319be26dec7cea311529733
5
5
  SHA512:
6
- metadata.gz: 2a316d649ff9c2ff362a822ab6a63c828a33d06c45066adb8fab3224d67a54b3f1b28deddaa7a8bc33d19bd5380095f3694536b40bb2b430188e1a39a2a38395
7
- data.tar.gz: 7a9cfda4777137753d3427504f0eebc3d9e3916b92f98357d21cb61dc940e5708d3840374a459ee69572c11919ffafd562707b8dd40410f55007ca1f7083d94d
6
+ metadata.gz: ddef35c265076e64e81188c8c5d7371180b8a1081b3627287e2e9b3607b93cbf3f13d93c667034cf0335ce1a3eee5fab6a1bbe9498c865add0fb590647d79cbb
7
+ data.tar.gz: 11ce8f279a4e23aa4b877c317822f248596f6697dc19111879ca4abc754bda33df4ace5570f6f80dc2083e61f69f146c6e753c928e27965f987e3a28407925f7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apphub_v1
2
2
 
3
+ ### v0.14.0 (2025-11-16)
4
+
5
+ * Regenerated from discovery document revision 20251110
6
+
3
7
  ### v0.13.0 (2025-11-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20251028
@@ -551,6 +551,25 @@ module Google
551
551
  end
552
552
  end
553
553
 
554
+ # Additional metadata for a Service or Workload.
555
+ class ExtendedMetadata
556
+ include Google::Apis::Core::Hashable
557
+
558
+ # Output only. The metadata contents.
559
+ # Corresponds to the JSON property `metadataStruct`
560
+ # @return [Hash<String,Object>]
561
+ attr_accessor :metadata_struct
562
+
563
+ def initialize(**args)
564
+ update!(**args)
565
+ end
566
+
567
+ # Update properties of this object
568
+ def update!(**args)
569
+ @metadata_struct = args[:metadata_struct] if args.key?(:metadata_struct)
570
+ end
571
+ end
572
+
554
573
  # The functional type of a service or workload.
555
574
  class FunctionalType
556
575
  include Google::Apis::Core::Hashable
@@ -1169,6 +1188,25 @@ module Google
1169
1188
  end
1170
1189
  end
1171
1190
 
1191
+ # The registration type of a service.
1192
+ class RegistrationType
1193
+ include Google::Apis::Core::Hashable
1194
+
1195
+ # Output only. The registration type of a service.
1196
+ # Corresponds to the JSON property `type`
1197
+ # @return [String]
1198
+ attr_accessor :type
1199
+
1200
+ def initialize(**args)
1201
+ update!(**args)
1202
+ end
1203
+
1204
+ # Update properties of this object
1205
+ def update!(**args)
1206
+ @type = args[:type] if args.key?(:type)
1207
+ end
1208
+ end
1209
+
1172
1210
  # Scope of an application.
1173
1211
  class Scope
1174
1212
  include Google::Apis::Core::Hashable
@@ -1329,6 +1367,14 @@ module Google
1329
1367
  class ServiceProperties
1330
1368
  include Google::Apis::Core::Hashable
1331
1369
 
1370
+ # Output only. Additional metadata specific to the resource type. The key is a
1371
+ # string that identifies the type of metadata and the value is the metadata
1372
+ # contents specific to that type. Key format: `apphub.googleapis.com/`
1373
+ # metadataType``
1374
+ # Corresponds to the JSON property `extendedMetadata`
1375
+ # @return [Hash<String,Google::Apis::ApphubV1::ExtendedMetadata>]
1376
+ attr_accessor :extended_metadata
1377
+
1332
1378
  # The functional type of a service or workload.
1333
1379
  # Corresponds to the JSON property `functionalType`
1334
1380
  # @return [Google::Apis::ApphubV1::FunctionalType]
@@ -1346,6 +1392,11 @@ module Google
1346
1392
  # @return [String]
1347
1393
  attr_accessor :location
1348
1394
 
1395
+ # The registration type of a service.
1396
+ # Corresponds to the JSON property `registrationType`
1397
+ # @return [Google::Apis::ApphubV1::RegistrationType]
1398
+ attr_accessor :registration_type
1399
+
1349
1400
  # Output only. The location that the underlying resource resides in if it is
1350
1401
  # zonal, for example, us-west1-a).
1351
1402
  # Corresponds to the JSON property `zone`
@@ -1358,9 +1409,11 @@ module Google
1358
1409
 
1359
1410
  # Update properties of this object
1360
1411
  def update!(**args)
1412
+ @extended_metadata = args[:extended_metadata] if args.key?(:extended_metadata)
1361
1413
  @functional_type = args[:functional_type] if args.key?(:functional_type)
1362
1414
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1363
1415
  @location = args[:location] if args.key?(:location)
1416
+ @registration_type = args[:registration_type] if args.key?(:registration_type)
1364
1417
  @zone = args[:zone] if args.key?(:zone)
1365
1418
  end
1366
1419
  end
@@ -1608,6 +1661,14 @@ module Google
1608
1661
  class WorkloadProperties
1609
1662
  include Google::Apis::Core::Hashable
1610
1663
 
1664
+ # Output only. Additional metadata specific to the resource type. The key is a
1665
+ # string that identifies the type of metadata and the value is the metadata
1666
+ # contents specific to that type. Key format: `apphub.googleapis.com/`
1667
+ # metadataType``
1668
+ # Corresponds to the JSON property `extendedMetadata`
1669
+ # @return [Hash<String,Google::Apis::ApphubV1::ExtendedMetadata>]
1670
+ attr_accessor :extended_metadata
1671
+
1611
1672
  # The functional type of a service or workload.
1612
1673
  # Corresponds to the JSON property `functionalType`
1613
1674
  # @return [Google::Apis::ApphubV1::FunctionalType]
@@ -1637,6 +1698,7 @@ module Google
1637
1698
 
1638
1699
  # Update properties of this object
1639
1700
  def update!(**args)
1701
+ @extended_metadata = args[:extended_metadata] if args.key?(:extended_metadata)
1640
1702
  @functional_type = args[:functional_type] if args.key?(:functional_type)
1641
1703
  @gcp_project = args[:gcp_project] if args.key?(:gcp_project)
1642
1704
  @location = args[:location] if args.key?(:location)
@@ -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.13.0"
19
+ GEM_VERSION = "0.14.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 = "20251028"
25
+ REVISION = "20251110"
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 ExtendedMetadata
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class FunctionalType
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -214,6 +220,12 @@ module Google
214
220
  include Google::Apis::Core::JsonObjectSupport
215
221
  end
216
222
 
223
+ class RegistrationType
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
217
229
  class Scope
218
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
231
 
@@ -424,6 +436,13 @@ module Google
424
436
  end
425
437
  end
426
438
 
439
+ class ExtendedMetadata
440
+ # @private
441
+ class Representation < Google::Apis::Core::JsonRepresentation
442
+ hash :metadata_struct, as: 'metadataStruct'
443
+ end
444
+ end
445
+
427
446
  class FunctionalType
428
447
  # @private
429
448
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -590,6 +609,13 @@ module Google
590
609
  end
591
610
  end
592
611
 
612
+ class RegistrationType
613
+ # @private
614
+ class Representation < Google::Apis::Core::JsonRepresentation
615
+ property :type, as: 'type'
616
+ end
617
+ end
618
+
593
619
  class Scope
594
620
  # @private
595
621
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -631,10 +657,14 @@ module Google
631
657
  class ServiceProperties
632
658
  # @private
633
659
  class Representation < Google::Apis::Core::JsonRepresentation
660
+ hash :extended_metadata, as: 'extendedMetadata', class: Google::Apis::ApphubV1::ExtendedMetadata, decorator: Google::Apis::ApphubV1::ExtendedMetadata::Representation
661
+
634
662
  property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
635
663
 
636
664
  property :gcp_project, as: 'gcpProject'
637
665
  property :location, as: 'location'
666
+ property :registration_type, as: 'registrationType', class: Google::Apis::ApphubV1::RegistrationType, decorator: Google::Apis::ApphubV1::RegistrationType::Representation
667
+
638
668
  property :zone, as: 'zone'
639
669
  end
640
670
  end
@@ -701,6 +731,8 @@ module Google
701
731
  class WorkloadProperties
702
732
  # @private
703
733
  class Representation < Google::Apis::Core::JsonRepresentation
734
+ hash :extended_metadata, as: 'extendedMetadata', class: Google::Apis::ApphubV1::ExtendedMetadata, decorator: Google::Apis::ApphubV1::ExtendedMetadata::Representation
735
+
704
736
  property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
705
737
 
706
738
  property :gcp_project, as: 'gcpProject'
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.13.0
4
+ version: 0.14.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.13.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1/v0.14.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: