google-apis-apphub_v1alpha 0.9.0 → 0.10.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: fe2312b3981571ce4d9978d14f0c73706d5206190f3e3bc3abd0ad374a40175c
|
4
|
+
data.tar.gz: b5eb45d1dc9eb79c29ac390a9ebf033a8fae76e16ac12604edbe844476a9dd0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1118a8ab23ab1ab8a488c86d2d059d33306f5bbf74ae3bcfd3850f0a7ecccdc0682d20cbf2b641e24f9359586d0ce9d5782e08290d2c77451ed3440cdce36c1e
|
7
|
+
data.tar.gz: b24269c4607e3655d2df0bcf5929e04019cfce08685ac567e7cc6d00588e6bce037970bebac460d325055bd4412d8e58b11f3ce84e02bba041d68f24c5cb6bb6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-apphub_v1alpha
|
2
2
|
|
3
|
+
### v0.10.0 (2025-01-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250115
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.9.0 (2024-12-02)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241008
|
@@ -95,53 +95,6 @@ module Google
|
|
95
95
|
end
|
96
96
|
end
|
97
97
|
|
98
|
-
# Provides the mapping of a cloud asset to a direct physical location or to a
|
99
|
-
# proxy that defines the location on its behalf.
|
100
|
-
class AssetLocation
|
101
|
-
include Google::Apis::Core::Hashable
|
102
|
-
|
103
|
-
# Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants
|
104
|
-
# that use CCFE RMS for storing resource metadata.
|
105
|
-
# Corresponds to the JSON property `ccfeRmsPath`
|
106
|
-
# @return [String]
|
107
|
-
attr_accessor :ccfe_rms_path
|
108
|
-
|
109
|
-
# Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
|
110
|
-
# of the region at the time of asset creation.
|
111
|
-
# Corresponds to the JSON property `expected`
|
112
|
-
# @return [Google::Apis::ApphubV1alpha::IsolationExpectations]
|
113
|
-
attr_accessor :expected
|
114
|
-
|
115
|
-
# Defines extra parameters required for specific asset types.
|
116
|
-
# Corresponds to the JSON property `extraParameters`
|
117
|
-
# @return [Array<Google::Apis::ApphubV1alpha::ExtraParameter>]
|
118
|
-
attr_accessor :extra_parameters
|
119
|
-
|
120
|
-
# Contains all kinds of physical location definitions for this asset.
|
121
|
-
# Corresponds to the JSON property `locationData`
|
122
|
-
# @return [Array<Google::Apis::ApphubV1alpha::LocationData>]
|
123
|
-
attr_accessor :location_data
|
124
|
-
|
125
|
-
# Defines parents assets if any in order to allow later generation of
|
126
|
-
# child_asset_location data via child assets.
|
127
|
-
# Corresponds to the JSON property `parentAsset`
|
128
|
-
# @return [Array<Google::Apis::ApphubV1alpha::CloudAsset>]
|
129
|
-
attr_accessor :parent_asset
|
130
|
-
|
131
|
-
def initialize(**args)
|
132
|
-
update!(**args)
|
133
|
-
end
|
134
|
-
|
135
|
-
# Update properties of this object
|
136
|
-
def update!(**args)
|
137
|
-
@ccfe_rms_path = args[:ccfe_rms_path] if args.key?(:ccfe_rms_path)
|
138
|
-
@expected = args[:expected] if args.key?(:expected)
|
139
|
-
@extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
|
140
|
-
@location_data = args[:location_data] if args.key?(:location_data)
|
141
|
-
@parent_asset = args[:parent_asset] if args.key?(:parent_asset)
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
98
|
# Consumer provided attributes.
|
146
99
|
class Attributes
|
147
100
|
include Google::Apis::Core::Hashable
|
@@ -357,26 +310,6 @@ module Google
|
|
357
310
|
end
|
358
311
|
end
|
359
312
|
|
360
|
-
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
361
|
-
# guide#data-metadata-placement-and-failure-domains
|
362
|
-
class BlobstoreLocation
|
363
|
-
include Google::Apis::Core::Hashable
|
364
|
-
|
365
|
-
#
|
366
|
-
# Corresponds to the JSON property `policyId`
|
367
|
-
# @return [Array<String>]
|
368
|
-
attr_accessor :policy_id
|
369
|
-
|
370
|
-
def initialize(**args)
|
371
|
-
update!(**args)
|
372
|
-
end
|
373
|
-
|
374
|
-
# Update properties of this object
|
375
|
-
def update!(**args)
|
376
|
-
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
377
|
-
end
|
378
|
-
end
|
379
|
-
|
380
313
|
# The request message for Operations.CancelOperation.
|
381
314
|
class CancelOperationRequest
|
382
315
|
include Google::Apis::Core::Hashable
|
@@ -409,50 +342,6 @@ module Google
|
|
409
342
|
end
|
410
343
|
end
|
411
344
|
|
412
|
-
#
|
413
|
-
class CloudAsset
|
414
|
-
include Google::Apis::Core::Hashable
|
415
|
-
|
416
|
-
#
|
417
|
-
# Corresponds to the JSON property `assetName`
|
418
|
-
# @return [String]
|
419
|
-
attr_accessor :asset_name
|
420
|
-
|
421
|
-
#
|
422
|
-
# Corresponds to the JSON property `assetType`
|
423
|
-
# @return [String]
|
424
|
-
attr_accessor :asset_type
|
425
|
-
|
426
|
-
def initialize(**args)
|
427
|
-
update!(**args)
|
428
|
-
end
|
429
|
-
|
430
|
-
# Update properties of this object
|
431
|
-
def update!(**args)
|
432
|
-
@asset_name = args[:asset_name] if args.key?(:asset_name)
|
433
|
-
@asset_type = args[:asset_type] if args.key?(:asset_type)
|
434
|
-
end
|
435
|
-
end
|
436
|
-
|
437
|
-
#
|
438
|
-
class CloudAssetComposition
|
439
|
-
include Google::Apis::Core::Hashable
|
440
|
-
|
441
|
-
#
|
442
|
-
# Corresponds to the JSON property `childAsset`
|
443
|
-
# @return [Array<Google::Apis::ApphubV1alpha::CloudAsset>]
|
444
|
-
attr_accessor :child_asset
|
445
|
-
|
446
|
-
def initialize(**args)
|
447
|
-
update!(**args)
|
448
|
-
end
|
449
|
-
|
450
|
-
# Update properties of this object
|
451
|
-
def update!(**args)
|
452
|
-
@child_asset = args[:child_asset] if args.key?(:child_asset)
|
453
|
-
end
|
454
|
-
end
|
455
|
-
|
456
345
|
# Contact information of stakeholders.
|
457
346
|
class ContactInfo
|
458
347
|
include Google::Apis::Core::Hashable
|
@@ -545,25 +434,6 @@ module Google
|
|
545
434
|
end
|
546
435
|
end
|
547
436
|
|
548
|
-
#
|
549
|
-
class DirectLocationAssignment
|
550
|
-
include Google::Apis::Core::Hashable
|
551
|
-
|
552
|
-
#
|
553
|
-
# Corresponds to the JSON property `location`
|
554
|
-
# @return [Array<Google::Apis::ApphubV1alpha::LocationAssignment>]
|
555
|
-
attr_accessor :location
|
556
|
-
|
557
|
-
def initialize(**args)
|
558
|
-
update!(**args)
|
559
|
-
end
|
560
|
-
|
561
|
-
# Update properties of this object
|
562
|
-
def update!(**args)
|
563
|
-
@location = args[:location] if args.key?(:location)
|
564
|
-
end
|
565
|
-
end
|
566
|
-
|
567
437
|
# DiscoveredService is a network or API interface that exposes some
|
568
438
|
# functionality to clients for consumption over the network. A discovered
|
569
439
|
# service can be registered to a App Hub service.
|
@@ -730,26 +600,6 @@ module Google
|
|
730
600
|
end
|
731
601
|
end
|
732
602
|
|
733
|
-
# Defines parameters that should only be used for specific asset types.
|
734
|
-
class ExtraParameter
|
735
|
-
include Google::Apis::Core::Hashable
|
736
|
-
|
737
|
-
# To be used for specifying the intended distribution of regional compute.
|
738
|
-
# googleapis.com/InstanceGroupManager instances
|
739
|
-
# Corresponds to the JSON property `regionalMigDistributionPolicy`
|
740
|
-
# @return [Google::Apis::ApphubV1alpha::RegionalMigDistributionPolicy]
|
741
|
-
attr_accessor :regional_mig_distribution_policy
|
742
|
-
|
743
|
-
def initialize(**args)
|
744
|
-
update!(**args)
|
745
|
-
end
|
746
|
-
|
747
|
-
# Update properties of this object
|
748
|
-
def update!(**args)
|
749
|
-
@regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
|
750
|
-
end
|
751
|
-
end
|
752
|
-
|
753
603
|
# Response for FindUnregisteredServices.
|
754
604
|
class FindUnregisteredServicesResponse
|
755
605
|
include Google::Apis::Core::Hashable
|
@@ -812,70 +662,6 @@ module Google
|
|
812
662
|
end
|
813
663
|
end
|
814
664
|
|
815
|
-
#
|
816
|
-
class IsolationExpectations
|
817
|
-
include Google::Apis::Core::Hashable
|
818
|
-
|
819
|
-
# Explicit overrides for ZI and ZS requirements to be used for resources that
|
820
|
-
# should be excluded from ZI/ZS verification logic.
|
821
|
-
# Corresponds to the JSON property `requirementOverride`
|
822
|
-
# @return [Google::Apis::ApphubV1alpha::RequirementOverride]
|
823
|
-
attr_accessor :requirement_override
|
824
|
-
|
825
|
-
#
|
826
|
-
# Corresponds to the JSON property `ziOrgPolicy`
|
827
|
-
# @return [String]
|
828
|
-
attr_accessor :zi_org_policy
|
829
|
-
|
830
|
-
#
|
831
|
-
# Corresponds to the JSON property `ziRegionPolicy`
|
832
|
-
# @return [String]
|
833
|
-
attr_accessor :zi_region_policy
|
834
|
-
|
835
|
-
#
|
836
|
-
# Corresponds to the JSON property `ziRegionState`
|
837
|
-
# @return [String]
|
838
|
-
attr_accessor :zi_region_state
|
839
|
-
|
840
|
-
# Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
|
841
|
-
# for setting ZI expectations as per go/zicy-publish-physical-location.
|
842
|
-
# Corresponds to the JSON property `zoneIsolation`
|
843
|
-
# @return [String]
|
844
|
-
attr_accessor :zone_isolation
|
845
|
-
|
846
|
-
# Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
|
847
|
-
# expectations as per go/zicy-publish-physical-location.
|
848
|
-
# Corresponds to the JSON property `zoneSeparation`
|
849
|
-
# @return [String]
|
850
|
-
attr_accessor :zone_separation
|
851
|
-
|
852
|
-
#
|
853
|
-
# Corresponds to the JSON property `zsOrgPolicy`
|
854
|
-
# @return [String]
|
855
|
-
attr_accessor :zs_org_policy
|
856
|
-
|
857
|
-
#
|
858
|
-
# Corresponds to the JSON property `zsRegionState`
|
859
|
-
# @return [String]
|
860
|
-
attr_accessor :zs_region_state
|
861
|
-
|
862
|
-
def initialize(**args)
|
863
|
-
update!(**args)
|
864
|
-
end
|
865
|
-
|
866
|
-
# Update properties of this object
|
867
|
-
def update!(**args)
|
868
|
-
@requirement_override = args[:requirement_override] if args.key?(:requirement_override)
|
869
|
-
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
870
|
-
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
871
|
-
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
872
|
-
@zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
|
873
|
-
@zone_separation = args[:zone_separation] if args.key?(:zone_separation)
|
874
|
-
@zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
|
875
|
-
@zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
|
876
|
-
end
|
877
|
-
end
|
878
|
-
|
879
665
|
# Response for ListApplications.
|
880
666
|
class ListApplicationsResponse
|
881
667
|
include Google::Apis::Core::Hashable
|
@@ -1159,82 +945,6 @@ module Google
|
|
1159
945
|
end
|
1160
946
|
end
|
1161
947
|
|
1162
|
-
#
|
1163
|
-
class LocationAssignment
|
1164
|
-
include Google::Apis::Core::Hashable
|
1165
|
-
|
1166
|
-
#
|
1167
|
-
# Corresponds to the JSON property `location`
|
1168
|
-
# @return [String]
|
1169
|
-
attr_accessor :location
|
1170
|
-
|
1171
|
-
#
|
1172
|
-
# Corresponds to the JSON property `locationType`
|
1173
|
-
# @return [String]
|
1174
|
-
attr_accessor :location_type
|
1175
|
-
|
1176
|
-
def initialize(**args)
|
1177
|
-
update!(**args)
|
1178
|
-
end
|
1179
|
-
|
1180
|
-
# Update properties of this object
|
1181
|
-
def update!(**args)
|
1182
|
-
@location = args[:location] if args.key?(:location)
|
1183
|
-
@location_type = args[:location_type] if args.key?(:location_type)
|
1184
|
-
end
|
1185
|
-
end
|
1186
|
-
|
1187
|
-
#
|
1188
|
-
class LocationData
|
1189
|
-
include Google::Apis::Core::Hashable
|
1190
|
-
|
1191
|
-
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
1192
|
-
# guide#data-metadata-placement-and-failure-domains
|
1193
|
-
# Corresponds to the JSON property `blobstoreLocation`
|
1194
|
-
# @return [Google::Apis::ApphubV1alpha::BlobstoreLocation]
|
1195
|
-
attr_accessor :blobstore_location
|
1196
|
-
|
1197
|
-
#
|
1198
|
-
# Corresponds to the JSON property `childAssetLocation`
|
1199
|
-
# @return [Google::Apis::ApphubV1alpha::CloudAssetComposition]
|
1200
|
-
attr_accessor :child_asset_location
|
1201
|
-
|
1202
|
-
#
|
1203
|
-
# Corresponds to the JSON property `directLocation`
|
1204
|
-
# @return [Google::Apis::ApphubV1alpha::DirectLocationAssignment]
|
1205
|
-
attr_accessor :direct_location
|
1206
|
-
|
1207
|
-
#
|
1208
|
-
# Corresponds to the JSON property `gcpProjectProxy`
|
1209
|
-
# @return [Google::Apis::ApphubV1alpha::TenantProjectProxy]
|
1210
|
-
attr_accessor :gcp_project_proxy
|
1211
|
-
|
1212
|
-
# Message describing that the location of the customer resource is tied to
|
1213
|
-
# placer allocations
|
1214
|
-
# Corresponds to the JSON property `placerLocation`
|
1215
|
-
# @return [Google::Apis::ApphubV1alpha::PlacerLocation]
|
1216
|
-
attr_accessor :placer_location
|
1217
|
-
|
1218
|
-
#
|
1219
|
-
# Corresponds to the JSON property `spannerLocation`
|
1220
|
-
# @return [Google::Apis::ApphubV1alpha::SpannerLocation]
|
1221
|
-
attr_accessor :spanner_location
|
1222
|
-
|
1223
|
-
def initialize(**args)
|
1224
|
-
update!(**args)
|
1225
|
-
end
|
1226
|
-
|
1227
|
-
# Update properties of this object
|
1228
|
-
def update!(**args)
|
1229
|
-
@blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
|
1230
|
-
@child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
|
1231
|
-
@direct_location = args[:direct_location] if args.key?(:direct_location)
|
1232
|
-
@gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
|
1233
|
-
@placer_location = args[:placer_location] if args.key?(:placer_location)
|
1234
|
-
@spanner_location = args[:spanner_location] if args.key?(:spanner_location)
|
1235
|
-
end
|
1236
|
-
end
|
1237
|
-
|
1238
948
|
# Response for LookupDiscoveredService.
|
1239
949
|
class LookupDiscoveredServiceResponse
|
1240
950
|
include Google::Apis::Core::Hashable
|
@@ -1383,9 +1093,9 @@ module Google
|
|
1383
1093
|
attr_accessor :end_time
|
1384
1094
|
|
1385
1095
|
# Output only. Identifies whether the user has requested cancellation of the
|
1386
|
-
# operation. Operations that have been cancelled successfully have
|
1387
|
-
# error value with a google.rpc.Status.code of 1,
|
1388
|
-
# CANCELLED`.
|
1096
|
+
# operation. Operations that have been cancelled successfully have google.
|
1097
|
+
# longrunning.Operation.error value with a google.rpc.Status.code of 1,
|
1098
|
+
# corresponding to `Code.CANCELLED`.
|
1389
1099
|
# Corresponds to the JSON property `requestedCancellation`
|
1390
1100
|
# @return [Boolean]
|
1391
1101
|
attr_accessor :requested_cancellation
|
@@ -1422,27 +1132,6 @@ module Google
|
|
1422
1132
|
end
|
1423
1133
|
end
|
1424
1134
|
|
1425
|
-
# Message describing that the location of the customer resource is tied to
|
1426
|
-
# placer allocations
|
1427
|
-
class PlacerLocation
|
1428
|
-
include Google::Apis::Core::Hashable
|
1429
|
-
|
1430
|
-
# Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
|
1431
|
-
# root/my-dir")
|
1432
|
-
# Corresponds to the JSON property `placerConfig`
|
1433
|
-
# @return [String]
|
1434
|
-
attr_accessor :placer_config
|
1435
|
-
|
1436
|
-
def initialize(**args)
|
1437
|
-
update!(**args)
|
1438
|
-
end
|
1439
|
-
|
1440
|
-
# Update properties of this object
|
1441
|
-
def update!(**args)
|
1442
|
-
@placer_config = args[:placer_config] if args.key?(:placer_config)
|
1443
|
-
end
|
1444
|
-
end
|
1445
|
-
|
1446
1135
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1447
1136
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
1448
1137
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -1538,58 +1227,6 @@ module Google
|
|
1538
1227
|
end
|
1539
1228
|
end
|
1540
1229
|
|
1541
|
-
# To be used for specifying the intended distribution of regional compute.
|
1542
|
-
# googleapis.com/InstanceGroupManager instances
|
1543
|
-
class RegionalMigDistributionPolicy
|
1544
|
-
include Google::Apis::Core::Hashable
|
1545
|
-
|
1546
|
-
# The shape in which the group converges around distribution of resources.
|
1547
|
-
# Instance of proto2 enum
|
1548
|
-
# Corresponds to the JSON property `targetShape`
|
1549
|
-
# @return [Fixnum]
|
1550
|
-
attr_accessor :target_shape
|
1551
|
-
|
1552
|
-
# Cloud zones used by regional MIG to create instances.
|
1553
|
-
# Corresponds to the JSON property `zones`
|
1554
|
-
# @return [Array<Google::Apis::ApphubV1alpha::ZoneConfiguration>]
|
1555
|
-
attr_accessor :zones
|
1556
|
-
|
1557
|
-
def initialize(**args)
|
1558
|
-
update!(**args)
|
1559
|
-
end
|
1560
|
-
|
1561
|
-
# Update properties of this object
|
1562
|
-
def update!(**args)
|
1563
|
-
@target_shape = args[:target_shape] if args.key?(:target_shape)
|
1564
|
-
@zones = args[:zones] if args.key?(:zones)
|
1565
|
-
end
|
1566
|
-
end
|
1567
|
-
|
1568
|
-
#
|
1569
|
-
class RequirementOverride
|
1570
|
-
include Google::Apis::Core::Hashable
|
1571
|
-
|
1572
|
-
#
|
1573
|
-
# Corresponds to the JSON property `ziOverride`
|
1574
|
-
# @return [String]
|
1575
|
-
attr_accessor :zi_override
|
1576
|
-
|
1577
|
-
#
|
1578
|
-
# Corresponds to the JSON property `zsOverride`
|
1579
|
-
# @return [String]
|
1580
|
-
attr_accessor :zs_override
|
1581
|
-
|
1582
|
-
def initialize(**args)
|
1583
|
-
update!(**args)
|
1584
|
-
end
|
1585
|
-
|
1586
|
-
# Update properties of this object
|
1587
|
-
def update!(**args)
|
1588
|
-
@zi_override = args[:zi_override] if args.key?(:zi_override)
|
1589
|
-
@zs_override = args[:zs_override] if args.key?(:zs_override)
|
1590
|
-
end
|
1591
|
-
end
|
1592
|
-
|
1593
1230
|
# Scope of an application.
|
1594
1231
|
class Scope
|
1595
1232
|
include Google::Apis::Core::Hashable
|
@@ -1861,32 +1498,6 @@ module Google
|
|
1861
1498
|
end
|
1862
1499
|
end
|
1863
1500
|
|
1864
|
-
#
|
1865
|
-
class SpannerLocation
|
1866
|
-
include Google::Apis::Core::Hashable
|
1867
|
-
|
1868
|
-
# Set of backups used by the resource with name in the same format as what is
|
1869
|
-
# available at http://table/spanner_automon.backup_metadata
|
1870
|
-
# Corresponds to the JSON property `backupName`
|
1871
|
-
# @return [Array<String>]
|
1872
|
-
attr_accessor :backup_name
|
1873
|
-
|
1874
|
-
# Set of databases used by the resource in format /span//
|
1875
|
-
# Corresponds to the JSON property `dbName`
|
1876
|
-
# @return [Array<String>]
|
1877
|
-
attr_accessor :db_name
|
1878
|
-
|
1879
|
-
def initialize(**args)
|
1880
|
-
update!(**args)
|
1881
|
-
end
|
1882
|
-
|
1883
|
-
# Update properties of this object
|
1884
|
-
def update!(**args)
|
1885
|
-
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
1886
|
-
@db_name = args[:db_name] if args.key?(:db_name)
|
1887
|
-
end
|
1888
|
-
end
|
1889
|
-
|
1890
1501
|
# The `Status` type defines a logical error model that is suitable for different
|
1891
1502
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1892
1503
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1926,25 +1537,6 @@ module Google
|
|
1926
1537
|
end
|
1927
1538
|
end
|
1928
1539
|
|
1929
|
-
#
|
1930
|
-
class TenantProjectProxy
|
1931
|
-
include Google::Apis::Core::Hashable
|
1932
|
-
|
1933
|
-
#
|
1934
|
-
# Corresponds to the JSON property `projectNumbers`
|
1935
|
-
# @return [Array<String>]
|
1936
|
-
attr_accessor :project_numbers
|
1937
|
-
|
1938
|
-
def initialize(**args)
|
1939
|
-
update!(**args)
|
1940
|
-
end
|
1941
|
-
|
1942
|
-
# Update properties of this object
|
1943
|
-
def update!(**args)
|
1944
|
-
@project_numbers = args[:project_numbers] if args.key?(:project_numbers)
|
1945
|
-
end
|
1946
|
-
end
|
1947
|
-
|
1948
1540
|
# Request message for `TestIamPermissions` method.
|
1949
1541
|
class TestIamPermissionsRequest
|
1950
1542
|
include Google::Apis::Core::Hashable
|
@@ -2124,25 +1716,6 @@ module Google
|
|
2124
1716
|
@uri = args[:uri] if args.key?(:uri)
|
2125
1717
|
end
|
2126
1718
|
end
|
2127
|
-
|
2128
|
-
#
|
2129
|
-
class ZoneConfiguration
|
2130
|
-
include Google::Apis::Core::Hashable
|
2131
|
-
|
2132
|
-
#
|
2133
|
-
# Corresponds to the JSON property `zone`
|
2134
|
-
# @return [String]
|
2135
|
-
attr_accessor :zone
|
2136
|
-
|
2137
|
-
def initialize(**args)
|
2138
|
-
update!(**args)
|
2139
|
-
end
|
2140
|
-
|
2141
|
-
# Update properties of this object
|
2142
|
-
def update!(**args)
|
2143
|
-
@zone = args[:zone] if args.key?(:zone)
|
2144
|
-
end
|
2145
|
-
end
|
2146
1719
|
end
|
2147
1720
|
end
|
2148
1721
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250115"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,12 +28,6 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
-
class AssetLocation
|
32
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
-
|
34
|
-
include Google::Apis::Core::JsonObjectSupport
|
35
|
-
end
|
36
|
-
|
37
31
|
class Attributes
|
38
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
33
|
|
@@ -58,12 +52,6 @@ module Google
|
|
58
52
|
include Google::Apis::Core::JsonObjectSupport
|
59
53
|
end
|
60
54
|
|
61
|
-
class BlobstoreLocation
|
62
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
-
|
64
|
-
include Google::Apis::Core::JsonObjectSupport
|
65
|
-
end
|
66
|
-
|
67
55
|
class CancelOperationRequest
|
68
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
57
|
|
@@ -76,18 +64,6 @@ module Google
|
|
76
64
|
include Google::Apis::Core::JsonObjectSupport
|
77
65
|
end
|
78
66
|
|
79
|
-
class CloudAsset
|
80
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
-
|
82
|
-
include Google::Apis::Core::JsonObjectSupport
|
83
|
-
end
|
84
|
-
|
85
|
-
class CloudAssetComposition
|
86
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
-
|
88
|
-
include Google::Apis::Core::JsonObjectSupport
|
89
|
-
end
|
90
|
-
|
91
67
|
class ContactInfo
|
92
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
69
|
|
@@ -112,12 +88,6 @@ module Google
|
|
112
88
|
include Google::Apis::Core::JsonObjectSupport
|
113
89
|
end
|
114
90
|
|
115
|
-
class DirectLocationAssignment
|
116
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
-
|
118
|
-
include Google::Apis::Core::JsonObjectSupport
|
119
|
-
end
|
120
|
-
|
121
91
|
class DiscoveredService
|
122
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
93
|
|
@@ -148,12 +118,6 @@ module Google
|
|
148
118
|
include Google::Apis::Core::JsonObjectSupport
|
149
119
|
end
|
150
120
|
|
151
|
-
class ExtraParameter
|
152
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
-
|
154
|
-
include Google::Apis::Core::JsonObjectSupport
|
155
|
-
end
|
156
|
-
|
157
121
|
class FindUnregisteredServicesResponse
|
158
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
123
|
|
@@ -166,12 +130,6 @@ module Google
|
|
166
130
|
include Google::Apis::Core::JsonObjectSupport
|
167
131
|
end
|
168
132
|
|
169
|
-
class IsolationExpectations
|
170
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
-
|
172
|
-
include Google::Apis::Core::JsonObjectSupport
|
173
|
-
end
|
174
|
-
|
175
133
|
class ListApplicationsResponse
|
176
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
135
|
|
@@ -226,18 +184,6 @@ module Google
|
|
226
184
|
include Google::Apis::Core::JsonObjectSupport
|
227
185
|
end
|
228
186
|
|
229
|
-
class LocationAssignment
|
230
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
-
|
232
|
-
include Google::Apis::Core::JsonObjectSupport
|
233
|
-
end
|
234
|
-
|
235
|
-
class LocationData
|
236
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
-
|
238
|
-
include Google::Apis::Core::JsonObjectSupport
|
239
|
-
end
|
240
|
-
|
241
187
|
class LookupDiscoveredServiceResponse
|
242
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
189
|
|
@@ -268,30 +214,12 @@ module Google
|
|
268
214
|
include Google::Apis::Core::JsonObjectSupport
|
269
215
|
end
|
270
216
|
|
271
|
-
class PlacerLocation
|
272
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
-
|
274
|
-
include Google::Apis::Core::JsonObjectSupport
|
275
|
-
end
|
276
|
-
|
277
217
|
class Policy
|
278
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
219
|
|
280
220
|
include Google::Apis::Core::JsonObjectSupport
|
281
221
|
end
|
282
222
|
|
283
|
-
class RegionalMigDistributionPolicy
|
284
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
-
|
286
|
-
include Google::Apis::Core::JsonObjectSupport
|
287
|
-
end
|
288
|
-
|
289
|
-
class RequirementOverride
|
290
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
-
|
292
|
-
include Google::Apis::Core::JsonObjectSupport
|
293
|
-
end
|
294
|
-
|
295
223
|
class Scope
|
296
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
225
|
|
@@ -328,24 +256,12 @@ module Google
|
|
328
256
|
include Google::Apis::Core::JsonObjectSupport
|
329
257
|
end
|
330
258
|
|
331
|
-
class SpannerLocation
|
332
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
-
|
334
|
-
include Google::Apis::Core::JsonObjectSupport
|
335
|
-
end
|
336
|
-
|
337
259
|
class Status
|
338
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
261
|
|
340
262
|
include Google::Apis::Core::JsonObjectSupport
|
341
263
|
end
|
342
264
|
|
343
|
-
class TenantProjectProxy
|
344
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
-
|
346
|
-
include Google::Apis::Core::JsonObjectSupport
|
347
|
-
end
|
348
|
-
|
349
265
|
class TestIamPermissionsRequest
|
350
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
267
|
|
@@ -376,12 +292,6 @@ module Google
|
|
376
292
|
include Google::Apis::Core::JsonObjectSupport
|
377
293
|
end
|
378
294
|
|
379
|
-
class ZoneConfiguration
|
380
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
-
|
382
|
-
include Google::Apis::Core::JsonObjectSupport
|
383
|
-
end
|
384
|
-
|
385
295
|
class Application
|
386
296
|
# @private
|
387
297
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -399,21 +309,6 @@ module Google
|
|
399
309
|
end
|
400
310
|
end
|
401
311
|
|
402
|
-
class AssetLocation
|
403
|
-
# @private
|
404
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
405
|
-
property :ccfe_rms_path, as: 'ccfeRmsPath'
|
406
|
-
property :expected, as: 'expected', class: Google::Apis::ApphubV1alpha::IsolationExpectations, decorator: Google::Apis::ApphubV1alpha::IsolationExpectations::Representation
|
407
|
-
|
408
|
-
collection :extra_parameters, as: 'extraParameters', class: Google::Apis::ApphubV1alpha::ExtraParameter, decorator: Google::Apis::ApphubV1alpha::ExtraParameter::Representation
|
409
|
-
|
410
|
-
collection :location_data, as: 'locationData', class: Google::Apis::ApphubV1alpha::LocationData, decorator: Google::Apis::ApphubV1alpha::LocationData::Representation
|
411
|
-
|
412
|
-
collection :parent_asset, as: 'parentAsset', class: Google::Apis::ApphubV1alpha::CloudAsset, decorator: Google::Apis::ApphubV1alpha::CloudAsset::Representation
|
413
|
-
|
414
|
-
end
|
415
|
-
end
|
416
|
-
|
417
312
|
class Attributes
|
418
313
|
# @private
|
419
314
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -457,13 +352,6 @@ module Google
|
|
457
352
|
end
|
458
353
|
end
|
459
354
|
|
460
|
-
class BlobstoreLocation
|
461
|
-
# @private
|
462
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
463
|
-
collection :policy_id, as: 'policyId'
|
464
|
-
end
|
465
|
-
end
|
466
|
-
|
467
355
|
class CancelOperationRequest
|
468
356
|
# @private
|
469
357
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -477,22 +365,6 @@ module Google
|
|
477
365
|
end
|
478
366
|
end
|
479
367
|
|
480
|
-
class CloudAsset
|
481
|
-
# @private
|
482
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
483
|
-
property :asset_name, as: 'assetName'
|
484
|
-
property :asset_type, as: 'assetType'
|
485
|
-
end
|
486
|
-
end
|
487
|
-
|
488
|
-
class CloudAssetComposition
|
489
|
-
# @private
|
490
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
491
|
-
collection :child_asset, as: 'childAsset', class: Google::Apis::ApphubV1alpha::CloudAsset, decorator: Google::Apis::ApphubV1alpha::CloudAsset::Representation
|
492
|
-
|
493
|
-
end
|
494
|
-
end
|
495
|
-
|
496
368
|
class ContactInfo
|
497
369
|
# @private
|
498
370
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -524,14 +396,6 @@ module Google
|
|
524
396
|
end
|
525
397
|
end
|
526
398
|
|
527
|
-
class DirectLocationAssignment
|
528
|
-
# @private
|
529
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
530
|
-
collection :location, as: 'location', class: Google::Apis::ApphubV1alpha::LocationAssignment, decorator: Google::Apis::ApphubV1alpha::LocationAssignment::Representation
|
531
|
-
|
532
|
-
end
|
533
|
-
end
|
534
|
-
|
535
399
|
class DiscoveredService
|
536
400
|
# @private
|
537
401
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -578,14 +442,6 @@ module Google
|
|
578
442
|
end
|
579
443
|
end
|
580
444
|
|
581
|
-
class ExtraParameter
|
582
|
-
# @private
|
583
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
584
|
-
property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::ApphubV1alpha::RegionalMigDistributionPolicy, decorator: Google::Apis::ApphubV1alpha::RegionalMigDistributionPolicy::Representation
|
585
|
-
|
586
|
-
end
|
587
|
-
end
|
588
|
-
|
589
445
|
class FindUnregisteredServicesResponse
|
590
446
|
# @private
|
591
447
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -606,21 +462,6 @@ module Google
|
|
606
462
|
end
|
607
463
|
end
|
608
464
|
|
609
|
-
class IsolationExpectations
|
610
|
-
# @private
|
611
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
612
|
-
property :requirement_override, as: 'requirementOverride', class: Google::Apis::ApphubV1alpha::RequirementOverride, decorator: Google::Apis::ApphubV1alpha::RequirementOverride::Representation
|
613
|
-
|
614
|
-
property :zi_org_policy, as: 'ziOrgPolicy'
|
615
|
-
property :zi_region_policy, as: 'ziRegionPolicy'
|
616
|
-
property :zi_region_state, as: 'ziRegionState'
|
617
|
-
property :zone_isolation, as: 'zoneIsolation'
|
618
|
-
property :zone_separation, as: 'zoneSeparation'
|
619
|
-
property :zs_org_policy, as: 'zsOrgPolicy'
|
620
|
-
property :zs_region_state, as: 'zsRegionState'
|
621
|
-
end
|
622
|
-
end
|
623
|
-
|
624
465
|
class ListApplicationsResponse
|
625
466
|
# @private
|
626
467
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -710,32 +551,6 @@ module Google
|
|
710
551
|
end
|
711
552
|
end
|
712
553
|
|
713
|
-
class LocationAssignment
|
714
|
-
# @private
|
715
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
716
|
-
property :location, as: 'location'
|
717
|
-
property :location_type, as: 'locationType'
|
718
|
-
end
|
719
|
-
end
|
720
|
-
|
721
|
-
class LocationData
|
722
|
-
# @private
|
723
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
724
|
-
property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::ApphubV1alpha::BlobstoreLocation, decorator: Google::Apis::ApphubV1alpha::BlobstoreLocation::Representation
|
725
|
-
|
726
|
-
property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::ApphubV1alpha::CloudAssetComposition, decorator: Google::Apis::ApphubV1alpha::CloudAssetComposition::Representation
|
727
|
-
|
728
|
-
property :direct_location, as: 'directLocation', class: Google::Apis::ApphubV1alpha::DirectLocationAssignment, decorator: Google::Apis::ApphubV1alpha::DirectLocationAssignment::Representation
|
729
|
-
|
730
|
-
property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::ApphubV1alpha::TenantProjectProxy, decorator: Google::Apis::ApphubV1alpha::TenantProjectProxy::Representation
|
731
|
-
|
732
|
-
property :placer_location, as: 'placerLocation', class: Google::Apis::ApphubV1alpha::PlacerLocation, decorator: Google::Apis::ApphubV1alpha::PlacerLocation::Representation
|
733
|
-
|
734
|
-
property :spanner_location, as: 'spannerLocation', class: Google::Apis::ApphubV1alpha::SpannerLocation, decorator: Google::Apis::ApphubV1alpha::SpannerLocation::Representation
|
735
|
-
|
736
|
-
end
|
737
|
-
end
|
738
|
-
|
739
554
|
class LookupDiscoveredServiceResponse
|
740
555
|
# @private
|
741
556
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -785,13 +600,6 @@ module Google
|
|
785
600
|
end
|
786
601
|
end
|
787
602
|
|
788
|
-
class PlacerLocation
|
789
|
-
# @private
|
790
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
791
|
-
property :placer_config, as: 'placerConfig'
|
792
|
-
end
|
793
|
-
end
|
794
|
-
|
795
603
|
class Policy
|
796
604
|
# @private
|
797
605
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -804,23 +612,6 @@ module Google
|
|
804
612
|
end
|
805
613
|
end
|
806
614
|
|
807
|
-
class RegionalMigDistributionPolicy
|
808
|
-
# @private
|
809
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
810
|
-
property :target_shape, as: 'targetShape'
|
811
|
-
collection :zones, as: 'zones', class: Google::Apis::ApphubV1alpha::ZoneConfiguration, decorator: Google::Apis::ApphubV1alpha::ZoneConfiguration::Representation
|
812
|
-
|
813
|
-
end
|
814
|
-
end
|
815
|
-
|
816
|
-
class RequirementOverride
|
817
|
-
# @private
|
818
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
819
|
-
property :zi_override, as: 'ziOverride'
|
820
|
-
property :zs_override, as: 'zsOverride'
|
821
|
-
end
|
822
|
-
end
|
823
|
-
|
824
615
|
class Scope
|
825
616
|
# @private
|
826
617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -885,14 +676,6 @@ module Google
|
|
885
676
|
end
|
886
677
|
end
|
887
678
|
|
888
|
-
class SpannerLocation
|
889
|
-
# @private
|
890
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
891
|
-
collection :backup_name, as: 'backupName'
|
892
|
-
collection :db_name, as: 'dbName'
|
893
|
-
end
|
894
|
-
end
|
895
|
-
|
896
679
|
class Status
|
897
680
|
# @private
|
898
681
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -902,13 +685,6 @@ module Google
|
|
902
685
|
end
|
903
686
|
end
|
904
687
|
|
905
|
-
class TenantProjectProxy
|
906
|
-
# @private
|
907
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
908
|
-
collection :project_numbers, as: 'projectNumbers'
|
909
|
-
end
|
910
|
-
end
|
911
|
-
|
912
688
|
class TestIamPermissionsRequest
|
913
689
|
# @private
|
914
690
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -958,13 +734,6 @@ module Google
|
|
958
734
|
property :uri, as: 'uri'
|
959
735
|
end
|
960
736
|
end
|
961
|
-
|
962
|
-
class ZoneConfiguration
|
963
|
-
# @private
|
964
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
965
|
-
property :zone, as: 'zone'
|
966
|
-
end
|
967
|
-
end
|
968
737
|
end
|
969
738
|
end
|
970
739
|
end
|
@@ -1316,8 +1316,8 @@ module Google
|
|
1316
1316
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
1317
1317
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
1318
1318
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
1319
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
1320
|
-
# corresponding to `Code.CANCELLED`.
|
1319
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
1320
|
+
# , corresponding to `Code.CANCELLED`.
|
1321
1321
|
# @param [String] name
|
1322
1322
|
# The name of the operation resource to be cancelled.
|
1323
1323
|
# @param [Google::Apis::ApphubV1alpha::CancelOperationRequest] cancel_operation_request_object
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-apphub_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1alpha/v0.10.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1alpha
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for App Hub API V1alpha
|
82
79
|
test_files: []
|