Skip to content

Commit 50f7534

Browse files
feat: added GenericInsight which exposes generic insights on assets (googleapis#11652)
- [ ] Regenerate this pull request now. feat: added ComputeStorageDescriptor for Compute Engine migration insights feat: added new target-related options to VirtualMachinePreferences fix: deprecated the bios_name, total_rows_count and overlapping_asset_count fields docs: updated performance_samples docs PiperOrigin-RevId: 566201137 Source-Link: googleapis/googleapis@ba00ffd Source-Link: https://github.com/googleapis/googleapis-gen/commit/0c9f327336a8fda7eeeb019a811dc53403003720 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLW1pZ3JhdGlvbmNlbnRlci8uT3dsQm90LnlhbWwiLCJoIjoiMGM5ZjMyNzMzNmE4ZmRhN2VlZWIwMTlhODExZGM1MzQwMzAwMzcyMCJ9 --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 5888064 commit 50f7534

5 files changed

Lines changed: 683 additions & 42 deletions

File tree

packages/google-cloud-migrationcenter/google/cloud/migrationcenter/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@
4545
ComputeEngineMigrationTarget,
4646
ComputeEnginePreferences,
4747
ComputeEngineShapeDescriptor,
48+
ComputeMigrationTargetProduct,
49+
ComputeStorageDescriptor,
4850
CpuUsageSample,
4951
CreateGroupRequest,
5052
CreateImportDataFileRequest,
@@ -76,6 +78,7 @@
7678
FrameViolationEntry,
7779
FstabEntry,
7880
FstabEntryList,
81+
GenericInsight,
7982
GenericPlatformDetails,
8083
GetAssetRequest,
8184
GetErrorFrameRequest,
@@ -164,6 +167,8 @@
164167
RuntimeNetworkInfo,
165168
Settings,
166169
SizingOptimizationStrategy,
170+
SoleTenancyPreferences,
171+
SoleTenantNodeType,
167172
Source,
168173
UpdateAssetRequest,
169174
UpdateGroupRequest,
@@ -176,6 +181,7 @@
176181
ValidationReport,
177182
VirtualMachinePreferences,
178183
VmwareDiskConfig,
184+
VmwareEnginePreferences,
179185
VmwarePlatformDetails,
180186
)
181187

@@ -200,6 +206,7 @@
200206
"ComputeEngineMigrationTarget",
201207
"ComputeEnginePreferences",
202208
"ComputeEngineShapeDescriptor",
209+
"ComputeStorageDescriptor",
203210
"CpuUsageSample",
204211
"CreateGroupRequest",
205212
"CreateImportDataFileRequest",
@@ -230,6 +237,7 @@
230237
"FrameViolationEntry",
231238
"FstabEntry",
232239
"FstabEntryList",
240+
"GenericInsight",
233241
"GenericPlatformDetails",
234242
"GetAssetRequest",
235243
"GetErrorFrameRequest",
@@ -311,6 +319,8 @@
311319
"RunningServiceList",
312320
"RuntimeNetworkInfo",
313321
"Settings",
322+
"SoleTenancyPreferences",
323+
"SoleTenantNodeType",
314324
"Source",
315325
"UpdateAssetRequest",
316326
"UpdateGroupRequest",
@@ -323,9 +333,11 @@
323333
"ValidationReport",
324334
"VirtualMachinePreferences",
325335
"VmwareDiskConfig",
336+
"VmwareEnginePreferences",
326337
"VmwarePlatformDetails",
327338
"AssetView",
328339
"CommitmentPlan",
340+
"ComputeMigrationTargetProduct",
329341
"ErrorFrameView",
330342
"ImportJobFormat",
331343
"ImportJobView",

packages/google-cloud-migrationcenter/google/cloud/migrationcenter_v1/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
ComputeEngineMigrationTarget,
4141
ComputeEnginePreferences,
4242
ComputeEngineShapeDescriptor,
43+
ComputeMigrationTargetProduct,
44+
ComputeStorageDescriptor,
4345
CpuUsageSample,
4446
CreateGroupRequest,
4547
CreateImportDataFileRequest,
@@ -71,6 +73,7 @@
7173
FrameViolationEntry,
7274
FstabEntry,
7375
FstabEntryList,
76+
GenericInsight,
7477
GenericPlatformDetails,
7578
GetAssetRequest,
7679
GetErrorFrameRequest,
@@ -159,6 +162,8 @@
159162
RuntimeNetworkInfo,
160163
Settings,
161164
SizingOptimizationStrategy,
165+
SoleTenancyPreferences,
166+
SoleTenantNodeType,
162167
Source,
163168
UpdateAssetRequest,
164169
UpdateGroupRequest,
@@ -171,6 +176,7 @@
171176
ValidationReport,
172177
VirtualMachinePreferences,
173178
VmwareDiskConfig,
179+
VmwareEnginePreferences,
174180
VmwarePlatformDetails,
175181
)
176182

