google-apis-apphub_v1 0.12.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5bbba7a1fef7c3fced04f8b9d850d52a14569bb0ad2a2f0f2b59f18e663e32e
|
|
4
|
+
data.tar.gz: cbd1cd775e6aa8851fc94a0a505fbf2b51b6be192319be26dec7cea311529733
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddef35c265076e64e81188c8c5d7371180b8a1081b3627287e2e9b3607b93cbf3f13d93c667034cf0335ce1a3eee5fab6a1bbe9498c865add0fb590647d79cbb
|
|
7
|
+
data.tar.gz: 11ce8f279a4e23aa4b877c317822f248596f6697dc19111879ca4abc754bda33df4ace5570f6f80dc2083e61f69f146c6e753c928e27965f987e3a28407925f7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.13.0 (2025-11-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251028
|
|
10
|
+
|
|
3
11
|
### v0.12.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251001
|
|
@@ -551,6 +551,44 @@ 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
|
+
|
|
573
|
+
# The functional type of a service or workload.
|
|
574
|
+
class FunctionalType
|
|
575
|
+
include Google::Apis::Core::Hashable
|
|
576
|
+
|
|
577
|
+
# Output only. The functional type of a service or workload.
|
|
578
|
+
# Corresponds to the JSON property `type`
|
|
579
|
+
# @return [String]
|
|
580
|
+
attr_accessor :type
|
|
581
|
+
|
|
582
|
+
def initialize(**args)
|
|
583
|
+
update!(**args)
|
|
584
|
+
end
|
|
585
|
+
|
|
586
|
+
# Update properties of this object
|
|
587
|
+
def update!(**args)
|
|
588
|
+
@type = args[:type] if args.key?(:type)
|
|
589
|
+
end
|
|
590
|
+
end
|
|
591
|
+
|
|
554
592
|
# Response for ListApplications.
|
|
555
593
|
class ListApplicationsResponse
|
|
556
594
|
include Google::Apis::Core::Hashable
|
|
@@ -1150,6 +1188,25 @@ module Google
|
|
|
1150
1188
|
end
|
|
1151
1189
|
end
|
|
1152
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
|
+
|
|
1153
1210
|
# Scope of an application.
|
|
1154
1211
|
class Scope
|
|
1155
1212
|
include Google::Apis::Core::Hashable
|
|
@@ -1310,6 +1367,19 @@ module Google
|
|
|
1310
1367
|
class ServiceProperties
|
|
1311
1368
|
include Google::Apis::Core::Hashable
|
|
1312
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
|
+
|
|
1378
|
+
# The functional type of a service or workload.
|
|
1379
|
+
# Corresponds to the JSON property `functionalType`
|
|
1380
|
+
# @return [Google::Apis::ApphubV1::FunctionalType]
|
|
1381
|
+
attr_accessor :functional_type
|
|
1382
|
+
|
|
1313
1383
|
# Output only. The service project identifier that the underlying cloud resource
|
|
1314
1384
|
# resides in.
|
|
1315
1385
|
# Corresponds to the JSON property `gcpProject`
|
|
@@ -1322,6 +1392,11 @@ module Google
|
|
|
1322
1392
|
# @return [String]
|
|
1323
1393
|
attr_accessor :location
|
|
1324
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
|
+
|
|
1325
1400
|
# Output only. The location that the underlying resource resides in if it is
|
|
1326
1401
|
# zonal, for example, us-west1-a).
|
|
1327
1402
|
# Corresponds to the JSON property `zone`
|
|
@@ -1334,8 +1409,11 @@ module Google
|
|
|
1334
1409
|
|
|
1335
1410
|
# Update properties of this object
|
|
1336
1411
|
def update!(**args)
|
|
1412
|
+
@extended_metadata = args[:extended_metadata] if args.key?(:extended_metadata)
|
|
1413
|
+
@functional_type = args[:functional_type] if args.key?(:functional_type)
|
|
1337
1414
|
@gcp_project = args[:gcp_project] if args.key?(:gcp_project)
|
|
1338
1415
|
@location = args[:location] if args.key?(:location)
|
|
1416
|
+
@registration_type = args[:registration_type] if args.key?(:registration_type)
|
|
1339
1417
|
@zone = args[:zone] if args.key?(:zone)
|
|
1340
1418
|
end
|
|
1341
1419
|
end
|
|
@@ -1583,6 +1661,19 @@ module Google
|
|
|
1583
1661
|
class WorkloadProperties
|
|
1584
1662
|
include Google::Apis::Core::Hashable
|
|
1585
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
|
+
|
|
1672
|
+
# The functional type of a service or workload.
|
|
1673
|
+
# Corresponds to the JSON property `functionalType`
|
|
1674
|
+
# @return [Google::Apis::ApphubV1::FunctionalType]
|
|
1675
|
+
attr_accessor :functional_type
|
|
1676
|
+
|
|
1586
1677
|
# Output only. The service project identifier that the underlying cloud resource
|
|
1587
1678
|
# resides in. Empty for non-cloud resources.
|
|
1588
1679
|
# Corresponds to the JSON property `gcpProject`
|
|
@@ -1607,6 +1698,8 @@ module Google
|
|
|
1607
1698
|
|
|
1608
1699
|
# Update properties of this object
|
|
1609
1700
|
def update!(**args)
|
|
1701
|
+
@extended_metadata = args[:extended_metadata] if args.key?(:extended_metadata)
|
|
1702
|
+
@functional_type = args[:functional_type] if args.key?(:functional_type)
|
|
1610
1703
|
@gcp_project = args[:gcp_project] if args.key?(:gcp_project)
|
|
1611
1704
|
@location = args[:location] if args.key?(:location)
|
|
1612
1705
|
@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.
|
|
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 = "
|
|
25
|
+
REVISION = "20251110"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -112,6 +112,18 @@ 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
|
+
|
|
121
|
+
class FunctionalType
|
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
|
+
|
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
125
|
+
end
|
|
126
|
+
|
|
115
127
|
class ListApplicationsResponse
|
|
116
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
117
129
|
|
|
@@ -208,6 +220,12 @@ module Google
|
|
|
208
220
|
include Google::Apis::Core::JsonObjectSupport
|
|
209
221
|
end
|
|
210
222
|
|
|
223
|
+
class RegistrationType
|
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
225
|
+
|
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
227
|
+
end
|
|
228
|
+
|
|
211
229
|
class Scope
|
|
212
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
213
231
|
|
|
@@ -418,6 +436,20 @@ module Google
|
|
|
418
436
|
end
|
|
419
437
|
end
|
|
420
438
|
|
|
439
|
+
class ExtendedMetadata
|
|
440
|
+
# @private
|
|
441
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
442
|
+
hash :metadata_struct, as: 'metadataStruct'
|
|
443
|
+
end
|
|
444
|
+
end
|
|
445
|
+
|
|
446
|
+
class FunctionalType
|
|
447
|
+
# @private
|
|
448
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
449
|
+
property :type, as: 'type'
|
|
450
|
+
end
|
|
451
|
+
end
|
|
452
|
+
|
|
421
453
|
class ListApplicationsResponse
|
|
422
454
|
# @private
|
|
423
455
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -577,6 +609,13 @@ module Google
|
|
|
577
609
|
end
|
|
578
610
|
end
|
|
579
611
|
|
|
612
|
+
class RegistrationType
|
|
613
|
+
# @private
|
|
614
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
615
|
+
property :type, as: 'type'
|
|
616
|
+
end
|
|
617
|
+
end
|
|
618
|
+
|
|
580
619
|
class Scope
|
|
581
620
|
# @private
|
|
582
621
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -618,8 +657,14 @@ module Google
|
|
|
618
657
|
class ServiceProperties
|
|
619
658
|
# @private
|
|
620
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
|
+
|
|
662
|
+
property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
|
|
663
|
+
|
|
621
664
|
property :gcp_project, as: 'gcpProject'
|
|
622
665
|
property :location, as: 'location'
|
|
666
|
+
property :registration_type, as: 'registrationType', class: Google::Apis::ApphubV1::RegistrationType, decorator: Google::Apis::ApphubV1::RegistrationType::Representation
|
|
667
|
+
|
|
623
668
|
property :zone, as: 'zone'
|
|
624
669
|
end
|
|
625
670
|
end
|
|
@@ -686,6 +731,10 @@ module Google
|
|
|
686
731
|
class WorkloadProperties
|
|
687
732
|
# @private
|
|
688
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
|
+
|
|
736
|
+
property :functional_type, as: 'functionalType', class: Google::Apis::ApphubV1::FunctionalType, decorator: Google::Apis::ApphubV1::FunctionalType::Representation
|
|
737
|
+
|
|
689
738
|
property :gcp_project, as: 'gcpProject'
|
|
690
739
|
property :location, as: 'location'
|
|
691
740
|
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.
|
|
126
|
-
#
|
|
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.
|
|
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.
|
|
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:
|