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
|
<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_v1.html">Migration Center API</a> . <a href="migrationcenter_v1.projects.html">projects</a> . <a href="migrationcenter_v1.projects.locations.html">locations</a> . <a href="migrationcenter_v1.projects.locations.sources.html">sources</a> . <a href="migrationcenter_v1.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", # Optional. The database deployment edition.
"generatedId": "A String", # Optional. The database deployment generated ID.
"manualUniqueId": "A String", # Optional. A manual unique ID set by the user.
"mysql": { # Specific details for a Mysql database deployment. # Optional. 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. # Optional. 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. # Optional. 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. # Optional. 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", # Optional. 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", # Optional. 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", # Optional. The database deployment version.
},
"databaseDetails": { # Details of a logical database. # Asset information specific for logical databases.
"allocatedStorageBytes": "A String", # Optional. The allocated storage for the database in bytes.
"databaseName": "A String", # Required. The name of the database.
"parentDatabaseDeployment": { # The identifiers of the parent database deployment. # Required. The parent database deployment that contains the logical database.
"generatedId": "A String", # Optional. The parent database deployment generated ID.
"manualUniqueId": "A String", # Optional. The parent database deployment optional manual unique ID set by the user.
},
"schemas": [ # Optional. The database schemas.
{ # Details of a database schema.
"mysql": { # Specific details for a Mysql database. # Optional. 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": [ # Optional. List of details of objects by category.
{ # Details of a group of database objects.
"category": "A String", # Optional. The category of the objects.
"count": "A String", # Optional. The number of objects.
},
],
"postgresql": { # Specific details for a PostgreSql schema. # Optional. 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", # Required. The name of the schema.
"sqlServer": { # Specific details for a SqlServer database. # Optional. Details of a SqlServer schema.
"clrObjectCount": 42, # Optional. SqlServer number of CLR objects.
},
"tablesSizeBytes": "A String", # Optional. 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 machines.
"architecture": { # Details of the machine architecture. # Architecture details (vendor, CPU architecture).
"bios": { # Details about the BIOS. # BIOS Details.
"biosName": "A String", # BIOS name. This fields is deprecated. Please use the `id` field instead.
"id": "A String", # BIOS ID.
"manufacturer": "A String", # BIOS manufacturer.
"releaseDate": { # 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 # BIOS release 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.
},
"smbiosUuid": "A String", # SMBIOS UUID.
"version": "A String", # BIOS version.
},
"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.
"cpuThreadCount": 42, # Deprecated: use MachineDetails.core_count instead. Number of CPU threads 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.
"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.
"capacityBytes": "A String", # Disk capacity.
"diskLabel": "A String", # Disk label.
"diskLabelType": "A String", # Disk label type (e.g. BIOS/GPT)
"freeBytes": "A String", # Disk free space.
"hwAddress": "A String", # Disk hardware address (e.g. 0:1 for SCSI).
"interfaceType": "A String", # Disks interface type.
"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.
"uuid": "A String", # Partition UUID.
},
],
},
"vmware": { # VMware disk config details. # VMware disk details.
"backingType": "A String", # VMDK backing type.
"rdmCompatibility": "A String", # RDM compatibility mode.
"shared": True or False, # Is VMDK shared with other VMs.
"vmdkMode": "A String", # VMDK disk mode.
},
},
],
},
"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. # Hosts file (/etc/hosts).
"entries": [ # 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",
],
},
],
},
"selinuxMode": "A String", # Security-Enhanced Linux (SELinux) mode.
},
"family": "A String", # What family the OS belong to, if known.
"osName": "A String", # The name of the operating system.
"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.
"applicationName": "A String", # Installed application name.
"installTime": "A String", # The time when the application was installed.
"licenses": [ # License strings associated with the installed application.
"A String",
],
"path": "A String", # Source path.
"vendor": "A String", # Installed application vendor.
"version": "A String", # Installed application version.
},
],
},
"lastBootTime": "A String", # Last time the OS was booted.
"machineName": "A String", # Machine name.
"network": { # 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", # Network connection state.
},
],
},
"scanTime": "A String", # Time of the last network scan.
},
"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.
"entries": [ # 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.
"entries": [ # Running service entries.
{ # Guest OS running service details.
"cmdline": "A String", # Service command line.
"exePath": "A String", # Service binary path.
"pid": "A String", # Service pid.
"serviceName": "A String", # Service name.
"startMode": "A String", # Service start mode (OS-agnostic).
"state": "A String", # Service state (OS-agnostic).
},
],
},
},
"version": "A String", # The version of the operating system.
},
"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.
"adapters": { # List of network adapters. # List of network adapters.
"entries": [ # Network adapter entries.
{ # Details of network adapter.
"adapterType": "A String", # Network adapter type (e.g. VMXNET3).
"addresses": { # List of allocated/assigned network addresses. # NetworkAddressList
"entries": [ # 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.
"vcenterFolder": "A String", # Folder name in vCenter where asset resides.
"vcenterUri": "A String", # vCenter URI used in collection.
"vcenterVersion": "A String", # vCenter version.
"vcenterVmId": "A String", # vCenter VM ID.
},
},
"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, # Optional. 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, # Optional. 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, # Optional. 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.
},
"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", # Optional. The database deployment edition.
"generatedId": "A String", # Optional. The database deployment generated ID.
"manualUniqueId": "A String", # Optional. A manual unique ID set by the user.
"mysql": { # Specific details for a Mysql database deployment. # Optional. 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. # Optional. 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. # Optional. 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. # Optional. 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", # Optional. 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", # Optional. 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", # Optional. The database deployment version.
},
"databaseDetails": { # Details of a logical database. # Asset information specific for logical databases.
"allocatedStorageBytes": "A String", # Optional. The allocated storage for the database in bytes.
"databaseName": "A String", # Required. The name of the database.
"parentDatabaseDeployment": { # The identifiers of the parent database deployment. # Required. The parent database deployment that contains the logical database.
"generatedId": "A String", # Optional. The parent database deployment generated ID.
"manualUniqueId": "A String", # Optional. The parent database deployment optional manual unique ID set by the user.
},
"schemas": [ # Optional. The database schemas.
{ # Details of a database schema.
"mysql": { # Specific details for a Mysql database. # Optional. 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": [ # Optional. List of details of objects by category.
{ # Details of a group of database objects.
"category": "A String", # Optional. The category of the objects.
"count": "A String", # Optional. The number of objects.
},
],
"postgresql": { # Specific details for a PostgreSql schema. # Optional. 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", # Required. The name of the schema.
"sqlServer": { # Specific details for a SqlServer database. # Optional. Details of a SqlServer schema.
"clrObjectCount": 42, # Optional. SqlServer number of CLR objects.
},
"tablesSizeBytes": "A String", # Optional. 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 machines.
"architecture": { # Details of the machine architecture. # Architecture details (vendor, CPU architecture).
"bios": { # Details about the BIOS. # BIOS Details.
"biosName": "A String", # BIOS name. This fields is deprecated. Please use the `id` field instead.
"id": "A String", # BIOS ID.
"manufacturer": "A String", # BIOS manufacturer.
"releaseDate": { # 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 # BIOS release 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.
},
"smbiosUuid": "A String", # SMBIOS UUID.
"version": "A String", # BIOS version.
},
"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.
"cpuThreadCount": 42, # Deprecated: use MachineDetails.core_count instead. Number of CPU threads 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.
"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.
"capacityBytes": "A String", # Disk capacity.
"diskLabel": "A String", # Disk label.
"diskLabelType": "A String", # Disk label type (e.g. BIOS/GPT)
"freeBytes": "A String", # Disk free space.
"hwAddress": "A String", # Disk hardware address (e.g. 0:1 for SCSI).
"interfaceType": "A String", # Disks interface type.
"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.
"uuid": "A String", # Partition UUID.
},
],
},
"vmware": { # VMware disk config details. # VMware disk details.
"backingType": "A String", # VMDK backing type.
"rdmCompatibility": "A String", # RDM compatibility mode.
"shared": True or False, # Is VMDK shared with other VMs.
"vmdkMode": "A String", # VMDK disk mode.
},
},
],
},
"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. # Hosts file (/etc/hosts).
"entries": [ # 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",
],
},
],
},
"selinuxMode": "A String", # Security-Enhanced Linux (SELinux) mode.
},
"family": "A String", # What family the OS belong to, if known.
"osName": "A String", # The name of the operating system.
"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.
"applicationName": "A String", # Installed application name.
"installTime": "A String", # The time when the application was installed.
"licenses": [ # License strings associated with the installed application.
"A String",
],
"path": "A String", # Source path.
"vendor": "A String", # Installed application vendor.
"version": "A String", # Installed application version.
},
],
},
"lastBootTime": "A String", # Last time the OS was booted.
"machineName": "A String", # Machine name.
"network": { # 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", # Network connection state.
},
],
},
"scanTime": "A String", # Time of the last network scan.
},
"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.
"entries": [ # 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.
"entries": [ # Running service entries.
{ # Guest OS running service details.
"cmdline": "A String", # Service command line.
"exePath": "A String", # Service binary path.
"pid": "A String", # Service pid.
"serviceName": "A String", # Service name.
"startMode": "A String", # Service start mode (OS-agnostic).
"state": "A String", # Service state (OS-agnostic).
},
],
},
},
"version": "A String", # The version of the operating system.
},
"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.
"adapters": { # List of network adapters. # List of network adapters.
"entries": [ # Network adapter entries.
{ # Details of network adapter.
"adapterType": "A String", # Network adapter type (e.g. VMXNET3).
"addresses": { # List of allocated/assigned network addresses. # NetworkAddressList
"entries": [ # 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.
"vcenterFolder": "A String", # Folder name in vCenter where asset resides.
"vcenterUri": "A String", # vCenter URI used in collection.
"vcenterVersion": "A String", # vCenter version.
"vcenterVmId": "A String", # vCenter VM ID.
},
},
"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, # Optional. 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, # Optional. 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, # Optional. 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.
},
"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>
|