google-apis-apphub_v1 0.7.0 → 0.8.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: 1f43420493a85e30e2bd57223f6aea8592274e0662c4e42b38ebdde8a522a7ff
|
4
|
+
data.tar.gz: 0a78f1be9d740d7d18a55241b4c0a1282cf8355b57b0dd4acc487c8db79dc25f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f7f7771643f995bf6875d4fd4c44561964976c4193ac490e1a470b0a69e8f53c008182981b4941b4b59a28461ec423a2a6e1f185f55e0f7bc7bec30495a8900
|
7
|
+
data.tar.gz: 682f80fe645ba0423661ff5b500953ba71a58721f115250e2c639ef7ae3d479ac9cfbf17b79cf2b03e7bce0a888fdad1ea39af8539a58c93966fe96033db27f9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-apphub_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2025-01-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250115
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.7.0 (2024-10-13)
|
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::ApphubV1::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::ApphubV1::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::ApphubV1::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::ApphubV1::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
|
@@ -390,50 +323,6 @@ module Google
|
|
390
323
|
end
|
391
324
|
end
|
392
325
|
|
393
|
-
#
|
394
|
-
class CloudAsset
|
395
|
-
include Google::Apis::Core::Hashable
|
396
|
-
|
397
|
-
#
|
398
|
-
# Corresponds to the JSON property `assetName`
|
399
|
-
# @return [String]
|
400
|
-
attr_accessor :asset_name
|
401
|
-
|
402
|
-
#
|
403
|
-
# Corresponds to the JSON property `assetType`
|
404
|
-
# @return [String]
|
405
|
-
attr_accessor :asset_type
|
406
|
-
|
407
|
-
def initialize(**args)
|
408
|
-
update!(**args)
|
409
|
-
end
|
410
|
-
|
411
|
-
# Update properties of this object
|
412
|
-
def update!(**args)
|
413
|
-
@asset_name = args[:asset_name] if args.key?(:asset_name)
|
414
|
-
@asset_type = args[:asset_type] if args.key?(:asset_type)
|
415
|
-
end
|
416
|
-
end
|
417
|
-
|
418
|
-
#
|
419
|
-
class CloudAssetComposition
|
420
|
-
include Google::Apis::Core::Hashable
|
421
|
-
|
422
|
-
#
|
423
|
-
# Corresponds to the JSON property `childAsset`
|
424
|
-
# @return [Array<Google::Apis::ApphubV1::CloudAsset>]
|
425
|
-
attr_accessor :child_asset
|
426
|
-
|
427
|
-
def initialize(**args)
|
428
|
-
update!(**args)
|
429
|
-
end
|
430
|
-
|
431
|
-
# Update properties of this object
|
432
|
-
def update!(**args)
|
433
|
-
@child_asset = args[:child_asset] if args.key?(:child_asset)
|
434
|
-
end
|
435
|
-
end
|
436
|
-
|
437
326
|
# Contact information of stakeholders.
|
438
327
|
class ContactInfo
|
439
328
|
include Google::Apis::Core::Hashable
|
@@ -504,25 +393,6 @@ module Google
|
|
504
393
|
end
|
505
394
|
end
|
506
395
|
|
507
|
-
#
|
508
|
-
class DirectLocationAssignment
|
509
|
-
include Google::Apis::Core::Hashable
|
510
|
-
|
511
|
-
#
|
512
|
-
# Corresponds to the JSON property `location`
|
513
|
-
# @return [Array<Google::Apis::ApphubV1::LocationAssignment>]
|
514
|
-
attr_accessor :location
|
515
|
-
|
516
|
-
def initialize(**args)
|
517
|
-
update!(**args)
|
518
|
-
end
|
519
|
-
|
520
|
-
# Update properties of this object
|
521
|
-
def update!(**args)
|
522
|
-
@location = args[:location] if args.key?(:location)
|
523
|
-
end
|
524
|
-
end
|
525
|
-
|
526
396
|
# DiscoveredService is a network or API interface that exposes some
|
527
397
|
# functionality to clients for consumption over the network. A discovered
|
528
398
|
# service can be registered to a App Hub service.
|
@@ -681,90 +551,6 @@ module Google
|
|
681
551
|
end
|
682
552
|
end
|
683
553
|
|
684
|
-
# Defines parameters that should only be used for specific asset types.
|
685
|
-
class ExtraParameter
|
686
|
-
include Google::Apis::Core::Hashable
|
687
|
-
|
688
|
-
# To be used for specifying the intended distribution of regional compute.
|
689
|
-
# googleapis.com/InstanceGroupManager instances
|
690
|
-
# Corresponds to the JSON property `regionalMigDistributionPolicy`
|
691
|
-
# @return [Google::Apis::ApphubV1::RegionalMigDistributionPolicy]
|
692
|
-
attr_accessor :regional_mig_distribution_policy
|
693
|
-
|
694
|
-
def initialize(**args)
|
695
|
-
update!(**args)
|
696
|
-
end
|
697
|
-
|
698
|
-
# Update properties of this object
|
699
|
-
def update!(**args)
|
700
|
-
@regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
|
701
|
-
end
|
702
|
-
end
|
703
|
-
|
704
|
-
#
|
705
|
-
class IsolationExpectations
|
706
|
-
include Google::Apis::Core::Hashable
|
707
|
-
|
708
|
-
# Explicit overrides for ZI and ZS requirements to be used for resources that
|
709
|
-
# should be excluded from ZI/ZS verification logic.
|
710
|
-
# Corresponds to the JSON property `requirementOverride`
|
711
|
-
# @return [Google::Apis::ApphubV1::RequirementOverride]
|
712
|
-
attr_accessor :requirement_override
|
713
|
-
|
714
|
-
#
|
715
|
-
# Corresponds to the JSON property `ziOrgPolicy`
|
716
|
-
# @return [String]
|
717
|
-
attr_accessor :zi_org_policy
|
718
|
-
|
719
|
-
#
|
720
|
-
# Corresponds to the JSON property `ziRegionPolicy`
|
721
|
-
# @return [String]
|
722
|
-
attr_accessor :zi_region_policy
|
723
|
-
|
724
|
-
#
|
725
|
-
# Corresponds to the JSON property `ziRegionState`
|
726
|
-
# @return [String]
|
727
|
-
attr_accessor :zi_region_state
|
728
|
-
|
729
|
-
# Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
|
730
|
-
# for setting ZI expectations as per go/zicy-publish-physical-location.
|
731
|
-
# Corresponds to the JSON property `zoneIsolation`
|
732
|
-
# @return [String]
|
733
|
-
attr_accessor :zone_isolation
|
734
|
-
|
735
|
-
# Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
|
736
|
-
# expectations as per go/zicy-publish-physical-location.
|
737
|
-
# Corresponds to the JSON property `zoneSeparation`
|
738
|
-
# @return [String]
|
739
|
-
attr_accessor :zone_separation
|
740
|
-
|
741
|
-
#
|
742
|
-
# Corresponds to the JSON property `zsOrgPolicy`
|
743
|
-
# @return [String]
|
744
|
-
attr_accessor :zs_org_policy
|
745
|
-
|
746
|
-
#
|
747
|
-
# Corresponds to the JSON property `zsRegionState`
|
748
|
-
# @return [String]
|
749
|
-
attr_accessor :zs_region_state
|
750
|
-
|
751
|
-
def initialize(**args)
|
752
|
-
update!(**args)
|
753
|
-
end
|
754
|
-
|
755
|
-
# Update properties of this object
|
756
|
-
def update!(**args)
|
757
|
-
@requirement_override = args[:requirement_override] if args.key?(:requirement_override)
|
758
|
-
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
759
|
-
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
760
|
-
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
761
|
-
@zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
|
762
|
-
@zone_separation = args[:zone_separation] if args.key?(:zone_separation)
|
763
|
-
@zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
|
764
|
-
@zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
|
765
|
-
end
|
766
|
-
end
|
767
|
-
|
768
554
|
# Response for ListApplications.
|
769
555
|
class ListApplicationsResponse
|
770
556
|
include Google::Apis::Core::Hashable
|
@@ -1048,82 +834,6 @@ module Google
|
|
1048
834
|
end
|
1049
835
|
end
|
1050
836
|
|
1051
|
-
#
|
1052
|
-
class LocationAssignment
|
1053
|
-
include Google::Apis::Core::Hashable
|
1054
|
-
|
1055
|
-
#
|
1056
|
-
# Corresponds to the JSON property `location`
|
1057
|
-
# @return [String]
|
1058
|
-
attr_accessor :location
|
1059
|
-
|
1060
|
-
#
|
1061
|
-
# Corresponds to the JSON property `locationType`
|
1062
|
-
# @return [String]
|
1063
|
-
attr_accessor :location_type
|
1064
|
-
|
1065
|
-
def initialize(**args)
|
1066
|
-
update!(**args)
|
1067
|
-
end
|
1068
|
-
|
1069
|
-
# Update properties of this object
|
1070
|
-
def update!(**args)
|
1071
|
-
@location = args[:location] if args.key?(:location)
|
1072
|
-
@location_type = args[:location_type] if args.key?(:location_type)
|
1073
|
-
end
|
1074
|
-
end
|
1075
|
-
|
1076
|
-
#
|
1077
|
-
class LocationData
|
1078
|
-
include Google::Apis::Core::Hashable
|
1079
|
-
|
1080
|
-
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
1081
|
-
# guide#data-metadata-placement-and-failure-domains
|
1082
|
-
# Corresponds to the JSON property `blobstoreLocation`
|
1083
|
-
# @return [Google::Apis::ApphubV1::BlobstoreLocation]
|
1084
|
-
attr_accessor :blobstore_location
|
1085
|
-
|
1086
|
-
#
|
1087
|
-
# Corresponds to the JSON property `childAssetLocation`
|
1088
|
-
# @return [Google::Apis::ApphubV1::CloudAssetComposition]
|
1089
|
-
attr_accessor :child_asset_location
|
1090
|
-
|
1091
|
-
#
|
1092
|
-
# Corresponds to the JSON property `directLocation`
|
1093
|
-
# @return [Google::Apis::ApphubV1::DirectLocationAssignment]
|
1094
|
-
attr_accessor :direct_location
|
1095
|
-
|
1096
|
-
#
|
1097
|
-
# Corresponds to the JSON property `gcpProjectProxy`
|
1098
|
-
# @return [Google::Apis::ApphubV1::TenantProjectProxy]
|
1099
|
-
attr_accessor :gcp_project_proxy
|
1100
|
-
|
1101
|
-
# Message describing that the location of the customer resource is tied to
|
1102
|
-
# placer allocations
|
1103
|
-
# Corresponds to the JSON property `placerLocation`
|
1104
|
-
# @return [Google::Apis::ApphubV1::PlacerLocation]
|
1105
|
-
attr_accessor :placer_location
|
1106
|
-
|
1107
|
-
#
|
1108
|
-
# Corresponds to the JSON property `spannerLocation`
|
1109
|
-
# @return [Google::Apis::ApphubV1::SpannerLocation]
|
1110
|
-
attr_accessor :spanner_location
|
1111
|
-
|
1112
|
-
def initialize(**args)
|
1113
|
-
update!(**args)
|
1114
|
-
end
|
1115
|
-
|
1116
|
-
# Update properties of this object
|
1117
|
-
def update!(**args)
|
1118
|
-
@blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
|
1119
|
-
@child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
|
1120
|
-
@direct_location = args[:direct_location] if args.key?(:direct_location)
|
1121
|
-
@gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
|
1122
|
-
@placer_location = args[:placer_location] if args.key?(:placer_location)
|
1123
|
-
@spanner_location = args[:spanner_location] if args.key?(:spanner_location)
|
1124
|
-
end
|
1125
|
-
end
|
1126
|
-
|
1127
837
|
# Response for LookupDiscoveredService.
|
1128
838
|
class LookupDiscoveredServiceResponse
|
1129
839
|
include Google::Apis::Core::Hashable
|
@@ -1272,9 +982,9 @@ module Google
|
|
1272
982
|
attr_accessor :end_time
|
1273
983
|
|
1274
984
|
# Output only. Identifies whether the user has requested cancellation of the
|
1275
|
-
# operation. Operations that have been cancelled successfully have
|
1276
|
-
# error value with a google.rpc.Status.code of 1,
|
1277
|
-
# CANCELLED`.
|
985
|
+
# operation. Operations that have been cancelled successfully have google.
|
986
|
+
# longrunning.Operation.error value with a google.rpc.Status.code of 1,
|
987
|
+
# corresponding to `Code.CANCELLED`.
|
1278
988
|
# Corresponds to the JSON property `requestedCancellation`
|
1279
989
|
# @return [Boolean]
|
1280
990
|
attr_accessor :requested_cancellation
|
@@ -1311,27 +1021,6 @@ module Google
|
|
1311
1021
|
end
|
1312
1022
|
end
|
1313
1023
|
|
1314
|
-
# Message describing that the location of the customer resource is tied to
|
1315
|
-
# placer allocations
|
1316
|
-
class PlacerLocation
|
1317
|
-
include Google::Apis::Core::Hashable
|
1318
|
-
|
1319
|
-
# Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
|
1320
|
-
# root/my-dir")
|
1321
|
-
# Corresponds to the JSON property `placerConfig`
|
1322
|
-
# @return [String]
|
1323
|
-
attr_accessor :placer_config
|
1324
|
-
|
1325
|
-
def initialize(**args)
|
1326
|
-
update!(**args)
|
1327
|
-
end
|
1328
|
-
|
1329
|
-
# Update properties of this object
|
1330
|
-
def update!(**args)
|
1331
|
-
@placer_config = args[:placer_config] if args.key?(:placer_config)
|
1332
|
-
end
|
1333
|
-
end
|
1334
|
-
|
1335
1024
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1336
1025
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
1337
1026
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -1453,58 +1142,6 @@ module Google
|
|
1453
1142
|
end
|
1454
1143
|
end
|
1455
1144
|
|
1456
|
-
# To be used for specifying the intended distribution of regional compute.
|
1457
|
-
# googleapis.com/InstanceGroupManager instances
|
1458
|
-
class RegionalMigDistributionPolicy
|
1459
|
-
include Google::Apis::Core::Hashable
|
1460
|
-
|
1461
|
-
# The shape in which the group converges around distribution of resources.
|
1462
|
-
# Instance of proto2 enum
|
1463
|
-
# Corresponds to the JSON property `targetShape`
|
1464
|
-
# @return [Fixnum]
|
1465
|
-
attr_accessor :target_shape
|
1466
|
-
|
1467
|
-
# Cloud zones used by regional MIG to create instances.
|
1468
|
-
# Corresponds to the JSON property `zones`
|
1469
|
-
# @return [Array<Google::Apis::ApphubV1::ZoneConfiguration>]
|
1470
|
-
attr_accessor :zones
|
1471
|
-
|
1472
|
-
def initialize(**args)
|
1473
|
-
update!(**args)
|
1474
|
-
end
|
1475
|
-
|
1476
|
-
# Update properties of this object
|
1477
|
-
def update!(**args)
|
1478
|
-
@target_shape = args[:target_shape] if args.key?(:target_shape)
|
1479
|
-
@zones = args[:zones] if args.key?(:zones)
|
1480
|
-
end
|
1481
|
-
end
|
1482
|
-
|
1483
|
-
#
|
1484
|
-
class RequirementOverride
|
1485
|
-
include Google::Apis::Core::Hashable
|
1486
|
-
|
1487
|
-
#
|
1488
|
-
# Corresponds to the JSON property `ziOverride`
|
1489
|
-
# @return [String]
|
1490
|
-
attr_accessor :zi_override
|
1491
|
-
|
1492
|
-
#
|
1493
|
-
# Corresponds to the JSON property `zsOverride`
|
1494
|
-
# @return [String]
|
1495
|
-
attr_accessor :zs_override
|
1496
|
-
|
1497
|
-
def initialize(**args)
|
1498
|
-
update!(**args)
|
1499
|
-
end
|
1500
|
-
|
1501
|
-
# Update properties of this object
|
1502
|
-
def update!(**args)
|
1503
|
-
@zi_override = args[:zi_override] if args.key?(:zi_override)
|
1504
|
-
@zs_override = args[:zs_override] if args.key?(:zs_override)
|
1505
|
-
end
|
1506
|
-
end
|
1507
|
-
|
1508
1145
|
# Scope of an application.
|
1509
1146
|
class Scope
|
1510
1147
|
include Google::Apis::Core::Hashable
|
@@ -1768,32 +1405,6 @@ module Google
|
|
1768
1405
|
end
|
1769
1406
|
end
|
1770
1407
|
|
1771
|
-
#
|
1772
|
-
class SpannerLocation
|
1773
|
-
include Google::Apis::Core::Hashable
|
1774
|
-
|
1775
|
-
# Set of backups used by the resource with name in the same format as what is
|
1776
|
-
# available at http://table/spanner_automon.backup_metadata
|
1777
|
-
# Corresponds to the JSON property `backupName`
|
1778
|
-
# @return [Array<String>]
|
1779
|
-
attr_accessor :backup_name
|
1780
|
-
|
1781
|
-
# Set of databases used by the resource in format /span//
|
1782
|
-
# Corresponds to the JSON property `dbName`
|
1783
|
-
# @return [Array<String>]
|
1784
|
-
attr_accessor :db_name
|
1785
|
-
|
1786
|
-
def initialize(**args)
|
1787
|
-
update!(**args)
|
1788
|
-
end
|
1789
|
-
|
1790
|
-
# Update properties of this object
|
1791
|
-
def update!(**args)
|
1792
|
-
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
1793
|
-
@db_name = args[:db_name] if args.key?(:db_name)
|
1794
|
-
end
|
1795
|
-
end
|
1796
|
-
|
1797
1408
|
# The `Status` type defines a logical error model that is suitable for different
|
1798
1409
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1799
1410
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1833,25 +1444,6 @@ module Google
|
|
1833
1444
|
end
|
1834
1445
|
end
|
1835
1446
|
|
1836
|
-
#
|
1837
|
-
class TenantProjectProxy
|
1838
|
-
include Google::Apis::Core::Hashable
|
1839
|
-
|
1840
|
-
#
|
1841
|
-
# Corresponds to the JSON property `projectNumbers`
|
1842
|
-
# @return [Array<String>]
|
1843
|
-
attr_accessor :project_numbers
|
1844
|
-
|
1845
|
-
def initialize(**args)
|
1846
|
-
update!(**args)
|
1847
|
-
end
|
1848
|
-
|
1849
|
-
# Update properties of this object
|
1850
|
-
def update!(**args)
|
1851
|
-
@project_numbers = args[:project_numbers] if args.key?(:project_numbers)
|
1852
|
-
end
|
1853
|
-
end
|
1854
|
-
|
1855
1447
|
# Request message for `TestIamPermissions` method.
|
1856
1448
|
class TestIamPermissionsRequest
|
1857
1449
|
include Google::Apis::Core::Hashable
|
@@ -2031,25 +1623,6 @@ module Google
|
|
2031
1623
|
@uri = args[:uri] if args.key?(:uri)
|
2032
1624
|
end
|
2033
1625
|
end
|
2034
|
-
|
2035
|
-
#
|
2036
|
-
class ZoneConfiguration
|
2037
|
-
include Google::Apis::Core::Hashable
|
2038
|
-
|
2039
|
-
#
|
2040
|
-
# Corresponds to the JSON property `zone`
|
2041
|
-
# @return [String]
|
2042
|
-
attr_accessor :zone
|
2043
|
-
|
2044
|
-
def initialize(**args)
|
2045
|
-
update!(**args)
|
2046
|
-
end
|
2047
|
-
|
2048
|
-
# Update properties of this object
|
2049
|
-
def update!(**args)
|
2050
|
-
@zone = args[:zone] if args.key?(:zone)
|
2051
|
-
end
|
2052
|
-
end
|
2053
1626
|
end
|
2054
1627
|
end
|
2055
1628
|
end
|
@@ -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.8.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,30 +52,12 @@ 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
|
|
70
58
|
include Google::Apis::Core::JsonObjectSupport
|
71
59
|
end
|
72
60
|
|
73
|
-
class CloudAsset
|
74
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
-
|
76
|
-
include Google::Apis::Core::JsonObjectSupport
|
77
|
-
end
|
78
|
-
|
79
|
-
class CloudAssetComposition
|
80
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
-
|
82
|
-
include Google::Apis::Core::JsonObjectSupport
|
83
|
-
end
|
84
|
-
|
85
61
|
class ContactInfo
|
86
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
63
|
|
@@ -106,12 +82,6 @@ module Google
|
|
106
82
|
include Google::Apis::Core::JsonObjectSupport
|
107
83
|
end
|
108
84
|
|
109
|
-
class DirectLocationAssignment
|
110
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
-
|
112
|
-
include Google::Apis::Core::JsonObjectSupport
|
113
|
-
end
|
114
|
-
|
115
85
|
class DiscoveredService
|
116
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
87
|
|
@@ -142,18 +112,6 @@ module Google
|
|
142
112
|
include Google::Apis::Core::JsonObjectSupport
|
143
113
|
end
|
144
114
|
|
145
|
-
class ExtraParameter
|
146
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
-
|
148
|
-
include Google::Apis::Core::JsonObjectSupport
|
149
|
-
end
|
150
|
-
|
151
|
-
class IsolationExpectations
|
152
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
-
|
154
|
-
include Google::Apis::Core::JsonObjectSupport
|
155
|
-
end
|
156
|
-
|
157
115
|
class ListApplicationsResponse
|
158
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
117
|
|
@@ -208,18 +166,6 @@ module Google
|
|
208
166
|
include Google::Apis::Core::JsonObjectSupport
|
209
167
|
end
|
210
168
|
|
211
|
-
class LocationAssignment
|
212
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
-
|
214
|
-
include Google::Apis::Core::JsonObjectSupport
|
215
|
-
end
|
216
|
-
|
217
|
-
class LocationData
|
218
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
-
|
220
|
-
include Google::Apis::Core::JsonObjectSupport
|
221
|
-
end
|
222
|
-
|
223
169
|
class LookupDiscoveredServiceResponse
|
224
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
171
|
|
@@ -250,12 +196,6 @@ module Google
|
|
250
196
|
include Google::Apis::Core::JsonObjectSupport
|
251
197
|
end
|
252
198
|
|
253
|
-
class PlacerLocation
|
254
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
-
|
256
|
-
include Google::Apis::Core::JsonObjectSupport
|
257
|
-
end
|
258
|
-
|
259
199
|
class Policy
|
260
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
201
|
|
@@ -268,18 +208,6 @@ module Google
|
|
268
208
|
include Google::Apis::Core::JsonObjectSupport
|
269
209
|
end
|
270
210
|
|
271
|
-
class RegionalMigDistributionPolicy
|
272
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
-
|
274
|
-
include Google::Apis::Core::JsonObjectSupport
|
275
|
-
end
|
276
|
-
|
277
|
-
class RequirementOverride
|
278
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
-
|
280
|
-
include Google::Apis::Core::JsonObjectSupport
|
281
|
-
end
|
282
|
-
|
283
211
|
class Scope
|
284
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
213
|
|
@@ -316,24 +244,12 @@ module Google
|
|
316
244
|
include Google::Apis::Core::JsonObjectSupport
|
317
245
|
end
|
318
246
|
|
319
|
-
class SpannerLocation
|
320
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
-
|
322
|
-
include Google::Apis::Core::JsonObjectSupport
|
323
|
-
end
|
324
|
-
|
325
247
|
class Status
|
326
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
249
|
|
328
250
|
include Google::Apis::Core::JsonObjectSupport
|
329
251
|
end
|
330
252
|
|
331
|
-
class TenantProjectProxy
|
332
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
-
|
334
|
-
include Google::Apis::Core::JsonObjectSupport
|
335
|
-
end
|
336
|
-
|
337
253
|
class TestIamPermissionsRequest
|
338
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
255
|
|
@@ -364,12 +280,6 @@ module Google
|
|
364
280
|
include Google::Apis::Core::JsonObjectSupport
|
365
281
|
end
|
366
282
|
|
367
|
-
class ZoneConfiguration
|
368
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
-
|
370
|
-
include Google::Apis::Core::JsonObjectSupport
|
371
|
-
end
|
372
|
-
|
373
283
|
class Application
|
374
284
|
# @private
|
375
285
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -387,21 +297,6 @@ module Google
|
|
387
297
|
end
|
388
298
|
end
|
389
299
|
|
390
|
-
class AssetLocation
|
391
|
-
# @private
|
392
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
393
|
-
property :ccfe_rms_path, as: 'ccfeRmsPath'
|
394
|
-
property :expected, as: 'expected', class: Google::Apis::ApphubV1::IsolationExpectations, decorator: Google::Apis::ApphubV1::IsolationExpectations::Representation
|
395
|
-
|
396
|
-
collection :extra_parameters, as: 'extraParameters', class: Google::Apis::ApphubV1::ExtraParameter, decorator: Google::Apis::ApphubV1::ExtraParameter::Representation
|
397
|
-
|
398
|
-
collection :location_data, as: 'locationData', class: Google::Apis::ApphubV1::LocationData, decorator: Google::Apis::ApphubV1::LocationData::Representation
|
399
|
-
|
400
|
-
collection :parent_asset, as: 'parentAsset', class: Google::Apis::ApphubV1::CloudAsset, decorator: Google::Apis::ApphubV1::CloudAsset::Representation
|
401
|
-
|
402
|
-
end
|
403
|
-
end
|
404
|
-
|
405
300
|
class Attributes
|
406
301
|
# @private
|
407
302
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -445,35 +340,12 @@ module Google
|
|
445
340
|
end
|
446
341
|
end
|
447
342
|
|
448
|
-
class BlobstoreLocation
|
449
|
-
# @private
|
450
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
451
|
-
collection :policy_id, as: 'policyId'
|
452
|
-
end
|
453
|
-
end
|
454
|
-
|
455
343
|
class CancelOperationRequest
|
456
344
|
# @private
|
457
345
|
class Representation < Google::Apis::Core::JsonRepresentation
|
458
346
|
end
|
459
347
|
end
|
460
348
|
|
461
|
-
class CloudAsset
|
462
|
-
# @private
|
463
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
464
|
-
property :asset_name, as: 'assetName'
|
465
|
-
property :asset_type, as: 'assetType'
|
466
|
-
end
|
467
|
-
end
|
468
|
-
|
469
|
-
class CloudAssetComposition
|
470
|
-
# @private
|
471
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
472
|
-
collection :child_asset, as: 'childAsset', class: Google::Apis::ApphubV1::CloudAsset, decorator: Google::Apis::ApphubV1::CloudAsset::Representation
|
473
|
-
|
474
|
-
end
|
475
|
-
end
|
476
|
-
|
477
349
|
class ContactInfo
|
478
350
|
# @private
|
479
351
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -501,14 +373,6 @@ module Google
|
|
501
373
|
end
|
502
374
|
end
|
503
375
|
|
504
|
-
class DirectLocationAssignment
|
505
|
-
# @private
|
506
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
507
|
-
collection :location, as: 'location', class: Google::Apis::ApphubV1::LocationAssignment, decorator: Google::Apis::ApphubV1::LocationAssignment::Representation
|
508
|
-
|
509
|
-
end
|
510
|
-
end
|
511
|
-
|
512
376
|
class DiscoveredService
|
513
377
|
# @private
|
514
378
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -554,29 +418,6 @@ module Google
|
|
554
418
|
end
|
555
419
|
end
|
556
420
|
|
557
|
-
class ExtraParameter
|
558
|
-
# @private
|
559
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
560
|
-
property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::ApphubV1::RegionalMigDistributionPolicy, decorator: Google::Apis::ApphubV1::RegionalMigDistributionPolicy::Representation
|
561
|
-
|
562
|
-
end
|
563
|
-
end
|
564
|
-
|
565
|
-
class IsolationExpectations
|
566
|
-
# @private
|
567
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
568
|
-
property :requirement_override, as: 'requirementOverride', class: Google::Apis::ApphubV1::RequirementOverride, decorator: Google::Apis::ApphubV1::RequirementOverride::Representation
|
569
|
-
|
570
|
-
property :zi_org_policy, as: 'ziOrgPolicy'
|
571
|
-
property :zi_region_policy, as: 'ziRegionPolicy'
|
572
|
-
property :zi_region_state, as: 'ziRegionState'
|
573
|
-
property :zone_isolation, as: 'zoneIsolation'
|
574
|
-
property :zone_separation, as: 'zoneSeparation'
|
575
|
-
property :zs_org_policy, as: 'zsOrgPolicy'
|
576
|
-
property :zs_region_state, as: 'zsRegionState'
|
577
|
-
end
|
578
|
-
end
|
579
|
-
|
580
421
|
class ListApplicationsResponse
|
581
422
|
# @private
|
582
423
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -666,32 +507,6 @@ module Google
|
|
666
507
|
end
|
667
508
|
end
|
668
509
|
|
669
|
-
class LocationAssignment
|
670
|
-
# @private
|
671
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
672
|
-
property :location, as: 'location'
|
673
|
-
property :location_type, as: 'locationType'
|
674
|
-
end
|
675
|
-
end
|
676
|
-
|
677
|
-
class LocationData
|
678
|
-
# @private
|
679
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
680
|
-
property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::ApphubV1::BlobstoreLocation, decorator: Google::Apis::ApphubV1::BlobstoreLocation::Representation
|
681
|
-
|
682
|
-
property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::ApphubV1::CloudAssetComposition, decorator: Google::Apis::ApphubV1::CloudAssetComposition::Representation
|
683
|
-
|
684
|
-
property :direct_location, as: 'directLocation', class: Google::Apis::ApphubV1::DirectLocationAssignment, decorator: Google::Apis::ApphubV1::DirectLocationAssignment::Representation
|
685
|
-
|
686
|
-
property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::ApphubV1::TenantProjectProxy, decorator: Google::Apis::ApphubV1::TenantProjectProxy::Representation
|
687
|
-
|
688
|
-
property :placer_location, as: 'placerLocation', class: Google::Apis::ApphubV1::PlacerLocation, decorator: Google::Apis::ApphubV1::PlacerLocation::Representation
|
689
|
-
|
690
|
-
property :spanner_location, as: 'spannerLocation', class: Google::Apis::ApphubV1::SpannerLocation, decorator: Google::Apis::ApphubV1::SpannerLocation::Representation
|
691
|
-
|
692
|
-
end
|
693
|
-
end
|
694
|
-
|
695
510
|
class LookupDiscoveredServiceResponse
|
696
511
|
# @private
|
697
512
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -741,13 +556,6 @@ module Google
|
|
741
556
|
end
|
742
557
|
end
|
743
558
|
|
744
|
-
class PlacerLocation
|
745
|
-
# @private
|
746
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
747
|
-
property :placer_config, as: 'placerConfig'
|
748
|
-
end
|
749
|
-
end
|
750
|
-
|
751
559
|
class Policy
|
752
560
|
# @private
|
753
561
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -768,23 +576,6 @@ module Google
|
|
768
576
|
end
|
769
577
|
end
|
770
578
|
|
771
|
-
class RegionalMigDistributionPolicy
|
772
|
-
# @private
|
773
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
774
|
-
property :target_shape, as: 'targetShape'
|
775
|
-
collection :zones, as: 'zones', class: Google::Apis::ApphubV1::ZoneConfiguration, decorator: Google::Apis::ApphubV1::ZoneConfiguration::Representation
|
776
|
-
|
777
|
-
end
|
778
|
-
end
|
779
|
-
|
780
|
-
class RequirementOverride
|
781
|
-
# @private
|
782
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
783
|
-
property :zi_override, as: 'ziOverride'
|
784
|
-
property :zs_override, as: 'zsOverride'
|
785
|
-
end
|
786
|
-
end
|
787
|
-
|
788
579
|
class Scope
|
789
580
|
# @private
|
790
581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -848,14 +639,6 @@ module Google
|
|
848
639
|
end
|
849
640
|
end
|
850
641
|
|
851
|
-
class SpannerLocation
|
852
|
-
# @private
|
853
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
854
|
-
collection :backup_name, as: 'backupName'
|
855
|
-
collection :db_name, as: 'dbName'
|
856
|
-
end
|
857
|
-
end
|
858
|
-
|
859
642
|
class Status
|
860
643
|
# @private
|
861
644
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -865,13 +648,6 @@ module Google
|
|
865
648
|
end
|
866
649
|
end
|
867
650
|
|
868
|
-
class TenantProjectProxy
|
869
|
-
# @private
|
870
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
871
|
-
collection :project_numbers, as: 'projectNumbers'
|
872
|
-
end
|
873
|
-
end
|
874
|
-
|
875
651
|
class TestIamPermissionsRequest
|
876
652
|
# @private
|
877
653
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -921,13 +697,6 @@ module Google
|
|
921
697
|
property :uri, as: 'uri'
|
922
698
|
end
|
923
699
|
end
|
924
|
-
|
925
|
-
class ZoneConfiguration
|
926
|
-
# @private
|
927
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
928
|
-
property :zone, as: 'zone'
|
929
|
-
end
|
930
|
-
end
|
931
700
|
end
|
932
701
|
end
|
933
702
|
end
|
@@ -1228,8 +1228,8 @@ module Google
|
|
1228
1228
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
1229
1229
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
1230
1230
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
1231
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
1232
|
-
# corresponding to `Code.CANCELLED`.
|
1231
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
1232
|
+
# , corresponding to `Code.CANCELLED`.
|
1233
1233
|
# @param [String] name
|
1234
1234
|
# The name of the operation resource to be cancelled.
|
1235
1235
|
# @param [Google::Apis::ApphubV1::CancelOperationRequest] cancel_operation_request_object
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.8.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apphub_v1/v0.8.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apphub_v1
|
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 V1
|
82
79
|
test_files: []
|