1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
|
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="migrationcenter_v1alpha1.html">Migration Center API</a> . <a href="migrationcenter_v1alpha1.projects.html">projects</a> . <a href="migrationcenter_v1alpha1.projects.locations.html">locations</a> . <a href="migrationcenter_v1alpha1.projects.locations.sources.html">sources</a> . <a href="migrationcenter_v1alpha1.projects.locations.sources.errorFrames.html">errorFrames</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#get">get(name, view=None, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the details of an error frame.</p>
<p class="toc_element">
<code><a href="#list">list(parent, pageSize=None, pageToken=None, view=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists all error frames in a given source and location.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="get">get(name, view=None, x__xgafv=None)</code>
<pre>Gets the details of an error frame.
Args:
name: string, Required. The name of the frame to retrieve. Format: projects/{project}/locations/{location}/sources/{source}/errorFrames/{error_frame} (required)
view: string, Optional. An optional view mode to control the level of details for the frame. The default is a basic frame view.
Allowed values
ERROR_FRAME_VIEW_UNSPECIFIED - Value is unset. The system will fallback to the default value.
ERROR_FRAME_VIEW_BASIC - Include basic frame data, but not the full contents.
ERROR_FRAME_VIEW_FULL - Include everything.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Message representing a frame which failed to be processed due to an error.
"ingestionTime": "A String", # Output only. Frame ingestion time.
"name": "A String", # Output only. The identifier of the ErrorFrame.
"originalFrame": { # Contains data reported from an inventory source on an asset. # Output only. The frame that was originally reported.
"attributes": { # Generic asset attributes.
"a_key": "A String",
},
"collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on.
"databaseDeploymentDetails": { # The details of a database deployment asset. # Asset information specific for database deployments.
"aggregatedStats": { # Aggregated stats for the database deployment. # Output only. Aggregated stats for the database deployment.
"databaseCount": 42, # Output only. The number of databases in the deployment.
},
"awsRds": { # Specific details for an AWS RDS database deployment. # Optional. Details of an AWS RDS instance.
},
"edition": "A String", # The database deployment edition.
"generatedId": "A String", # The database deployment generated ID.
"manualUniqueId": "A String", # A manual unique ID set by the user.
"mysql": { # Specific details for a Mysql database deployment. # Details of a MYSQL database deployment.
"plugins": [ # Optional. List of MySql plugins.
{ # MySql plugin.
"enabled": True or False, # Required. The plugin is active.
"plugin": "A String", # Required. The plugin name.
"version": "A String", # Required. The plugin version.
},
],
"properties": [ # Optional. List of MySql properties.
{ # MySql property.
"enabled": True or False, # Required. The property is enabled.
"numericValue": "A String", # Required. The property numeric value.
"property": "A String", # Required. The property name.
},
],
"resourceGroupsCount": 42, # Optional. Number of resource groups.
"variables": [ # Optional. List of MySql variables.
{ # MySql variable.
"category": "A String", # Required. The variable category.
"value": "A String", # Required. The variable value.
"variable": "A String", # Required. The variable name.
},
],
},
"postgresql": { # Specific details for a PostgreSQL database deployment. # Details of a PostgreSQL database deployment.
"properties": [ # Optional. List of PostgreSql properties.
{ # PostgreSql property.
"enabled": True or False, # Required. The property is enabled.
"numericValue": "A String", # Required. The property numeric value.
"property": "A String", # Required. The property name.
},
],
"settings": [ # Optional. List of PostgreSql settings.
{ # PostgreSql setting.
"boolValue": True or False, # Required. The setting boolean value.
"intValue": "A String", # Required. The setting int value.
"realValue": 3.14, # Required. The setting real value.
"setting": "A String", # Required. The setting name.
"source": "A String", # Required. The setting source.
"stringValue": "A String", # Required. The setting string value. Notice that enum values are stored as strings.
"unit": "A String", # Optional. The setting unit.
},
],
},
"sqlServer": { # Specific details for a Microsoft SQL Server database deployment. # Details of a Microsoft SQL Server database deployment.
"features": [ # Optional. List of SQL Server features.
{ # SQL Server feature details.
"enabled": True or False, # Required. Field enabled is set when a feature is used on the source deployment.
"featureName": "A String", # Required. The feature name.
},
],
"serverFlags": [ # Optional. List of SQL Server server flags.
{ # SQL Server server flag details.
"serverFlagName": "A String", # Required. The server flag name.
"value": "A String", # Required. The server flag value set by the user.
"valueInUse": "A String", # Required. The server flag actual value. If `value_in_use` is different from `value` it means that either the configuration change was not applied or it is an expected behavior. See SQL Server documentation for more details.
},
],
"traceFlags": [ # Optional. List of SQL Server trace flags.
{ # SQL Server trace flag details.
"scope": "A String", # Required. The trace flag scope.
"traceFlagName": "A String", # Required. The trace flag name.
},
],
},
"topology": { # Details of database deployment's topology. # Details of the database deployment topology.
"coreCount": 42, # Optional. Number of total logical cores.
"coreLimit": 42, # Optional. Number of total logical cores limited by db deployment.
"diskAllocatedBytes": "A String", # Optional. Disk allocated in bytes.
"diskUsedBytes": "A String", # Optional. Disk used in bytes.
"instances": [ # Optional. List of database instances.
{ # Details of a database instance.
"instanceName": "A String", # The instance's name.
"network": { # Network details of a database instance. # Optional. Networking details.
"hostNames": [ # Optional. The instance's host names.
"A String",
],
"ipAddresses": [ # Optional. The instance's IP addresses.
"A String",
],
"primaryMacAddress": "A String", # Optional. The instance's primary MAC address.
},
"role": "A String", # The instance role in the database engine.
},
],
"memoryBytes": "A String", # Optional. Total memory in bytes.
"memoryLimitBytes": "A String", # Optional. Total memory in bytes limited by db deployment.
"physicalCoreCount": 42, # Optional. Number of total physical cores.
"physicalCoreLimit": 42, # Optional. Number of total physical cores limited by db deployment.
},
"version": "A String", # The database deployment version.
},
"databaseDetails": { # Details of a logical database. # Asset information specific for logical databases.
"allocatedStorageBytes": "A String", # The allocated storage for the database in bytes.
"databaseName": "A String", # The name of the database.
"parentDatabaseDeployment": { # The identifiers of the parent database deployment. # The parent database deployment that contains the logical database.
"generatedId": "A String", # The parent database deployment generated ID.
"manualUniqueId": "A String", # The parent database deployment optional manual unique ID set by the user.
},
"schemas": [ # The database schemas.
{ # Details of a database schema.
"mysql": { # Specific details for a Mysql database. # Details of a Mysql schema.
"storageEngines": [ # Optional. Mysql storage engine tables.
{ # Mysql storage engine tables.
"encryptedTableCount": 42, # Optional. The number of encrypted tables.
"engine": "A String", # Required. The storage engine.
"tableCount": 42, # Optional. The number of tables.
},
],
},
"objects": [ # List of details of objects by category.
{ # Details of a group of database objects.
"category": "A String", # The category of the objects.
"count": "A String", # The number of objects.
},
],
"postgresql": { # Specific details for a PostgreSql schema. # Details of a PostgreSql schema.
"foreignTablesCount": 42, # Optional. PostgreSql foreign tables.
"postgresqlExtensions": [ # Optional. PostgreSql extensions.
{ # PostgreSql extension.
"extension": "A String", # Required. The extension name.
"version": "A String", # Required. The extension version.
},
],
},
"schemaName": "A String", # The name of the schema.
"sqlServer": { # Specific details for a SqlServer database. # Details of a SqlServer schema.
"clrObjectCount": 42, # Optional. SqlServer number of CLR objects.
},
"tablesSizeBytes": "A String", # The total size of tables in bytes.
},
],
},
"labels": { # Labels as key value pairs.
"a_key": "A String",
},
"machineDetails": { # Details of a machine. # Asset information specific for virtual and physical machines.
"architecture": { # Details of the machine architecture. # Architecture details (vendor, CPU architecture).
"bios": { # Details about the BIOS. # BIOS Details.
"biosManufacturer": "A String", # BIOS manufacturer.
"biosName": "A String", # BIOS name.
"biosReleaseDate": "A String", # BIOS release date.
"biosVersion": "A String", # BIOS version.
"smbiosUuid": "A String", # SMBIOS UUID.
},
"cpuArchitecture": "A String", # CPU architecture, e.g., "x64-based PC", "x86_64", "i686" etc.
"cpuManufacturer": "A String", # Optional. CPU manufacturer, e.g., "Intel", "AMD".
"cpuName": "A String", # CPU name, e.g., "Intel Xeon E5-2690", "AMD EPYC 7571" etc.
"cpuSocketCount": 42, # Number of processor sockets allocated to the machine.
"firmwareType": "A String", # Firmware type.
"hyperthreading": "A String", # CPU hyper-threading support.
"vendor": "A String", # Hardware vendor.
},
"coreCount": 42, # Number of logical CPU cores in the machine. Must be non-negative.
"createTime": "A String", # Machine creation time.
"diskPartitions": { # Disk partition details. # Optional. Disk partitions details. Note: Partitions are not necessarily mounted on local disks and therefore might not have a one-to-one correspondence with local disks.
"freeSpaceBytes": "A String", # Output only. Total free space of all partitions.
"partitions": { # Disk partition list. # Optional. List of partitions.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"totalCapacityBytes": "A String", # Output only. Total capacity of all partitions.
},
"disks": { # Details of machine disks. # Disk details.
"disks": { # VM disks. # List of disks.
"entries": [ # Disk entries.
{ # Single disk entry.
"diskLabel": "A String", # Disk label.
"diskLabelType": "A String", # Disk label type (e.g. BIOS/GPT)
"hwAddress": "A String", # Disk hardware address (e.g. 0:1 for SCSI).
"interfaceType": "A String", # Disks interface type (e.g. SATA/SCSI)
"partitions": { # Disk partition list. # Partition layout.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"status": "A String", # Disk status (e.g. online).
"totalCapacityBytes": "A String", # Disk capacity.
"totalFreeBytes": "A String", # Disk free space.
},
],
},
"rawScanResult": "A String", # Raw disk scan result. This field is intended for human inspection. The format of this field may be lsblk output or any another raw output. The exact format may change without notice and should not be relied upon.
"totalCapacityBytes": "A String", # Disk total Capacity.
"totalFreeBytes": "A String", # Total disk free space.
},
"guestOs": { # Information from Guest-level collections. # Guest OS information.
"config": { # Guest OS config information. # OS and app configuration.
"fstab": { # Fstab content. # Mount list (Linux fstab).
"entries": [ # Fstab entries.
{ # Single fstab entry.
"file": "A String", # The mount point for the filesystem.
"freq": 42, # Used by dump to determine which filesystems need to be dumped.
"mntops": "A String", # Mount options associated with the filesystem.
"passno": 42, # Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.
"spec": "A String", # The block special device or remote filesystem to be mounted.
"vfstype": "A String", # The type of the filesystem.
},
],
},
"hosts": { # Hosts content. # Output only. Hosts file (/etc/hosts).
"entries": [ # Output only. Hosts entries.
{ # Single /etc/hosts entry.
"hostNames": [ # List of host names / aliases.
"A String",
],
"ip": "A String", # IP (raw, IPv4/6 agnostic).
},
],
},
"issue": "A String", # OS issue (typically /etc/issue in Linux).
"nfsExports": { # NFS exports. # NFS exports.
"entries": [ # NFS export entries.
{ # NFS export.
"exportDirectory": "A String", # The directory being exported.
"hosts": [ # The hosts or networks to which the export is being shared.
"A String",
],
},
],
},
"selinux": { # SELinux details. # SELinux details.
"enabled": True or False, # Is SELinux enabled.
"mode": "A String", # SELinux mode enforcing / permissive.
},
},
"runtime": { # Guest OS runtime information. # Runtime information.
"domain": "A String", # Domain, e.g. c.stratozone-development.internal.
"installedApps": { # Guest installed application list. # Installed applications information.
"entries": [ # Application entries.
{ # Guest installed application information.
"licenses": [ # License strings associated with the installed application.
"A String",
],
"name": "A String", # Installed application name.
"path": "A String", # Source path.
"time": "A String", # Date application was installed.
"vendor": "A String", # Installed application vendor.
"version": "A String", # Installed application version.
},
],
},
"lastUptime": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # Date since last booted (last uptime date).
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
},
"machineName": "A String", # Machine name.
"networkInfo": { # Runtime networking information. # Runtime network information (connections, ports).
"connections": { # Network connection list. # Network connections.
"entries": [ # Network connection entries.
{
"localIpAddress": "A String", # Local IP address.
"localPort": 42, # Local port.
"pid": "A String", # Process ID.
"processName": "A String", # Process or service name.
"protocol": "A String", # Connection protocol (e.g. TCP/UDP).
"remoteIpAddress": "A String", # Remote IP address.
"remotePort": 42, # Remote port.
"state": "A String", # Connection state (e.g. CONNECTED).
},
],
},
"netstat": "A String", # Netstat (raw, OS-agnostic).
"netstatTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year, month, or day are 0, the DateTime is considered not to have a specific year, month, or day respectively. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # Netstat time collected.
"day": 42, # Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.
"hours": 42, # Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.
"month": 42, # Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.
"nanos": 42, # Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.
"seconds": 42, # Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.
"timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
"id": "A String", # IANA Time Zone Database time zone. For example "America/New_York".
"version": "A String", # Optional. IANA Time Zone Database version number. For example "2019a".
},
"utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
"year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
},
},
"openFileList": { # Open file list. # Open files information.
"entries": [ # Open file details entries.
{ # Open file Information.
"command": "A String", # Opened file command.
"filePath": "A String", # Opened file file path.
"fileType": "A String", # Opened file file type.
"user": "A String", # Opened file user.
},
],
},
"processes": { # List of running guest OS processes. # Running processes.
"processes": [ # Running process entries.
{ # Guest OS running process details.
"attributes": { # Process extended attributes.
"a_key": "A String",
},
"cmdline": "A String", # Process full command line.
"exePath": "A String", # Process binary path.
"pid": "A String", # Process ID.
"user": "A String", # User running the process.
},
],
},
"services": { # List of running guest OS services. # Running background services.
"services": [ # Running service entries.
{ # Guest OS running service details.
"cmdline": "A String", # Service command line.
"exePath": "A String", # Service binary path.
"name": "A String", # Service name.
"pid": "A String", # Service pid.
"startMode": "A String", # Service start mode (raw, OS-agnostic).
"state": "A String", # Service state (raw, OS-agnostic).
"status": "A String", # Service status.
},
],
},
},
},
"machineName": "A String", # Machine name.
"memoryMb": 42, # The amount of memory in the machine. Must be non-negative.
"network": { # Details of network adapters and settings. # Network details.
"defaultGateway": "A String", # Default gateway address.
"networkAdapters": { # List of network adapters. # List of network adapters.
"networkAdapters": [ # Network adapter descriptions.
{ # Details of network adapter.
"adapterType": "A String", # Network adapter type (e.g. VMXNET3).
"addresses": { # List of allocated/assigned network addresses. # NetworkAddressList
"addresses": [ # Network address entries.
{ # Details of network address.
"assignment": "A String", # Whether DHCP is used to assign addresses.
"bcast": "A String", # Broadcast address.
"fqdn": "A String", # Fully qualified domain name.
"ipAddress": "A String", # Assigned or configured IP Address.
"subnetMask": "A String", # Subnet mask.
},
],
},
"macAddress": "A String", # MAC address.
},
],
},
"primaryIpAddress": "A String", # The primary IP address of the machine.
"primaryMacAddress": "A String", # MAC address of the machine. This property is used to uniqly identify the machine.
"publicIpAddress": "A String", # The public IP address of the machine.
},
"platform": { # Information about the platform. # Platform specific information.
"awsEc2Details": { # AWS EC2 specific details. # AWS EC2 specific details.
"hyperthreading": "A String", # Optional. Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the AWS format.
"machineTypeLabel": "A String", # AWS platform's machine type label.
},
"azureVmDetails": { # Azure VM specific details. # Azure VM specific details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the Azure format.
"machineTypeLabel": "A String", # Azure platform's machine type label.
"provisioningState": "A String", # Azure platform's provisioning state.
},
"genericDetails": { # Generic platform details. # Generic platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different VMs in the same location may have different string values for this field.
},
"physicalDetails": { # Platform specific details for Physical Machines. # Physical machines platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different machines in the same location may have different string values for this field.
},
"vmwareDetails": { # VMware specific details. # VMware specific details.
"esxHyperthreading": "A String", # Whether the ESX is hyperthreaded.
"esxVersion": "A String", # ESX version.
"osid": "A String", # VMware os enum - https://vdc-repo.vmware.com/vmwb-repository/dcr-public/da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html.
"vcenterVersion": "A String", # vCenter version.
},
},
"powerState": "A String", # Power state of the machine.
"uuid": "A String", # Machine unique identifier.
},
"performanceSamples": [ # Asset performance data samples. Samples that are from more than 40 days ago or after tomorrow are ignored.
{ # Performance data sample.
"cpu": { # CPU usage sample. # CPU usage sample.
"utilizedPercentage": 3.14, # Percentage of total CPU capacity utilized. Must be in the interval [0, 100]. On most systems can be calculated using 100 - idle percentage.
},
"disk": { # Disk usage sample. Values are across all disks. # Disk usage sample.
"averageIops": 3.14, # Average IOPS sampled over a short window. Must be non-negative. If read or write are set, the sum of read and write will override the value of the average_iops.
"averageReadIops": 3.14, # Average read IOPS sampled over a short window. Must be non-negative. If both read and write are zero they are ignored.
"averageWriteIops": 3.14, # Average write IOPS sampled over a short window. Must be non-negative. If both read and write are zero they are ignored.
},
"memory": { # Memory usage sample. # Memory usage sample.
"utilizedPercentage": 3.14, # Percentage of system memory utilized. Must be in the interval [0, 100].
},
"network": { # Network usage sample. Values are across all network interfaces. # Network usage sample.
"averageEgressBps": 3.14, # Average network egress in B/s sampled over a short window. Must be non-negative.
"averageIngressBps": 3.14, # Average network ingress in B/s sampled over a short window. Must be non-negative.
},
"sampleTime": "A String", # Time the sample was collected. If omitted, the frame report time will be used.
},
],
"reportTime": "A String", # The time the data was reported.
"traceToken": "A String", # Optional. Trace token is optionally provided to assist with debugging and traceability.
"virtualMachineDetails": { # Details of a VirtualMachine. # Asset information specific for virtual machines.
"coreCount": 42, # Number of logical CPU cores in the VirtualMachine. Must be non-negative.
"createTime": "A String", # VM creation timestamp.
"diskPartitions": { # Disk partition details. # Optional. Disk partitions details. Note: Partitions are not necessarily mounted on local disks and therefore might not have a one-to-one correspondence with local disks.
"freeSpaceBytes": "A String", # Output only. Total free space of all partitions.
"partitions": { # Disk partition list. # Optional. List of partitions.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"totalCapacityBytes": "A String", # Output only. Total capacity of all partitions.
},
"guestOs": { # Information from Guest-level collections. # Guest OS information.
"config": { # Guest OS config information. # OS and app configuration.
"fstab": { # Fstab content. # Mount list (Linux fstab).
"entries": [ # Fstab entries.
{ # Single fstab entry.
"file": "A String", # The mount point for the filesystem.
"freq": 42, # Used by dump to determine which filesystems need to be dumped.
"mntops": "A String", # Mount options associated with the filesystem.
"passno": 42, # Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.
"spec": "A String", # The block special device or remote filesystem to be mounted.
"vfstype": "A String", # The type of the filesystem.
},
],
},
"hosts": { # Hosts content. # Output only. Hosts file (/etc/hosts).
"entries": [ # Output only. Hosts entries.
{ # Single /etc/hosts entry.
"hostNames": [ # List of host names / aliases.
"A String",
],
"ip": "A String", # IP (raw, IPv4/6 agnostic).
},
],
},
"issue": "A String", # OS issue (typically /etc/issue in Linux).
"nfsExports": { # NFS exports. # NFS exports.
"entries": [ # NFS export entries.
{ # NFS export.
"exportDirectory": "A String", # The directory being exported.
"hosts": [ # The hosts or networks to which the export is being shared.
"A String",
],
},
],
},
"selinux": { # SELinux details. # SELinux details.
"enabled": True or False, # Is SELinux enabled.
"mode": "A String", # SELinux mode enforcing / permissive.
},
},
"runtime": { # Guest OS runtime information. # Runtime information.
"domain": "A String", # Domain, e.g. c.stratozone-development.internal.
"installedApps": { # Guest installed application list. # Installed applications information.
"entries": [ # Application entries.
{ # Guest installed application information.
"licenses": [ # License strings associated with the installed application.
"A String",
],
"name": "A String", # Installed application name.
"path": "A String", # Source path.
"time": "A String", # Date application was installed.
"vendor": "A String", # Installed application vendor.
"version": "A String", # Installed application version.
},
],
},
"lastUptime": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # Date since last booted (last uptime date).
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
},
"machineName": "A String", # Machine name.
"networkInfo": { # Runtime networking information. # Runtime network information (connections, ports).
"connections": { # Network connection list. # Network connections.
"entries": [ # Network connection entries.
{
"localIpAddress": "A String", # Local IP address.
"localPort": 42, # Local port.
"pid": "A String", # Process ID.
"processName": "A String", # Process or service name.
"protocol": "A String", # Connection protocol (e.g. TCP/UDP).
"remoteIpAddress": "A String", # Remote IP address.
"remotePort": 42, # Remote port.
"state": "A String", # Connection state (e.g. CONNECTED).
},
],
},
"netstat": "A String", # Netstat (raw, OS-agnostic).
"netstatTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year, month, or day are 0, the DateTime is considered not to have a specific year, month, or day respectively. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # Netstat time collected.
"day": 42, # Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.
"hours": 42, # Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.
"month": 42, # Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.
"nanos": 42, # Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.
"seconds": 42, # Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.
"timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
"id": "A String", # IANA Time Zone Database time zone. For example "America/New_York".
"version": "A String", # Optional. IANA Time Zone Database version number. For example "2019a".
},
"utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
"year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
},
},
"openFileList": { # Open file list. # Open files information.
"entries": [ # Open file details entries.
{ # Open file Information.
"command": "A String", # Opened file command.
"filePath": "A String", # Opened file file path.
"fileType": "A String", # Opened file file type.
"user": "A String", # Opened file user.
},
],
},
"processes": { # List of running guest OS processes. # Running processes.
"processes": [ # Running process entries.
{ # Guest OS running process details.
"attributes": { # Process extended attributes.
"a_key": "A String",
},
"cmdline": "A String", # Process full command line.
"exePath": "A String", # Process binary path.
"pid": "A String", # Process ID.
"user": "A String", # User running the process.
},
],
},
"services": { # List of running guest OS services. # Running background services.
"services": [ # Running service entries.
{ # Guest OS running service details.
"cmdline": "A String", # Service command line.
"exePath": "A String", # Service binary path.
"name": "A String", # Service name.
"pid": "A String", # Service pid.
"startMode": "A String", # Service start mode (raw, OS-agnostic).
"state": "A String", # Service state (raw, OS-agnostic).
"status": "A String", # Service status.
},
],
},
},
},
"memoryMb": 42, # The amount of memory in the VirtualMachine. Must be non-negative.
"osFamily": "A String", # What family the OS belong to, if known.
"osName": "A String", # The name of the operating system running on the VirtualMachine.
"osVersion": "A String", # The version of the operating system running on the virtual machine.
"platform": { # Information about the platform. # Platform information.
"awsEc2Details": { # AWS EC2 specific details. # AWS EC2 specific details.
"hyperthreading": "A String", # Optional. Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the AWS format.
"machineTypeLabel": "A String", # AWS platform's machine type label.
},
"azureVmDetails": { # Azure VM specific details. # Azure VM specific details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the Azure format.
"machineTypeLabel": "A String", # Azure platform's machine type label.
"provisioningState": "A String", # Azure platform's provisioning state.
},
"genericDetails": { # Generic platform details. # Generic platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different VMs in the same location may have different string values for this field.
},
"physicalDetails": { # Platform specific details for Physical Machines. # Physical machines platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different machines in the same location may have different string values for this field.
},
"vmwareDetails": { # VMware specific details. # VMware specific details.
"esxHyperthreading": "A String", # Whether the ESX is hyperthreaded.
"esxVersion": "A String", # ESX version.
"osid": "A String", # VMware os enum - https://vdc-repo.vmware.com/vmwb-repository/dcr-public/da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html.
"vcenterVersion": "A String", # vCenter version.
},
},
"powerState": "A String", # Power state of VM (poweredOn or poweredOff).
"vcenterFolder": "A String", # Folder name in vCenter where asset resides.
"vcenterUrl": "A String", # vCenter URL used in collection.
"vcenterVmId": "A String", # vCenter VM ID.
"vmArchitecture": { # Details of the VM architecture. # VM architecture details (vendor, cpu arch).
"bios": { # Details about the BIOS. # BIOS Details.
"biosManufacturer": "A String", # BIOS manufacturer.
"biosName": "A String", # BIOS name.
"biosReleaseDate": "A String", # BIOS release date.
"biosVersion": "A String", # BIOS version.
"smbiosUuid": "A String", # SMBIOS UUID.
},
"cpuArchitecture": "A String", # CPU architecture, e.g., "x64-based PC", "x86_64", "i686" etc.
"cpuManufacturer": "A String", # CPU manufacturer, e.g., "Intel", "AMD".
"cpuName": "A String", # CPU name, e.g., "Intel Xeon E5-2690", "AMD EPYC 7571" etc.
"cpuSocketCount": 42, # Number of processor sockets allocated to the machine.
"cpuThreadCount": 42, # Deprecated: use VirtualMachineDetails.core_count instead. Number of CPU threads allocated to the machine.
"firmware": "A String", # Firmware (BIOS/efi).
"hyperthreading": "A String", # CPU hyperthreading support.
"vendor": "A String", # Hardware vendor.
},
"vmDisks": { # Details of VM disks. # VM disk details.
"disks": { # VM disks. # List of disks.
"entries": [ # Disk entries.
{ # Single disk entry.
"diskLabel": "A String", # Disk label.
"diskLabelType": "A String", # Disk label type (e.g. BIOS/GPT)
"hwAddress": "A String", # Disk hardware address (e.g. 0:1 for SCSI).
"interfaceType": "A String", # Disks interface type (e.g. SATA/SCSI)
"partitions": { # Disk partition list. # Partition layout.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"status": "A String", # Disk status (e.g. online).
"totalCapacityBytes": "A String", # Disk capacity.
"totalFreeBytes": "A String", # Disk free space.
},
],
},
"hddTotalCapacityBytes": "A String", # Disk total Capacity.
"hddTotalFreeBytes": "A String", # Total Disk Free Space.
"lsblkJson": "A String", # Raw lsblk output in json.
},
"vmName": "A String", # Virtual Machine display name.
"vmNetwork": { # Details of network adapters and settings. # VM network details.
"defaultGw": "A String", # Default gateway address.
"networkAdapters": { # List of network adapters. # List of network adapters.
"networkAdapters": [ # Network adapter descriptions.
{ # Details of network adapter.
"adapterType": "A String", # Network adapter type (e.g. VMXNET3).
"addresses": { # List of allocated/assigned network addresses. # NetworkAddressList
"addresses": [ # Network address entries.
{ # Details of network address.
"assignment": "A String", # Whether DHCP is used to assign addresses.
"bcast": "A String", # Broadcast address.
"fqdn": "A String", # Fully qualified domain name.
"ipAddress": "A String", # Assigned or configured IP Address.
"subnetMask": "A String", # Subnet mask.
},
],
},
"macAddress": "A String", # MAC address.
},
],
},
"primaryIpAddress": "A String", # IP address of the machine.
"primaryMacAddress": "A String", # MAC address of the machine. This property is used to uniqly identify the machine.
"publicIpAddress": "A String", # Public IP address of the machine.
},
"vmUuid": "A String", # Virtual Machine unique identifier.
},
},
"violations": [ # Output only. All the violations that were detected for the frame.
{ # A resource that contains a single violation of a reported `AssetFrame` resource.
"field": "A String", # The field of the original frame where the violation occurred.
"violation": "A String", # A message describing the violation.
},
],
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, pageSize=None, pageToken=None, view=None, x__xgafv=None)</code>
<pre>Lists all error frames in a given source and location.
Args:
parent: string, Required. Parent value (the source) for `ListErrorFramesRequest`. (required)
pageSize: integer, Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
pageToken: string, A token identifying a page of results the server should return.
view: string, Optional. An optional view mode to control the level of details of each error frame. The default is a BASIC frame view.
Allowed values
ERROR_FRAME_VIEW_UNSPECIFIED - Value is unset. The system will fallback to the default value.
ERROR_FRAME_VIEW_BASIC - Include basic frame data, but not the full contents.
ERROR_FRAME_VIEW_FULL - Include everything.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A response for listing error frames.
"errorFrames": [ # The list of error frames.
{ # Message representing a frame which failed to be processed due to an error.
"ingestionTime": "A String", # Output only. Frame ingestion time.
"name": "A String", # Output only. The identifier of the ErrorFrame.
"originalFrame": { # Contains data reported from an inventory source on an asset. # Output only. The frame that was originally reported.
"attributes": { # Generic asset attributes.
"a_key": "A String",
},
"collectionType": "A String", # Optional. Frame collection type, if not specified the collection type will be based on the source type of the source the frame was reported on.
"databaseDeploymentDetails": { # The details of a database deployment asset. # Asset information specific for database deployments.
"aggregatedStats": { # Aggregated stats for the database deployment. # Output only. Aggregated stats for the database deployment.
"databaseCount": 42, # Output only. The number of databases in the deployment.
},
"awsRds": { # Specific details for an AWS RDS database deployment. # Optional. Details of an AWS RDS instance.
},
"edition": "A String", # The database deployment edition.
"generatedId": "A String", # The database deployment generated ID.
"manualUniqueId": "A String", # A manual unique ID set by the user.
"mysql": { # Specific details for a Mysql database deployment. # Details of a MYSQL database deployment.
"plugins": [ # Optional. List of MySql plugins.
{ # MySql plugin.
"enabled": True or False, # Required. The plugin is active.
"plugin": "A String", # Required. The plugin name.
"version": "A String", # Required. The plugin version.
},
],
"properties": [ # Optional. List of MySql properties.
{ # MySql property.
"enabled": True or False, # Required. The property is enabled.
"numericValue": "A String", # Required. The property numeric value.
"property": "A String", # Required. The property name.
},
],
"resourceGroupsCount": 42, # Optional. Number of resource groups.
"variables": [ # Optional. List of MySql variables.
{ # MySql variable.
"category": "A String", # Required. The variable category.
"value": "A String", # Required. The variable value.
"variable": "A String", # Required. The variable name.
},
],
},
"postgresql": { # Specific details for a PostgreSQL database deployment. # Details of a PostgreSQL database deployment.
"properties": [ # Optional. List of PostgreSql properties.
{ # PostgreSql property.
"enabled": True or False, # Required. The property is enabled.
"numericValue": "A String", # Required. The property numeric value.
"property": "A String", # Required. The property name.
},
],
"settings": [ # Optional. List of PostgreSql settings.
{ # PostgreSql setting.
"boolValue": True or False, # Required. The setting boolean value.
"intValue": "A String", # Required. The setting int value.
"realValue": 3.14, # Required. The setting real value.
"setting": "A String", # Required. The setting name.
"source": "A String", # Required. The setting source.
"stringValue": "A String", # Required. The setting string value. Notice that enum values are stored as strings.
"unit": "A String", # Optional. The setting unit.
},
],
},
"sqlServer": { # Specific details for a Microsoft SQL Server database deployment. # Details of a Microsoft SQL Server database deployment.
"features": [ # Optional. List of SQL Server features.
{ # SQL Server feature details.
"enabled": True or False, # Required. Field enabled is set when a feature is used on the source deployment.
"featureName": "A String", # Required. The feature name.
},
],
"serverFlags": [ # Optional. List of SQL Server server flags.
{ # SQL Server server flag details.
"serverFlagName": "A String", # Required. The server flag name.
"value": "A String", # Required. The server flag value set by the user.
"valueInUse": "A String", # Required. The server flag actual value. If `value_in_use` is different from `value` it means that either the configuration change was not applied or it is an expected behavior. See SQL Server documentation for more details.
},
],
"traceFlags": [ # Optional. List of SQL Server trace flags.
{ # SQL Server trace flag details.
"scope": "A String", # Required. The trace flag scope.
"traceFlagName": "A String", # Required. The trace flag name.
},
],
},
"topology": { # Details of database deployment's topology. # Details of the database deployment topology.
"coreCount": 42, # Optional. Number of total logical cores.
"coreLimit": 42, # Optional. Number of total logical cores limited by db deployment.
"diskAllocatedBytes": "A String", # Optional. Disk allocated in bytes.
"diskUsedBytes": "A String", # Optional. Disk used in bytes.
"instances": [ # Optional. List of database instances.
{ # Details of a database instance.
"instanceName": "A String", # The instance's name.
"network": { # Network details of a database instance. # Optional. Networking details.
"hostNames": [ # Optional. The instance's host names.
"A String",
],
"ipAddresses": [ # Optional. The instance's IP addresses.
"A String",
],
"primaryMacAddress": "A String", # Optional. The instance's primary MAC address.
},
"role": "A String", # The instance role in the database engine.
},
],
"memoryBytes": "A String", # Optional. Total memory in bytes.
"memoryLimitBytes": "A String", # Optional. Total memory in bytes limited by db deployment.
"physicalCoreCount": 42, # Optional. Number of total physical cores.
"physicalCoreLimit": 42, # Optional. Number of total physical cores limited by db deployment.
},
"version": "A String", # The database deployment version.
},
"databaseDetails": { # Details of a logical database. # Asset information specific for logical databases.
"allocatedStorageBytes": "A String", # The allocated storage for the database in bytes.
"databaseName": "A String", # The name of the database.
"parentDatabaseDeployment": { # The identifiers of the parent database deployment. # The parent database deployment that contains the logical database.
"generatedId": "A String", # The parent database deployment generated ID.
"manualUniqueId": "A String", # The parent database deployment optional manual unique ID set by the user.
},
"schemas": [ # The database schemas.
{ # Details of a database schema.
"mysql": { # Specific details for a Mysql database. # Details of a Mysql schema.
"storageEngines": [ # Optional. Mysql storage engine tables.
{ # Mysql storage engine tables.
"encryptedTableCount": 42, # Optional. The number of encrypted tables.
"engine": "A String", # Required. The storage engine.
"tableCount": 42, # Optional. The number of tables.
},
],
},
"objects": [ # List of details of objects by category.
{ # Details of a group of database objects.
"category": "A String", # The category of the objects.
"count": "A String", # The number of objects.
},
],
"postgresql": { # Specific details for a PostgreSql schema. # Details of a PostgreSql schema.
"foreignTablesCount": 42, # Optional. PostgreSql foreign tables.
"postgresqlExtensions": [ # Optional. PostgreSql extensions.
{ # PostgreSql extension.
"extension": "A String", # Required. The extension name.
"version": "A String", # Required. The extension version.
},
],
},
"schemaName": "A String", # The name of the schema.
"sqlServer": { # Specific details for a SqlServer database. # Details of a SqlServer schema.
"clrObjectCount": 42, # Optional. SqlServer number of CLR objects.
},
"tablesSizeBytes": "A String", # The total size of tables in bytes.
},
],
},
"labels": { # Labels as key value pairs.
"a_key": "A String",
},
"machineDetails": { # Details of a machine. # Asset information specific for virtual and physical machines.
"architecture": { # Details of the machine architecture. # Architecture details (vendor, CPU architecture).
"bios": { # Details about the BIOS. # BIOS Details.
"biosManufacturer": "A String", # BIOS manufacturer.
"biosName": "A String", # BIOS name.
"biosReleaseDate": "A String", # BIOS release date.
"biosVersion": "A String", # BIOS version.
"smbiosUuid": "A String", # SMBIOS UUID.
},
"cpuArchitecture": "A String", # CPU architecture, e.g., "x64-based PC", "x86_64", "i686" etc.
"cpuManufacturer": "A String", # Optional. CPU manufacturer, e.g., "Intel", "AMD".
"cpuName": "A String", # CPU name, e.g., "Intel Xeon E5-2690", "AMD EPYC 7571" etc.
"cpuSocketCount": 42, # Number of processor sockets allocated to the machine.
"firmwareType": "A String", # Firmware type.
"hyperthreading": "A String", # CPU hyper-threading support.
"vendor": "A String", # Hardware vendor.
},
"coreCount": 42, # Number of logical CPU cores in the machine. Must be non-negative.
"createTime": "A String", # Machine creation time.
"diskPartitions": { # Disk partition details. # Optional. Disk partitions details. Note: Partitions are not necessarily mounted on local disks and therefore might not have a one-to-one correspondence with local disks.
"freeSpaceBytes": "A String", # Output only. Total free space of all partitions.
"partitions": { # Disk partition list. # Optional. List of partitions.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"totalCapacityBytes": "A String", # Output only. Total capacity of all partitions.
},
"disks": { # Details of machine disks. # Disk details.
"disks": { # VM disks. # List of disks.
"entries": [ # Disk entries.
{ # Single disk entry.
"diskLabel": "A String", # Disk label.
"diskLabelType": "A String", # Disk label type (e.g. BIOS/GPT)
"hwAddress": "A String", # Disk hardware address (e.g. 0:1 for SCSI).
"interfaceType": "A String", # Disks interface type (e.g. SATA/SCSI)
"partitions": { # Disk partition list. # Partition layout.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"status": "A String", # Disk status (e.g. online).
"totalCapacityBytes": "A String", # Disk capacity.
"totalFreeBytes": "A String", # Disk free space.
},
],
},
"rawScanResult": "A String", # Raw disk scan result. This field is intended for human inspection. The format of this field may be lsblk output or any another raw output. The exact format may change without notice and should not be relied upon.
"totalCapacityBytes": "A String", # Disk total Capacity.
"totalFreeBytes": "A String", # Total disk free space.
},
"guestOs": { # Information from Guest-level collections. # Guest OS information.
"config": { # Guest OS config information. # OS and app configuration.
"fstab": { # Fstab content. # Mount list (Linux fstab).
"entries": [ # Fstab entries.
{ # Single fstab entry.
"file": "A String", # The mount point for the filesystem.
"freq": 42, # Used by dump to determine which filesystems need to be dumped.
"mntops": "A String", # Mount options associated with the filesystem.
"passno": 42, # Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.
"spec": "A String", # The block special device or remote filesystem to be mounted.
"vfstype": "A String", # The type of the filesystem.
},
],
},
"hosts": { # Hosts content. # Output only. Hosts file (/etc/hosts).
"entries": [ # Output only. Hosts entries.
{ # Single /etc/hosts entry.
"hostNames": [ # List of host names / aliases.
"A String",
],
"ip": "A String", # IP (raw, IPv4/6 agnostic).
},
],
},
"issue": "A String", # OS issue (typically /etc/issue in Linux).
"nfsExports": { # NFS exports. # NFS exports.
"entries": [ # NFS export entries.
{ # NFS export.
"exportDirectory": "A String", # The directory being exported.
"hosts": [ # The hosts or networks to which the export is being shared.
"A String",
],
},
],
},
"selinux": { # SELinux details. # SELinux details.
"enabled": True or False, # Is SELinux enabled.
"mode": "A String", # SELinux mode enforcing / permissive.
},
},
"runtime": { # Guest OS runtime information. # Runtime information.
"domain": "A String", # Domain, e.g. c.stratozone-development.internal.
"installedApps": { # Guest installed application list. # Installed applications information.
"entries": [ # Application entries.
{ # Guest installed application information.
"licenses": [ # License strings associated with the installed application.
"A String",
],
"name": "A String", # Installed application name.
"path": "A String", # Source path.
"time": "A String", # Date application was installed.
"vendor": "A String", # Installed application vendor.
"version": "A String", # Installed application version.
},
],
},
"lastUptime": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # Date since last booted (last uptime date).
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
},
"machineName": "A String", # Machine name.
"networkInfo": { # Runtime networking information. # Runtime network information (connections, ports).
"connections": { # Network connection list. # Network connections.
"entries": [ # Network connection entries.
{
"localIpAddress": "A String", # Local IP address.
"localPort": 42, # Local port.
"pid": "A String", # Process ID.
"processName": "A String", # Process or service name.
"protocol": "A String", # Connection protocol (e.g. TCP/UDP).
"remoteIpAddress": "A String", # Remote IP address.
"remotePort": 42, # Remote port.
"state": "A String", # Connection state (e.g. CONNECTED).
},
],
},
"netstat": "A String", # Netstat (raw, OS-agnostic).
"netstatTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year, month, or day are 0, the DateTime is considered not to have a specific year, month, or day respectively. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # Netstat time collected.
"day": 42, # Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.
"hours": 42, # Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.
"month": 42, # Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.
"nanos": 42, # Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.
"seconds": 42, # Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.
"timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
"id": "A String", # IANA Time Zone Database time zone. For example "America/New_York".
"version": "A String", # Optional. IANA Time Zone Database version number. For example "2019a".
},
"utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
"year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
},
},
"openFileList": { # Open file list. # Open files information.
"entries": [ # Open file details entries.
{ # Open file Information.
"command": "A String", # Opened file command.
"filePath": "A String", # Opened file file path.
"fileType": "A String", # Opened file file type.
"user": "A String", # Opened file user.
},
],
},
"processes": { # List of running guest OS processes. # Running processes.
"processes": [ # Running process entries.
{ # Guest OS running process details.
"attributes": { # Process extended attributes.
"a_key": "A String",
},
"cmdline": "A String", # Process full command line.
"exePath": "A String", # Process binary path.
"pid": "A String", # Process ID.
"user": "A String", # User running the process.
},
],
},
"services": { # List of running guest OS services. # Running background services.
"services": [ # Running service entries.
{ # Guest OS running service details.
"cmdline": "A String", # Service command line.
"exePath": "A String", # Service binary path.
"name": "A String", # Service name.
"pid": "A String", # Service pid.
"startMode": "A String", # Service start mode (raw, OS-agnostic).
"state": "A String", # Service state (raw, OS-agnostic).
"status": "A String", # Service status.
},
],
},
},
},
"machineName": "A String", # Machine name.
"memoryMb": 42, # The amount of memory in the machine. Must be non-negative.
"network": { # Details of network adapters and settings. # Network details.
"defaultGateway": "A String", # Default gateway address.
"networkAdapters": { # List of network adapters. # List of network adapters.
"networkAdapters": [ # Network adapter descriptions.
{ # Details of network adapter.
"adapterType": "A String", # Network adapter type (e.g. VMXNET3).
"addresses": { # List of allocated/assigned network addresses. # NetworkAddressList
"addresses": [ # Network address entries.
{ # Details of network address.
"assignment": "A String", # Whether DHCP is used to assign addresses.
"bcast": "A String", # Broadcast address.
"fqdn": "A String", # Fully qualified domain name.
"ipAddress": "A String", # Assigned or configured IP Address.
"subnetMask": "A String", # Subnet mask.
},
],
},
"macAddress": "A String", # MAC address.
},
],
},
"primaryIpAddress": "A String", # The primary IP address of the machine.
"primaryMacAddress": "A String", # MAC address of the machine. This property is used to uniqly identify the machine.
"publicIpAddress": "A String", # The public IP address of the machine.
},
"platform": { # Information about the platform. # Platform specific information.
"awsEc2Details": { # AWS EC2 specific details. # AWS EC2 specific details.
"hyperthreading": "A String", # Optional. Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the AWS format.
"machineTypeLabel": "A String", # AWS platform's machine type label.
},
"azureVmDetails": { # Azure VM specific details. # Azure VM specific details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the Azure format.
"machineTypeLabel": "A String", # Azure platform's machine type label.
"provisioningState": "A String", # Azure platform's provisioning state.
},
"genericDetails": { # Generic platform details. # Generic platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different VMs in the same location may have different string values for this field.
},
"physicalDetails": { # Platform specific details for Physical Machines. # Physical machines platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different machines in the same location may have different string values for this field.
},
"vmwareDetails": { # VMware specific details. # VMware specific details.
"esxHyperthreading": "A String", # Whether the ESX is hyperthreaded.
"esxVersion": "A String", # ESX version.
"osid": "A String", # VMware os enum - https://vdc-repo.vmware.com/vmwb-repository/dcr-public/da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html.
"vcenterVersion": "A String", # vCenter version.
},
},
"powerState": "A String", # Power state of the machine.
"uuid": "A String", # Machine unique identifier.
},
"performanceSamples": [ # Asset performance data samples. Samples that are from more than 40 days ago or after tomorrow are ignored.
{ # Performance data sample.
"cpu": { # CPU usage sample. # CPU usage sample.
"utilizedPercentage": 3.14, # Percentage of total CPU capacity utilized. Must be in the interval [0, 100]. On most systems can be calculated using 100 - idle percentage.
},
"disk": { # Disk usage sample. Values are across all disks. # Disk usage sample.
"averageIops": 3.14, # Average IOPS sampled over a short window. Must be non-negative. If read or write are set, the sum of read and write will override the value of the average_iops.
"averageReadIops": 3.14, # Average read IOPS sampled over a short window. Must be non-negative. If both read and write are zero they are ignored.
"averageWriteIops": 3.14, # Average write IOPS sampled over a short window. Must be non-negative. If both read and write are zero they are ignored.
},
"memory": { # Memory usage sample. # Memory usage sample.
"utilizedPercentage": 3.14, # Percentage of system memory utilized. Must be in the interval [0, 100].
},
"network": { # Network usage sample. Values are across all network interfaces. # Network usage sample.
"averageEgressBps": 3.14, # Average network egress in B/s sampled over a short window. Must be non-negative.
"averageIngressBps": 3.14, # Average network ingress in B/s sampled over a short window. Must be non-negative.
},
"sampleTime": "A String", # Time the sample was collected. If omitted, the frame report time will be used.
},
],
"reportTime": "A String", # The time the data was reported.
"traceToken": "A String", # Optional. Trace token is optionally provided to assist with debugging and traceability.
"virtualMachineDetails": { # Details of a VirtualMachine. # Asset information specific for virtual machines.
"coreCount": 42, # Number of logical CPU cores in the VirtualMachine. Must be non-negative.
"createTime": "A String", # VM creation timestamp.
"diskPartitions": { # Disk partition details. # Optional. Disk partitions details. Note: Partitions are not necessarily mounted on local disks and therefore might not have a one-to-one correspondence with local disks.
"freeSpaceBytes": "A String", # Output only. Total free space of all partitions.
"partitions": { # Disk partition list. # Optional. List of partitions.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"totalCapacityBytes": "A String", # Output only. Total capacity of all partitions.
},
"guestOs": { # Information from Guest-level collections. # Guest OS information.
"config": { # Guest OS config information. # OS and app configuration.
"fstab": { # Fstab content. # Mount list (Linux fstab).
"entries": [ # Fstab entries.
{ # Single fstab entry.
"file": "A String", # The mount point for the filesystem.
"freq": 42, # Used by dump to determine which filesystems need to be dumped.
"mntops": "A String", # Mount options associated with the filesystem.
"passno": 42, # Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.
"spec": "A String", # The block special device or remote filesystem to be mounted.
"vfstype": "A String", # The type of the filesystem.
},
],
},
"hosts": { # Hosts content. # Output only. Hosts file (/etc/hosts).
"entries": [ # Output only. Hosts entries.
{ # Single /etc/hosts entry.
"hostNames": [ # List of host names / aliases.
"A String",
],
"ip": "A String", # IP (raw, IPv4/6 agnostic).
},
],
},
"issue": "A String", # OS issue (typically /etc/issue in Linux).
"nfsExports": { # NFS exports. # NFS exports.
"entries": [ # NFS export entries.
{ # NFS export.
"exportDirectory": "A String", # The directory being exported.
"hosts": [ # The hosts or networks to which the export is being shared.
"A String",
],
},
],
},
"selinux": { # SELinux details. # SELinux details.
"enabled": True or False, # Is SELinux enabled.
"mode": "A String", # SELinux mode enforcing / permissive.
},
},
"runtime": { # Guest OS runtime information. # Runtime information.
"domain": "A String", # Domain, e.g. c.stratozone-development.internal.
"installedApps": { # Guest installed application list. # Installed applications information.
"entries": [ # Application entries.
{ # Guest installed application information.
"licenses": [ # License strings associated with the installed application.
"A String",
],
"name": "A String", # Installed application name.
"path": "A String", # Source path.
"time": "A String", # Date application was installed.
"vendor": "A String", # Installed application vendor.
"version": "A String", # Installed application version.
},
],
},
"lastUptime": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # Date since last booted (last uptime date).
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
},
"machineName": "A String", # Machine name.
"networkInfo": { # Runtime networking information. # Runtime network information (connections, ports).
"connections": { # Network connection list. # Network connections.
"entries": [ # Network connection entries.
{
"localIpAddress": "A String", # Local IP address.
"localPort": 42, # Local port.
"pid": "A String", # Process ID.
"processName": "A String", # Process or service name.
"protocol": "A String", # Connection protocol (e.g. TCP/UDP).
"remoteIpAddress": "A String", # Remote IP address.
"remotePort": 42, # Remote port.
"state": "A String", # Connection state (e.g. CONNECTED).
},
],
},
"netstat": "A String", # Netstat (raw, OS-agnostic).
"netstatTime": { # Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year, month, or day are 0, the DateTime is considered not to have a specific year, month, or day respectively. This type may also be used to represent a physical time if all the date and time fields are set and either case of the `time_offset` oneof is set. Consider using `Timestamp` message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations. # Netstat time collected.
"day": 42, # Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.
"hours": 42, # Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.
"month": 42, # Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.
"nanos": 42, # Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.
"seconds": 42, # Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.
"timeZone": { # Represents a time zone from the [IANA Time Zone Database](https://www.iana.org/time-zones). # Time zone.
"id": "A String", # IANA Time Zone Database time zone. For example "America/New_York".
"version": "A String", # Optional. IANA Time Zone Database version number. For example "2019a".
},
"utcOffset": "A String", # UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.
"year": 42, # Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.
},
},
"openFileList": { # Open file list. # Open files information.
"entries": [ # Open file details entries.
{ # Open file Information.
"command": "A String", # Opened file command.
"filePath": "A String", # Opened file file path.
"fileType": "A String", # Opened file file type.
"user": "A String", # Opened file user.
},
],
},
"processes": { # List of running guest OS processes. # Running processes.
"processes": [ # Running process entries.
{ # Guest OS running process details.
"attributes": { # Process extended attributes.
"a_key": "A String",
},
"cmdline": "A String", # Process full command line.
"exePath": "A String", # Process binary path.
"pid": "A String", # Process ID.
"user": "A String", # User running the process.
},
],
},
"services": { # List of running guest OS services. # Running background services.
"services": [ # Running service entries.
{ # Guest OS running service details.
"cmdline": "A String", # Service command line.
"exePath": "A String", # Service binary path.
"name": "A String", # Service name.
"pid": "A String", # Service pid.
"startMode": "A String", # Service start mode (raw, OS-agnostic).
"state": "A String", # Service state (raw, OS-agnostic).
"status": "A String", # Service status.
},
],
},
},
},
"memoryMb": 42, # The amount of memory in the VirtualMachine. Must be non-negative.
"osFamily": "A String", # What family the OS belong to, if known.
"osName": "A String", # The name of the operating system running on the VirtualMachine.
"osVersion": "A String", # The version of the operating system running on the virtual machine.
"platform": { # Information about the platform. # Platform information.
"awsEc2Details": { # AWS EC2 specific details. # AWS EC2 specific details.
"hyperthreading": "A String", # Optional. Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the AWS format.
"machineTypeLabel": "A String", # AWS platform's machine type label.
},
"azureVmDetails": { # Azure VM specific details. # Azure VM specific details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # The location of the machine in the Azure format.
"machineTypeLabel": "A String", # Azure platform's machine type label.
"provisioningState": "A String", # Azure platform's provisioning state.
},
"genericDetails": { # Generic platform details. # Generic platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different VMs in the same location may have different string values for this field.
},
"physicalDetails": { # Platform specific details for Physical Machines. # Physical machines platform details.
"hyperthreading": "A String", # Whether the machine is hyperthreaded.
"location": "A String", # Free text representation of the machine location. The format of this field should not be relied on. Different machines in the same location may have different string values for this field.
},
"vmwareDetails": { # VMware specific details. # VMware specific details.
"esxHyperthreading": "A String", # Whether the ESX is hyperthreaded.
"esxVersion": "A String", # ESX version.
"osid": "A String", # VMware os enum - https://vdc-repo.vmware.com/vmwb-repository/dcr-public/da47f910-60ac-438b-8b9b-6122f4d14524/16b7274a-bf8b-4b4c-a05e-746f2aa93c8c/doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html.
"vcenterVersion": "A String", # vCenter version.
},
},
"powerState": "A String", # Power state of VM (poweredOn or poweredOff).
"vcenterFolder": "A String", # Folder name in vCenter where asset resides.
"vcenterUrl": "A String", # vCenter URL used in collection.
"vcenterVmId": "A String", # vCenter VM ID.
"vmArchitecture": { # Details of the VM architecture. # VM architecture details (vendor, cpu arch).
"bios": { # Details about the BIOS. # BIOS Details.
"biosManufacturer": "A String", # BIOS manufacturer.
"biosName": "A String", # BIOS name.
"biosReleaseDate": "A String", # BIOS release date.
"biosVersion": "A String", # BIOS version.
"smbiosUuid": "A String", # SMBIOS UUID.
},
"cpuArchitecture": "A String", # CPU architecture, e.g., "x64-based PC", "x86_64", "i686" etc.
"cpuManufacturer": "A String", # CPU manufacturer, e.g., "Intel", "AMD".
"cpuName": "A String", # CPU name, e.g., "Intel Xeon E5-2690", "AMD EPYC 7571" etc.
"cpuSocketCount": 42, # Number of processor sockets allocated to the machine.
"cpuThreadCount": 42, # Deprecated: use VirtualMachineDetails.core_count instead. Number of CPU threads allocated to the machine.
"firmware": "A String", # Firmware (BIOS/efi).
"hyperthreading": "A String", # CPU hyperthreading support.
"vendor": "A String", # Hardware vendor.
},
"vmDisks": { # Details of VM disks. # VM disk details.
"disks": { # VM disks. # List of disks.
"entries": [ # Disk entries.
{ # Single disk entry.
"diskLabel": "A String", # Disk label.
"diskLabelType": "A String", # Disk label type (e.g. BIOS/GPT)
"hwAddress": "A String", # Disk hardware address (e.g. 0:1 for SCSI).
"interfaceType": "A String", # Disks interface type (e.g. SATA/SCSI)
"partitions": { # Disk partition list. # Partition layout.
"entries": [ # Partition entries.
{ # Disk Partition details.
"capacityBytes": "A String", # Partition capacity.
"fileSystem": "A String", # Partition file system.
"freeBytes": "A String", # Partition free space.
"mountPoint": "A String", # Mount point (Linux/Windows) or drive letter (Windows).
"subPartitions": # Object with schema name: DiskPartitionList # Sub-partitions.
"type": "A String", # Partition type (e.g. BIOS boot).
"uuid": "A String", # Partition UUID.
},
],
},
"status": "A String", # Disk status (e.g. online).
"totalCapacityBytes": "A String", # Disk capacity.
"totalFreeBytes": "A String", # Disk free space.
},
],
},
"hddTotalCapacityBytes": "A String", # Disk total Capacity.
"hddTotalFreeBytes": "A String", # Total Disk Free Space.
"lsblkJson": "A String", # Raw lsblk output in json.
},
"vmName": "A String", # Virtual Machine display name.
"vmNetwork": { # Details of network adapters and settings. # VM network details.
"defaultGw": "A String", # Default gateway address.
"networkAdapters": { # List of network adapters. # List of network adapters.
"networkAdapters": [ # Network adapter descriptions.
{ # Details of network adapter.
"adapterType": "A String", # Network adapter type (e.g. VMXNET3).
"addresses": { # List of allocated/assigned network addresses. # NetworkAddressList
"addresses": [ # Network address entries.
{ # Details of network address.
"assignment": "A String", # Whether DHCP is used to assign addresses.
"bcast": "A String", # Broadcast address.
"fqdn": "A String", # Fully qualified domain name.
"ipAddress": "A String", # Assigned or configured IP Address.
"subnetMask": "A String", # Subnet mask.
},
],
},
"macAddress": "A String", # MAC address.
},
],
},
"primaryIpAddress": "A String", # IP address of the machine.
"primaryMacAddress": "A String", # MAC address of the machine. This property is used to uniqly identify the machine.
"publicIpAddress": "A String", # Public IP address of the machine.
},
"vmUuid": "A String", # Virtual Machine unique identifier.
},
},
"violations": [ # Output only. All the violations that were detected for the frame.
{ # A resource that contains a single violation of a reported `AssetFrame` resource.
"field": "A String", # The field of the original frame where the violation occurred.
"violation": "A String", # A message describing the violation.
},
],
},
],
"nextPageToken": "A String", # A token identifying a page of results the server should return.
"unreachable": [ # Locations that could not be reached.
"A String",
],
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call 'execute()' on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
</body></html>
|