@@ -196,6 +202,8 @@
196202
"ComputeEngineMigrationTarget",
197203
"ComputeEnginePreferences",
198204
"ComputeEngineShapeDescriptor",
205+
"ComputeMigrationTargetProduct",
206+
"ComputeStorageDescriptor",
199207
"CpuUsageSample",
200208
"CreateGroupRequest",
201209
"CreateImportDataFileRequest",
@@ -227,6 +235,7 @@
227235
"Frames",
228236
"FstabEntry",
229237
"FstabEntryList",
238+
"GenericInsight",
230239
"GenericPlatformDetails",
231240
"GetAssetRequest",
232241
"GetErrorFrameRequest",
@@ -316,6 +325,8 @@
316325
"RuntimeNetworkInfo",
317326
"Settings",
318327
"SizingOptimizationStrategy",
328+
"SoleTenancyPreferences",
329+
"SoleTenantNodeType",
319330
"Source",
320331
"UpdateAssetRequest",
321332
"UpdateGroupRequest",
@@ -328,5 +339,6 @@
328339
"ValidationReport",
329340
"VirtualMachinePreferences",
330341
"VmwareDiskConfig",
342+
"VmwareEnginePreferences",
331343
"VmwarePlatformDetails",
332344
)

packages/google-cloud-migrationcenter/google/cloud/migrationcenter_v1/types/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
ComputeEngineMigrationTarget,
3535
ComputeEnginePreferences,
3636
ComputeEngineShapeDescriptor,
37+
ComputeMigrationTargetProduct,
38+
ComputeStorageDescriptor,
3739
CpuUsageSample,
3840
CreateGroupRequest,
3941
CreateImportDataFileRequest,
@@ -65,6 +67,7 @@
6567
FrameViolationEntry,
6668
FstabEntry,
6769
FstabEntryList,
70+
GenericInsight,
6871
GenericPlatformDetails,
6972
GetAssetRequest,
7073
GetErrorFrameRequest,
@@ -153,6 +156,8 @@
153156
RuntimeNetworkInfo,
154157
Settings,
155158
SizingOptimizationStrategy,
159+
SoleTenancyPreferences,
160+
SoleTenantNodeType,
156161
Source,
157162
UpdateAssetRequest,
158163
UpdateGroupRequest,
@@ -165,6 +170,7 @@
165170
ValidationReport,
166171
VirtualMachinePreferences,
167172
VmwareDiskConfig,
173+
VmwareEnginePreferences,
168174
VmwarePlatformDetails,
169175
)
170176

@@ -187,6 +193,7 @@
187193
"ComputeEngineMigrationTarget",
188194
"ComputeEnginePreferences",
189195
"ComputeEngineShapeDescriptor",
196+
"ComputeStorageDescriptor",
190197
"CpuUsageSample",
191198
"CreateGroupRequest",
192199
"CreateImportDataFileRequest",
@@ -217,6 +224,7 @@
217224
"FrameViolationEntry",
218225
"FstabEntry",
219226
"FstabEntryList",
227+
"GenericInsight",
220228
"GenericPlatformDetails",
221229
"GetAssetRequest",
222230
"GetErrorFrameRequest",
@@ -298,6 +306,8 @@
298306
"RunningServiceList",
299307
"RuntimeNetworkInfo",
300308
"Settings",
309+
"SoleTenancyPreferences",
310+
"SoleTenantNodeType",
301311
"Source",
302312
"UpdateAssetRequest",
303313
"UpdateGroupRequest",
@@ -310,9 +320,11 @@
310320
"ValidationReport",
311321
"VirtualMachinePreferences",
312322
"VmwareDiskConfig",
323+
"VmwareEnginePreferences",
313324
"VmwarePlatformDetails",
314325
"AssetView",
315326
"CommitmentPlan",
327+
"ComputeMigrationTargetProduct",
316328
"ErrorFrameView",
317329
"ImportJobFormat",
318330
"ImportJobView",

0 commit comments

Comments
 (0)