File: migrationcenter_v1.projects.locations.sources.errorFrames.html

package info (click to toggle)
python-googleapi 2.180.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 527,124 kB
  • sloc: python: 11,076; javascript: 249; sh: 114; makefile: 59
file content (1023 lines) | stat: -rw-r--r-- 68,990 bytes parent folder | download | duplicates (2)
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.
  &quot;ingestionTime&quot;: &quot;A String&quot;, # Output only. Frame ingestion time.
  &quot;name&quot;: &quot;A String&quot;, # Output only. The identifier of the ErrorFrame.
  &quot;originalFrame&quot;: { # Contains data reported from an inventory source on an asset. # Output only. The frame that was originally reported.
    &quot;attributes&quot;: { # Generic asset attributes.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;collectionType&quot;: &quot;A String&quot;, # 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.
    &quot;databaseDeploymentDetails&quot;: { # The details of a database deployment asset. # Asset information specific for database deployments.
      &quot;aggregatedStats&quot;: { # Aggregated stats for the database deployment. # Output only. Aggregated stats for the database deployment.
        &quot;databaseCount&quot;: 42, # Output only. The number of databases in the deployment.
      },
      &quot;awsRds&quot;: { # Specific details for an AWS RDS database deployment. # Optional. Details of an AWS RDS instance.
      },
      &quot;edition&quot;: &quot;A String&quot;, # Optional. The database deployment edition.
      &quot;generatedId&quot;: &quot;A String&quot;, # Optional. The database deployment generated ID.
      &quot;manualUniqueId&quot;: &quot;A String&quot;, # Optional. A manual unique ID set by the user.
      &quot;mysql&quot;: { # Specific details for a Mysql database deployment. # Optional. Details of a MYSQL database deployment.
        &quot;plugins&quot;: [ # Optional. List of MySql plugins.
          { # MySql plugin.
            &quot;enabled&quot;: True or False, # Required. The plugin is active.
            &quot;plugin&quot;: &quot;A String&quot;, # Required. The plugin name.
            &quot;version&quot;: &quot;A String&quot;, # Required. The plugin version.
          },
        ],
        &quot;properties&quot;: [ # Optional. List of MySql properties.
          { # MySql property.
            &quot;enabled&quot;: True or False, # Required. The property is enabled.
            &quot;numericValue&quot;: &quot;A String&quot;, # Required. The property numeric value.
            &quot;property&quot;: &quot;A String&quot;, # Required. The property name.
          },
        ],
        &quot;resourceGroupsCount&quot;: 42, # Optional. Number of resource groups.
        &quot;variables&quot;: [ # Optional. List of MySql variables.
          { # MySql variable.
            &quot;category&quot;: &quot;A String&quot;, # Required. The variable category.
            &quot;value&quot;: &quot;A String&quot;, # Required. The variable value.
            &quot;variable&quot;: &quot;A String&quot;, # Required. The variable name.
          },
        ],
      },
      &quot;postgresql&quot;: { # Specific details for a PostgreSQL database deployment. # Optional. Details of a PostgreSQL database deployment.
        &quot;properties&quot;: [ # Optional. List of PostgreSql properties.
          { # PostgreSql property.
            &quot;enabled&quot;: True or False, # Required. The property is enabled.
            &quot;numericValue&quot;: &quot;A String&quot;, # Required. The property numeric value.
            &quot;property&quot;: &quot;A String&quot;, # Required. The property name.
          },
        ],
        &quot;settings&quot;: [ # Optional. List of PostgreSql settings.
          { # PostgreSql setting.
            &quot;boolValue&quot;: True or False, # Required. The setting boolean value.
            &quot;intValue&quot;: &quot;A String&quot;, # Required. The setting int value.
            &quot;realValue&quot;: 3.14, # Required. The setting real value.
            &quot;setting&quot;: &quot;A String&quot;, # Required. The setting name.
            &quot;source&quot;: &quot;A String&quot;, # Required. The setting source.
            &quot;stringValue&quot;: &quot;A String&quot;, # Required. The setting string value. Notice that enum values are stored as strings.
            &quot;unit&quot;: &quot;A String&quot;, # Optional. The setting unit.
          },
        ],
      },
      &quot;sqlServer&quot;: { # Specific details for a Microsoft SQL Server database deployment. # Optional. Details of a Microsoft SQL Server database deployment.
        &quot;features&quot;: [ # Optional. List of SQL Server features.
          { # SQL Server feature details.
            &quot;enabled&quot;: True or False, # Required. Field enabled is set when a feature is used on the source deployment.
            &quot;featureName&quot;: &quot;A String&quot;, # Required. The feature name.
          },
        ],
        &quot;serverFlags&quot;: [ # Optional. List of SQL Server server flags.
          { # SQL Server server flag details.
            &quot;serverFlagName&quot;: &quot;A String&quot;, # Required. The server flag name.
            &quot;value&quot;: &quot;A String&quot;, # Required. The server flag value set by the user.
            &quot;valueInUse&quot;: &quot;A String&quot;, # 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.
          },
        ],
        &quot;traceFlags&quot;: [ # Optional. List of SQL Server trace flags.
          { # SQL Server trace flag details.
            &quot;scope&quot;: &quot;A String&quot;, # Required. The trace flag scope.
            &quot;traceFlagName&quot;: &quot;A String&quot;, # Required. The trace flag name.
          },
        ],
      },
      &quot;topology&quot;: { # Details of database deployment&#x27;s topology. # Optional. Details of the database deployment topology.
        &quot;coreCount&quot;: 42, # Optional. Number of total logical cores.
        &quot;coreLimit&quot;: 42, # Optional. Number of total logical cores limited by db deployment.
        &quot;diskAllocatedBytes&quot;: &quot;A String&quot;, # Optional. Disk allocated in bytes.
        &quot;diskUsedBytes&quot;: &quot;A String&quot;, # Optional. Disk used in bytes.
        &quot;instances&quot;: [ # Optional. List of database instances.
          { # Details of a database instance.
            &quot;instanceName&quot;: &quot;A String&quot;, # Optional. The instance&#x27;s name.
            &quot;network&quot;: { # Network details of a database instance. # Optional. Networking details.
              &quot;hostNames&quot;: [ # Optional. The instance&#x27;s host names.
                &quot;A String&quot;,
              ],
              &quot;ipAddresses&quot;: [ # Optional. The instance&#x27;s IP addresses.
                &quot;A String&quot;,
              ],
              &quot;primaryMacAddress&quot;: &quot;A String&quot;, # Optional. The instance&#x27;s primary MAC address.
            },
            &quot;role&quot;: &quot;A String&quot;, # Optional. The instance role in the database engine.
          },
        ],
        &quot;memoryBytes&quot;: &quot;A String&quot;, # Optional. Total memory in bytes.
        &quot;memoryLimitBytes&quot;: &quot;A String&quot;, # Optional. Total memory in bytes limited by db deployment.
        &quot;physicalCoreCount&quot;: 42, # Optional. Number of total physical cores.
        &quot;physicalCoreLimit&quot;: 42, # Optional. Number of total physical cores limited by db deployment.
      },
      &quot;version&quot;: &quot;A String&quot;, # Optional. The database deployment version.
    },
    &quot;databaseDetails&quot;: { # Details of a logical database. # Asset information specific for logical databases.
      &quot;allocatedStorageBytes&quot;: &quot;A String&quot;, # Optional. The allocated storage for the database in bytes.
      &quot;databaseName&quot;: &quot;A String&quot;, # Required. The name of the database.
      &quot;parentDatabaseDeployment&quot;: { # The identifiers of the parent database deployment. # Required. The parent database deployment that contains the logical database.
        &quot;generatedId&quot;: &quot;A String&quot;, # Optional. The parent database deployment generated ID.
        &quot;manualUniqueId&quot;: &quot;A String&quot;, # Optional. The parent database deployment optional manual unique ID set by the user.
      },
      &quot;schemas&quot;: [ # Optional. The database schemas.
        { # Details of a database schema.
          &quot;mysql&quot;: { # Specific details for a Mysql database. # Optional. Details of a Mysql schema.
            &quot;storageEngines&quot;: [ # Optional. Mysql storage engine tables.
              { # Mysql storage engine tables.
                &quot;encryptedTableCount&quot;: 42, # Optional. The number of encrypted tables.
                &quot;engine&quot;: &quot;A String&quot;, # Required. The storage engine.
                &quot;tableCount&quot;: 42, # Optional. The number of tables.
              },
            ],
          },
          &quot;objects&quot;: [ # Optional. List of details of objects by category.
            { # Details of a group of database objects.
              &quot;category&quot;: &quot;A String&quot;, # Optional. The category of the objects.
              &quot;count&quot;: &quot;A String&quot;, # Optional. The number of objects.
            },
          ],
          &quot;postgresql&quot;: { # Specific details for a PostgreSql schema. # Optional. Details of a PostgreSql schema.
            &quot;foreignTablesCount&quot;: 42, # Optional. PostgreSql foreign tables.
            &quot;postgresqlExtensions&quot;: [ # Optional. PostgreSql extensions.
              { # PostgreSql extension.
                &quot;extension&quot;: &quot;A String&quot;, # Required. The extension name.
                &quot;version&quot;: &quot;A String&quot;, # Required. The extension version.
              },
            ],
          },
          &quot;schemaName&quot;: &quot;A String&quot;, # Required. The name of the schema.
          &quot;sqlServer&quot;: { # Specific details for a SqlServer database. # Optional. Details of a SqlServer schema.
            &quot;clrObjectCount&quot;: 42, # Optional. SqlServer number of CLR objects.
          },
          &quot;tablesSizeBytes&quot;: &quot;A String&quot;, # Optional. The total size of tables in bytes.
        },
      ],
    },
    &quot;labels&quot;: { # Labels as key value pairs.
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;machineDetails&quot;: { # Details of a machine. # Asset information specific for virtual machines.
      &quot;architecture&quot;: { # Details of the machine architecture. # Architecture details (vendor, CPU architecture).
        &quot;bios&quot;: { # Details about the BIOS. # BIOS Details.
          &quot;biosName&quot;: &quot;A String&quot;, # BIOS name. This fields is deprecated. Please use the `id` field instead.
          &quot;id&quot;: &quot;A String&quot;, # BIOS ID.
          &quot;manufacturer&quot;: &quot;A String&quot;, # BIOS manufacturer.
          &quot;releaseDate&quot;: { # 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.
            &quot;day&quot;: 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&#x27;t significant.
            &quot;month&quot;: 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
            &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
          },
          &quot;smbiosUuid&quot;: &quot;A String&quot;, # SMBIOS UUID.
          &quot;version&quot;: &quot;A String&quot;, # BIOS version.
        },
        &quot;cpuArchitecture&quot;: &quot;A String&quot;, # CPU architecture, e.g., &quot;x64-based PC&quot;, &quot;x86_64&quot;, &quot;i686&quot; etc.
        &quot;cpuManufacturer&quot;: &quot;A String&quot;, # Optional. CPU manufacturer, e.g., &quot;Intel&quot;, &quot;AMD&quot;.
        &quot;cpuName&quot;: &quot;A String&quot;, # CPU name, e.g., &quot;Intel Xeon E5-2690&quot;, &quot;AMD EPYC 7571&quot; etc.
        &quot;cpuSocketCount&quot;: 42, # Number of processor sockets allocated to the machine.
        &quot;cpuThreadCount&quot;: 42, # Deprecated: use MachineDetails.core_count instead. Number of CPU threads allocated to the machine.
        &quot;firmwareType&quot;: &quot;A String&quot;, # Firmware type.
        &quot;hyperthreading&quot;: &quot;A String&quot;, # CPU hyper-threading support.
        &quot;vendor&quot;: &quot;A String&quot;, # Hardware vendor.
      },
      &quot;coreCount&quot;: 42, # Number of logical CPU cores in the machine. Must be non-negative.
      &quot;createTime&quot;: &quot;A String&quot;, # Machine creation time.
      &quot;diskPartitions&quot;: { # 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.
        &quot;freeSpaceBytes&quot;: &quot;A String&quot;, # Output only. Total free space of all partitions.
        &quot;partitions&quot;: { # Disk partition list. # Optional. List of partitions.
          &quot;entries&quot;: [ # Partition entries.
            { # Disk Partition details.
              &quot;capacityBytes&quot;: &quot;A String&quot;, # Partition capacity.
              &quot;fileSystem&quot;: &quot;A String&quot;, # Partition file system.
              &quot;freeBytes&quot;: &quot;A String&quot;, # Partition free space.
              &quot;mountPoint&quot;: &quot;A String&quot;, # Mount point (Linux/Windows) or drive letter (Windows).
              &quot;subPartitions&quot;: # Object with schema name: DiskPartitionList # Sub-partitions.
              &quot;type&quot;: &quot;A String&quot;, # Partition type.
              &quot;uuid&quot;: &quot;A String&quot;, # Partition UUID.
            },
          ],
        },
        &quot;totalCapacityBytes&quot;: &quot;A String&quot;, # Output only. Total capacity of all partitions.
      },
      &quot;disks&quot;: { # Details of machine disks. # Disk details.
        &quot;disks&quot;: { # VM disks. # List of disks.
          &quot;entries&quot;: [ # Disk entries.
            { # Single disk entry.
              &quot;capacityBytes&quot;: &quot;A String&quot;, # Disk capacity.
              &quot;diskLabel&quot;: &quot;A String&quot;, # Disk label.
              &quot;diskLabelType&quot;: &quot;A String&quot;, # Disk label type (e.g. BIOS/GPT)
              &quot;freeBytes&quot;: &quot;A String&quot;, # Disk free space.
              &quot;hwAddress&quot;: &quot;A String&quot;, # Disk hardware address (e.g. 0:1 for SCSI).
              &quot;interfaceType&quot;: &quot;A String&quot;, # Disks interface type.
              &quot;partitions&quot;: { # Disk partition list. # Partition layout.
                &quot;entries&quot;: [ # Partition entries.
                  { # Disk Partition details.
                    &quot;capacityBytes&quot;: &quot;A String&quot;, # Partition capacity.
                    &quot;fileSystem&quot;: &quot;A String&quot;, # Partition file system.
                    &quot;freeBytes&quot;: &quot;A String&quot;, # Partition free space.
                    &quot;mountPoint&quot;: &quot;A String&quot;, # Mount point (Linux/Windows) or drive letter (Windows).
                    &quot;subPartitions&quot;: # Object with schema name: DiskPartitionList # Sub-partitions.
                    &quot;type&quot;: &quot;A String&quot;, # Partition type.
                    &quot;uuid&quot;: &quot;A String&quot;, # Partition UUID.
                  },
                ],
              },
              &quot;vmware&quot;: { # VMware disk config details. # VMware disk details.
                &quot;backingType&quot;: &quot;A String&quot;, # VMDK backing type.
                &quot;rdmCompatibility&quot;: &quot;A String&quot;, # RDM compatibility mode.
                &quot;shared&quot;: True or False, # Is VMDK shared with other VMs.
                &quot;vmdkMode&quot;: &quot;A String&quot;, # VMDK disk mode.
              },
            },
          ],
        },
        &quot;totalCapacityBytes&quot;: &quot;A String&quot;, # Disk total Capacity.
        &quot;totalFreeBytes&quot;: &quot;A String&quot;, # Total disk free space.
      },
      &quot;guestOs&quot;: { # Information from Guest-level collections. # Guest OS information.
        &quot;config&quot;: { # Guest OS config information. # OS and app configuration.
          &quot;fstab&quot;: { # Fstab content. # Mount list (Linux fstab).
            &quot;entries&quot;: [ # Fstab entries.
              { # Single fstab entry.
                &quot;file&quot;: &quot;A String&quot;, # The mount point for the filesystem.
                &quot;freq&quot;: 42, # Used by dump to determine which filesystems need to be dumped.
                &quot;mntops&quot;: &quot;A String&quot;, # Mount options associated with the filesystem.
                &quot;passno&quot;: 42, # Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.
                &quot;spec&quot;: &quot;A String&quot;, # The block special device or remote filesystem to be mounted.
                &quot;vfstype&quot;: &quot;A String&quot;, # The type of the filesystem.
              },
            ],
          },
          &quot;hosts&quot;: { # Hosts content. # Hosts file (/etc/hosts).
            &quot;entries&quot;: [ # Hosts entries.
              { # Single /etc/hosts entry.
                &quot;hostNames&quot;: [ # List of host names / aliases.
                  &quot;A String&quot;,
                ],
                &quot;ip&quot;: &quot;A String&quot;, # IP (raw, IPv4/6 agnostic).
              },
            ],
          },
          &quot;issue&quot;: &quot;A String&quot;, # OS issue (typically /etc/issue in Linux).
          &quot;nfsExports&quot;: { # NFS exports. # NFS exports.
            &quot;entries&quot;: [ # NFS export entries.
              { # NFS export.
                &quot;exportDirectory&quot;: &quot;A String&quot;, # The directory being exported.
                &quot;hosts&quot;: [ # The hosts or networks to which the export is being shared.
                  &quot;A String&quot;,
                ],
              },
            ],
          },
          &quot;selinuxMode&quot;: &quot;A String&quot;, # Security-Enhanced Linux (SELinux) mode.
        },
        &quot;family&quot;: &quot;A String&quot;, # What family the OS belong to, if known.
        &quot;osName&quot;: &quot;A String&quot;, # The name of the operating system.
        &quot;runtime&quot;: { # Guest OS runtime information. # Runtime information.
          &quot;domain&quot;: &quot;A String&quot;, # Domain, e.g. c.stratozone-development.internal.
          &quot;installedApps&quot;: { # Guest installed application list. # Installed applications information.
            &quot;entries&quot;: [ # Application entries.
              { # Guest installed application information.
                &quot;applicationName&quot;: &quot;A String&quot;, # Installed application name.
                &quot;installTime&quot;: &quot;A String&quot;, # The time when the application was installed.
                &quot;licenses&quot;: [ # License strings associated with the installed application.
                  &quot;A String&quot;,
                ],
                &quot;path&quot;: &quot;A String&quot;, # Source path.
                &quot;vendor&quot;: &quot;A String&quot;, # Installed application vendor.
                &quot;version&quot;: &quot;A String&quot;, # Installed application version.
              },
            ],
          },
          &quot;lastBootTime&quot;: &quot;A String&quot;, # Last time the OS was booted.
          &quot;machineName&quot;: &quot;A String&quot;, # Machine name.
          &quot;network&quot;: { # Runtime networking information. # Runtime network information (connections, ports).
            &quot;connections&quot;: { # Network connection list. # Network connections.
              &quot;entries&quot;: [ # Network connection entries.
                {
                  &quot;localIpAddress&quot;: &quot;A String&quot;, # Local IP address.
                  &quot;localPort&quot;: 42, # Local port.
                  &quot;pid&quot;: &quot;A String&quot;, # Process ID.
                  &quot;processName&quot;: &quot;A String&quot;, # Process or service name.
                  &quot;protocol&quot;: &quot;A String&quot;, # Connection protocol (e.g. TCP/UDP).
                  &quot;remoteIpAddress&quot;: &quot;A String&quot;, # Remote IP address.
                  &quot;remotePort&quot;: 42, # Remote port.
                  &quot;state&quot;: &quot;A String&quot;, # Network connection state.
                },
              ],
            },
            &quot;scanTime&quot;: &quot;A String&quot;, # Time of the last network scan.
          },
          &quot;openFileList&quot;: { # Open file list. # Open files information.
            &quot;entries&quot;: [ # Open file details entries.
              { # Open file Information.
                &quot;command&quot;: &quot;A String&quot;, # Opened file command.
                &quot;filePath&quot;: &quot;A String&quot;, # Opened file file path.
                &quot;fileType&quot;: &quot;A String&quot;, # Opened file file type.
                &quot;user&quot;: &quot;A String&quot;, # Opened file user.
              },
            ],
          },
          &quot;processes&quot;: { # List of running guest OS processes. # Running processes.
            &quot;entries&quot;: [ # Running process entries.
              { # Guest OS running process details.
                &quot;attributes&quot;: { # Process extended attributes.
                  &quot;a_key&quot;: &quot;A String&quot;,
                },
                &quot;cmdline&quot;: &quot;A String&quot;, # Process full command line.
                &quot;exePath&quot;: &quot;A String&quot;, # Process binary path.
                &quot;pid&quot;: &quot;A String&quot;, # Process ID.
                &quot;user&quot;: &quot;A String&quot;, # User running the process.
              },
            ],
          },
          &quot;services&quot;: { # List of running guest OS services. # Running background services.
            &quot;entries&quot;: [ # Running service entries.
              { # Guest OS running service details.
                &quot;cmdline&quot;: &quot;A String&quot;, # Service command line.
                &quot;exePath&quot;: &quot;A String&quot;, # Service binary path.
                &quot;pid&quot;: &quot;A String&quot;, # Service pid.
                &quot;serviceName&quot;: &quot;A String&quot;, # Service name.
                &quot;startMode&quot;: &quot;A String&quot;, # Service start mode (OS-agnostic).
                &quot;state&quot;: &quot;A String&quot;, # Service state (OS-agnostic).
              },
            ],
          },
        },
        &quot;version&quot;: &quot;A String&quot;, # The version of the operating system.
      },
      &quot;machineName&quot;: &quot;A String&quot;, # Machine name.
      &quot;memoryMb&quot;: 42, # The amount of memory in the machine. Must be non-negative.
      &quot;network&quot;: { # Details of network adapters and settings. # Network details.
        &quot;adapters&quot;: { # List of network adapters. # List of network adapters.
          &quot;entries&quot;: [ # Network adapter entries.
            { # Details of network adapter.
              &quot;adapterType&quot;: &quot;A String&quot;, # Network adapter type (e.g. VMXNET3).
              &quot;addresses&quot;: { # List of allocated/assigned network addresses. # NetworkAddressList
                &quot;entries&quot;: [ # Network address entries.
                  { # Details of network address.
                    &quot;assignment&quot;: &quot;A String&quot;, # Whether DHCP is used to assign addresses.
                    &quot;bcast&quot;: &quot;A String&quot;, # Broadcast address.
                    &quot;fqdn&quot;: &quot;A String&quot;, # Fully qualified domain name.
                    &quot;ipAddress&quot;: &quot;A String&quot;, # Assigned or configured IP Address.
                    &quot;subnetMask&quot;: &quot;A String&quot;, # Subnet mask.
                  },
                ],
              },
              &quot;macAddress&quot;: &quot;A String&quot;, # MAC address.
            },
          ],
        },
        &quot;primaryIpAddress&quot;: &quot;A String&quot;, # The primary IP address of the machine.
        &quot;primaryMacAddress&quot;: &quot;A String&quot;, # MAC address of the machine. This property is used to uniqly identify the machine.
        &quot;publicIpAddress&quot;: &quot;A String&quot;, # The public IP address of the machine.
      },
      &quot;platform&quot;: { # Information about the platform. # Platform specific information.
        &quot;awsEc2Details&quot;: { # AWS EC2 specific details. # AWS EC2 specific details.
          &quot;hyperthreading&quot;: &quot;A String&quot;, # Optional. Whether the machine is hyperthreaded.
          &quot;location&quot;: &quot;A String&quot;, # The location of the machine in the AWS format.
          &quot;machineTypeLabel&quot;: &quot;A String&quot;, # AWS platform&#x27;s machine type label.
        },
        &quot;azureVmDetails&quot;: { # Azure VM specific details. # Azure VM specific details.
          &quot;hyperthreading&quot;: &quot;A String&quot;, # Whether the machine is hyperthreaded.
          &quot;location&quot;: &quot;A String&quot;, # The location of the machine in the Azure format.
          &quot;machineTypeLabel&quot;: &quot;A String&quot;, # Azure platform&#x27;s machine type label.
          &quot;provisioningState&quot;: &quot;A String&quot;, # Azure platform&#x27;s provisioning state.
        },
        &quot;genericDetails&quot;: { # Generic platform details. # Generic platform details.
          &quot;hyperthreading&quot;: &quot;A String&quot;, # Whether the machine is hyperthreaded.
          &quot;location&quot;: &quot;A String&quot;, # 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.
        },
        &quot;physicalDetails&quot;: { # Platform specific details for Physical Machines. # Physical machines platform details.
          &quot;hyperthreading&quot;: &quot;A String&quot;, # Whether the machine is hyperthreaded.
          &quot;location&quot;: &quot;A String&quot;, # 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.
        },
        &quot;vmwareDetails&quot;: { # VMware specific details. # VMware specific details.
          &quot;esxHyperthreading&quot;: &quot;A String&quot;, # Whether the ESX is hyperthreaded.
          &quot;esxVersion&quot;: &quot;A String&quot;, # ESX version.
          &quot;osid&quot;: &quot;A String&quot;, # 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.
          &quot;vcenterFolder&quot;: &quot;A String&quot;, # Folder name in vCenter where asset resides.
          &quot;vcenterUri&quot;: &quot;A String&quot;, # vCenter URI used in collection.
          &quot;vcenterVersion&quot;: &quot;A String&quot;, # vCenter version.
          &quot;vcenterVmId&quot;: &quot;A String&quot;, # vCenter VM ID.
        },
      },
      &quot;powerState&quot;: &quot;A String&quot;, # Power state of the machine.
      &quot;uuid&quot;: &quot;A String&quot;, # Machine unique identifier.
    },
    &quot;performanceSamples&quot;: [ # Asset performance data samples. Samples that are from more than 40 days ago or after tomorrow are ignored.
      { # Performance data sample.
        &quot;cpu&quot;: { # CPU usage sample. # CPU usage sample.
          &quot;utilizedPercentage&quot;: 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.
        },
        &quot;disk&quot;: { # Disk usage sample. Values are across all disks. # Disk usage sample.
          &quot;averageIops&quot;: 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.
          &quot;averageReadIops&quot;: 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.
          &quot;averageWriteIops&quot;: 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.
        },
        &quot;memory&quot;: { # Memory usage sample. # Memory usage sample.
          &quot;utilizedPercentage&quot;: 3.14, # Percentage of system memory utilized. Must be in the interval [0, 100].
        },
        &quot;network&quot;: { # Network usage sample. Values are across all network interfaces. # Network usage sample.
          &quot;averageEgressBps&quot;: 3.14, # Average network egress in B/s sampled over a short window. Must be non-negative.
          &quot;averageIngressBps&quot;: 3.14, # Average network ingress in B/s sampled over a short window. Must be non-negative.
        },
        &quot;sampleTime&quot;: &quot;A String&quot;, # Time the sample was collected. If omitted, the frame report time will be used.
      },
    ],
    &quot;reportTime&quot;: &quot;A String&quot;, # The time the data was reported.
    &quot;traceToken&quot;: &quot;A String&quot;, # Optional. Trace token is optionally provided to assist with debugging and traceability.
  },
  &quot;violations&quot;: [ # Output only. All the violations that were detected for the frame.
    { # A resource that contains a single violation of a reported `AssetFrame` resource.
      &quot;field&quot;: &quot;A String&quot;, # The field of the original frame where the violation occurred.
      &quot;violation&quot;: &quot;A String&quot;, # 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.
  &quot;errorFrames&quot;: [ # The list of error frames.
    { # Message representing a frame which failed to be processed due to an error.
      &quot;ingestionTime&quot;: &quot;A String&quot;, # Output only. Frame ingestion time.
      &quot;name&quot;: &quot;A String&quot;, # Output only. The identifier of the ErrorFrame.
      &quot;originalFrame&quot;: { # Contains data reported from an inventory source on an asset. # Output only. The frame that was originally reported.
        &quot;attributes&quot;: { # Generic asset attributes.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;collectionType&quot;: &quot;A String&quot;, # 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.
        &quot;databaseDeploymentDetails&quot;: { # The details of a database deployment asset. # Asset information specific for database deployments.
          &quot;aggregatedStats&quot;: { # Aggregated stats for the database deployment. # Output only. Aggregated stats for the database deployment.
            &quot;databaseCount&quot;: 42, # Output only. The number of databases in the deployment.
          },
          &quot;awsRds&quot;: { # Specific details for an AWS RDS database deployment. # Optional. Details of an AWS RDS instance.
          },
          &quot;edition&quot;: &quot;A String&quot;, # Optional. The database deployment edition.
          &quot;generatedId&quot;: &quot;A String&quot;, # Optional. The database deployment generated ID.
          &quot;manualUniqueId&quot;: &quot;A String&quot;, # Optional. A manual unique ID set by the user.
          &quot;mysql&quot;: { # Specific details for a Mysql database deployment. # Optional. Details of a MYSQL database deployment.
            &quot;plugins&quot;: [ # Optional. List of MySql plugins.
              { # MySql plugin.
                &quot;enabled&quot;: True or False, # Required. The plugin is active.
                &quot;plugin&quot;: &quot;A String&quot;, # Required. The plugin name.
                &quot;version&quot;: &quot;A String&quot;, # Required. The plugin version.
              },
            ],
            &quot;properties&quot;: [ # Optional. List of MySql properties.
              { # MySql property.
                &quot;enabled&quot;: True or False, # Required. The property is enabled.
                &quot;numericValue&quot;: &quot;A String&quot;, # Required. The property numeric value.
                &quot;property&quot;: &quot;A String&quot;, # Required. The property name.
              },
            ],
            &quot;resourceGroupsCount&quot;: 42, # Optional. Number of resource groups.
            &quot;variables&quot;: [ # Optional. List of MySql variables.
              { # MySql variable.
                &quot;category&quot;: &quot;A String&quot;, # Required. The variable category.
                &quot;value&quot;: &quot;A String&quot;, # Required. The variable value.
                &quot;variable&quot;: &quot;A String&quot;, # Required. The variable name.
              },
            ],
          },
          &quot;postgresql&quot;: { # Specific details for a PostgreSQL database deployment. # Optional. Details of a PostgreSQL database deployment.
            &quot;properties&quot;: [ # Optional. List of PostgreSql properties.
              { # PostgreSql property.
                &quot;enabled&quot;: True or False, # Required. The property is enabled.
                &quot;numericValue&quot;: &quot;A String&quot;, # Required. The property numeric value.
                &quot;property&quot;: &quot;A String&quot;, # Required. The property name.
              },
            ],
            &quot;settings&quot;: [ # Optional. List of PostgreSql settings.
              { # PostgreSql setting.
                &quot;boolValue&quot;: True or False, # Required. The setting boolean value.
                &quot;intValue&quot;: &quot;A String&quot;, # Required. The setting int value.
                &quot;realValue&quot;: 3.14, # Required. The setting real value.
                &quot;setting&quot;: &quot;A String&quot;, # Required. The setting name.
                &quot;source&quot;: &quot;A String&quot;, # Required. The setting source.
                &quot;stringValue&quot;: &quot;A String&quot;, # Required. The setting string value. Notice that enum values are stored as strings.
                &quot;unit&quot;: &quot;A String&quot;, # Optional. The setting unit.
              },
            ],
          },
          &quot;sqlServer&quot;: { # Specific details for a Microsoft SQL Server database deployment. # Optional. Details of a Microsoft SQL Server database deployment.
            &quot;features&quot;: [ # Optional. List of SQL Server features.
              { # SQL Server feature details.
                &quot;enabled&quot;: True or False, # Required. Field enabled is set when a feature is used on the source deployment.
                &quot;featureName&quot;: &quot;A String&quot;, # Required. The feature name.
              },
            ],
            &quot;serverFlags&quot;: [ # Optional. List of SQL Server server flags.
              { # SQL Server server flag details.
                &quot;serverFlagName&quot;: &quot;A String&quot;, # Required. The server flag name.
                &quot;value&quot;: &quot;A String&quot;, # Required. The server flag value set by the user.
                &quot;valueInUse&quot;: &quot;A String&quot;, # 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.
              },
            ],
            &quot;traceFlags&quot;: [ # Optional. List of SQL Server trace flags.
              { # SQL Server trace flag details.
                &quot;scope&quot;: &quot;A String&quot;, # Required. The trace flag scope.
                &quot;traceFlagName&quot;: &quot;A String&quot;, # Required. The trace flag name.
              },
            ],
          },
          &quot;topology&quot;: { # Details of database deployment&#x27;s topology. # Optional. Details of the database deployment topology.
            &quot;coreCount&quot;: 42, # Optional. Number of total logical cores.
            &quot;coreLimit&quot;: 42, # Optional. Number of total logical cores limited by db deployment.
            &quot;diskAllocatedBytes&quot;: &quot;A String&quot;, # Optional. Disk allocated in bytes.
            &quot;diskUsedBytes&quot;: &quot;A String&quot;, # Optional. Disk used in bytes.
            &quot;instances&quot;: [ # Optional. List of database instances.
              { # Details of a database instance.
                &quot;instanceName&quot;: &quot;A String&quot;, # Optional. The instance&#x27;s name.
                &quot;network&quot;: { # Network details of a database instance. # Optional. Networking details.
                  &quot;hostNames&quot;: [ # Optional. The instance&#x27;s host names.
                    &quot;A String&quot;,
                  ],
                  &quot;ipAddresses&quot;: [ # Optional. The instance&#x27;s IP addresses.
                    &quot;A String&quot;,
                  ],
                  &quot;primaryMacAddress&quot;: &quot;A String&quot;, # Optional. The instance&#x27;s primary MAC address.
                },
                &quot;role&quot;: &quot;A String&quot;, # Optional. The instance role in the database engine.
              },
            ],
            &quot;memoryBytes&quot;: &quot;A String&quot;, # Optional. Total memory in bytes.
            &quot;memoryLimitBytes&quot;: &quot;A String&quot;, # Optional. Total memory in bytes limited by db deployment.
            &quot;physicalCoreCount&quot;: 42, # Optional. Number of total physical cores.
            &quot;physicalCoreLimit&quot;: 42, # Optional. Number of total physical cores limited by db deployment.
          },
          &quot;version&quot;: &quot;A String&quot;, # Optional. The database deployment version.
        },
        &quot;databaseDetails&quot;: { # Details of a logical database. # Asset information specific for logical databases.
          &quot;allocatedStorageBytes&quot;: &quot;A String&quot;, # Optional. The allocated storage for the database in bytes.
          &quot;databaseName&quot;: &quot;A String&quot;, # Required. The name of the database.
          &quot;parentDatabaseDeployment&quot;: { # The identifiers of the parent database deployment. # Required. The parent database deployment that contains the logical database.
            &quot;generatedId&quot;: &quot;A String&quot;, # Optional. The parent database deployment generated ID.
            &quot;manualUniqueId&quot;: &quot;A String&quot;, # Optional. The parent database deployment optional manual unique ID set by the user.
          },
          &quot;schemas&quot;: [ # Optional. The database schemas.
            { # Details of a database schema.
              &quot;mysql&quot;: { # Specific details for a Mysql database. # Optional. Details of a Mysql schema.
                &quot;storageEngines&quot;: [ # Optional. Mysql storage engine tables.
                  { # Mysql storage engine tables.
                    &quot;encryptedTableCount&quot;: 42, # Optional. The number of encrypted tables.
                    &quot;engine&quot;: &quot;A String&quot;, # Required. The storage engine.
                    &quot;tableCount&quot;: 42, # Optional. The number of tables.
                  },
                ],
              },
              &quot;objects&quot;: [ # Optional. List of details of objects by category.
                { # Details of a group of database objects.
                  &quot;category&quot;: &quot;A String&quot;, # Optional. The category of the objects.
                  &quot;count&quot;: &quot;A String&quot;, # Optional. The number of objects.
                },
              ],
              &quot;postgresql&quot;: { # Specific details for a PostgreSql schema. # Optional. Details of a PostgreSql schema.
                &quot;foreignTablesCount&quot;: 42, # Optional. PostgreSql foreign tables.
                &quot;postgresqlExtensions&quot;: [ # Optional. PostgreSql extensions.
                  { # PostgreSql extension.
                    &quot;extension&quot;: &quot;A String&quot;, # Required. The extension name.
                    &quot;version&quot;: &quot;A String&quot;, # Required. The extension version.
                  },
                ],
              },
              &quot;schemaName&quot;: &quot;A String&quot;, # Required. The name of the schema.
              &quot;sqlServer&quot;: { # Specific details for a SqlServer database. # Optional. Details of a SqlServer schema.
                &quot;clrObjectCount&quot;: 42, # Optional. SqlServer number of CLR objects.
              },
              &quot;tablesSizeBytes&quot;: &quot;A String&quot;, # Optional. The total size of tables in bytes.
            },
          ],
        },
        &quot;labels&quot;: { # Labels as key value pairs.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;machineDetails&quot;: { # Details of a machine. # Asset information specific for virtual machines.
          &quot;architecture&quot;: { # Details of the machine architecture. # Architecture details (vendor, CPU architecture).
            &quot;bios&quot;: { # Details about the BIOS. # BIOS Details.
              &quot;biosName&quot;: &quot;A String&quot;, # BIOS name. This fields is deprecated. Please use the `id` field instead.
              &quot;id&quot;: &quot;A String&quot;, # BIOS ID.
              &quot;manufacturer&quot;: &quot;A String&quot;, # BIOS manufacturer.
              &quot;releaseDate&quot;: { # 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.
                &quot;day&quot;: 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&#x27;t significant.
                &quot;month&quot;: 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
                &quot;year&quot;: 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
              },
              &quot;smbiosUuid&quot;: &quot;A String&quot;, # SMBIOS UUID.
              &quot;version&quot;: &quot;A String&quot;, # BIOS version.
            },
            &quot;cpuArchitecture&quot;: &quot;A String&quot;, # CPU architecture, e.g., &quot;x64-based PC&quot;, &quot;x86_64&quot;, &quot;i686&quot; etc.
            &quot;cpuManufacturer&quot;: &quot;A String&quot;, # Optional. CPU manufacturer, e.g., &quot;Intel&quot;, &quot;AMD&quot;.
            &quot;cpuName&quot;: &quot;A String&quot;, # CPU name, e.g., &quot;Intel Xeon E5-2690&quot;, &quot;AMD EPYC 7571&quot; etc.
            &quot;cpuSocketCount&quot;: 42, # Number of processor sockets allocated to the machine.
            &quot;cpuThreadCount&quot;: 42, # Deprecated: use MachineDetails.core_count instead. Number of CPU threads allocated to the machine.
            &quot;firmwareType&quot;: &quot;A String&quot;, # Firmware type.
            &quot;hyperthreading&quot;: &quot;A String&quot;, # CPU hyper-threading support.
            &quot;vendor&quot;: &quot;A String&quot;, # Hardware vendor.
          },
          &quot;coreCount&quot;: 42, # Number of logical CPU cores in the machine. Must be non-negative.
          &quot;createTime&quot;: &quot;A String&quot;, # Machine creation time.
          &quot;diskPartitions&quot;: { # 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.
            &quot;freeSpaceBytes&quot;: &quot;A String&quot;, # Output only. Total free space of all partitions.
            &quot;partitions&quot;: { # Disk partition list. # Optional. List of partitions.
              &quot;entries&quot;: [ # Partition entries.
                { # Disk Partition details.
                  &quot;capacityBytes&quot;: &quot;A String&quot;, # Partition capacity.
                  &quot;fileSystem&quot;: &quot;A String&quot;, # Partition file system.
                  &quot;freeBytes&quot;: &quot;A String&quot;, # Partition free space.
                  &quot;mountPoint&quot;: &quot;A String&quot;, # Mount point (Linux/Windows) or drive letter (Windows).
                  &quot;subPartitions&quot;: # Object with schema name: DiskPartitionList # Sub-partitions.
                  &quot;type&quot;: &quot;A String&quot;, # Partition type.
                  &quot;uuid&quot;: &quot;A String&quot;, # Partition UUID.
                },
              ],
            },
            &quot;totalCapacityBytes&quot;: &quot;A String&quot;, # Output only. Total capacity of all partitions.
          },
          &quot;disks&quot;: { # Details of machine disks. # Disk details.
            &quot;disks&quot;: { # VM disks. # List of disks.
              &quot;entries&quot;: [ # Disk entries.
                { # Single disk entry.
                  &quot;capacityBytes&quot;: &quot;A String&quot;, # Disk capacity.
                  &quot;diskLabel&quot;: &quot;A String&quot;, # Disk label.
                  &quot;diskLabelType&quot;: &quot;A String&quot;, # Disk label type (e.g. BIOS/GPT)
                  &quot;freeBytes&quot;: &quot;A String&quot;, # Disk free space.
                  &quot;hwAddress&quot;: &quot;A String&quot;, # Disk hardware address (e.g. 0:1 for SCSI).
                  &quot;interfaceType&quot;: &quot;A String&quot;, # Disks interface type.
                  &quot;partitions&quot;: { # Disk partition list. # Partition layout.
                    &quot;entries&quot;: [ # Partition entries.
                      { # Disk Partition details.
                        &quot;capacityBytes&quot;: &quot;A String&quot;, # Partition capacity.
                        &quot;fileSystem&quot;: &quot;A String&quot;, # Partition file system.
                        &quot;freeBytes&quot;: &quot;A String&quot;, # Partition free space.
                        &quot;mountPoint&quot;: &quot;A String&quot;, # Mount point (Linux/Windows) or drive letter (Windows).
                        &quot;subPartitions&quot;: # Object with schema name: DiskPartitionList # Sub-partitions.
                        &quot;type&quot;: &quot;A String&quot;, # Partition type.
                        &quot;uuid&quot;: &quot;A String&quot;, # Partition UUID.
                      },
                    ],
                  },
                  &quot;vmware&quot;: { # VMware disk config details. # VMware disk details.
                    &quot;backingType&quot;: &quot;A String&quot;, # VMDK backing type.
                    &quot;rdmCompatibility&quot;: &quot;A String&quot;, # RDM compatibility mode.
                    &quot;shared&quot;: True or False, # Is VMDK shared with other VMs.
                    &quot;vmdkMode&quot;: &quot;A String&quot;, # VMDK disk mode.
                  },
                },
              ],
            },
            &quot;totalCapacityBytes&quot;: &quot;A String&quot;, # Disk total Capacity.
            &quot;totalFreeBytes&quot;: &quot;A String&quot;, # Total disk free space.
          },
          &quot;guestOs&quot;: { # Information from Guest-level collections. # Guest OS information.
            &quot;config&quot;: { # Guest OS config information. # OS and app configuration.
              &quot;fstab&quot;: { # Fstab content. # Mount list (Linux fstab).
                &quot;entries&quot;: [ # Fstab entries.
                  { # Single fstab entry.
                    &quot;file&quot;: &quot;A String&quot;, # The mount point for the filesystem.
                    &quot;freq&quot;: 42, # Used by dump to determine which filesystems need to be dumped.
                    &quot;mntops&quot;: &quot;A String&quot;, # Mount options associated with the filesystem.
                    &quot;passno&quot;: 42, # Used by the fsck(8) program to determine the order in which filesystem checks are done at reboot time.
                    &quot;spec&quot;: &quot;A String&quot;, # The block special device or remote filesystem to be mounted.
                    &quot;vfstype&quot;: &quot;A String&quot;, # The type of the filesystem.
                  },
                ],
              },
              &quot;hosts&quot;: { # Hosts content. # Hosts file (/etc/hosts).
                &quot;entries&quot;: [ # Hosts entries.
                  { # Single /etc/hosts entry.
                    &quot;hostNames&quot;: [ # List of host names / aliases.
                      &quot;A String&quot;,
                    ],
                    &quot;ip&quot;: &quot;A String&quot;, # IP (raw, IPv4/6 agnostic).
                  },
                ],
              },
              &quot;issue&quot;: &quot;A String&quot;, # OS issue (typically /etc/issue in Linux).
              &quot;nfsExports&quot;: { # NFS exports. # NFS exports.
                &quot;entries&quot;: [ # NFS export entries.
                  { # NFS export.
                    &quot;exportDirectory&quot;: &quot;A String&quot;, # The directory being exported.
                    &quot;hosts&quot;: [ # The hosts or networks to which the export is being shared.
                      &quot;A String&quot;,
                    ],
                  },
                ],
              },
              &quot;selinuxMode&quot;: &quot;A String&quot;, # Security-Enhanced Linux (SELinux) mode.
            },
            &quot;family&quot;: &quot;A String&quot;, # What family the OS belong to, if known.
            &quot;osName&quot;: &quot;A String&quot;, # The name of the operating system.
            &quot;runtime&quot;: { # Guest OS runtime information. # Runtime information.
              &quot;domain&quot;: &quot;A String&quot;, # Domain, e.g. c.stratozone-development.internal.
              &quot;installedApps&quot;: { # Guest installed application list. # Installed applications information.
                &quot;entries&quot;: [ # Application entries.
                  { # Guest installed application information.
                    &quot;applicationName&quot;: &quot;A String&quot;, # Installed application name.
                    &quot;installTime&quot;: &quot;A String&quot;, # The time when the application was installed.
                    &quot;licenses&quot;: [ # License strings associated with the installed application.
                      &quot;A String&quot;,
                    ],
                    &quot;path&quot;: &quot;A String&quot;, # Source path.
                    &quot;vendor&quot;: &quot;A String&quot;, # Installed application vendor.
                    &quot;version&quot;: &quot;A String&quot;, # Installed application version.
                  },
                ],
              },
              &quot;lastBootTime&quot;: &quot;A String&quot;, # Last time the OS was booted.
              &quot;machineName&quot;: &quot;A String&quot;, # Machine name.
              &quot;network&quot;: { # Runtime networking information. # Runtime network information (connections, ports).
                &quot;connections&quot;: { # Network connection list. # Network connections.
                  &quot;entries&quot;: [ # Network connection entries.
                    {
                      &quot;localIpAddress&quot;: &quot;A String&quot;, # Local IP address.
                      &quot;localPort&quot;: 42, # Local port.
                      &quot;pid&quot;: &quot;A String&quot;, # Process ID.
                      &quot;processName&quot;: &quot;A String&quot;, # Process or service name.
                      &quot;protocol&quot;: &quot;A String&quot;, # Connection protocol (e.g. TCP/UDP).
                      &quot;remoteIpAddress&quot;: &quot;A String&quot;, # Remote IP address.
                      &quot;remotePort&quot;: 42, # Remote port.
                      &quot;state&quot;: &quot;A String&quot;, # Network connection state.
                    },
                  ],
                },
                &quot;scanTime&quot;: &quot;A String&quot;, # Time of the last network scan.
              },
              &quot;openFileList&quot;: { # Open file list. # Open files information.
                &quot;entries&quot;: [ # Open file details entries.
                  { # Open file Information.
                    &quot;command&quot;: &quot;A String&quot;, # Opened file command.
                    &quot;filePath&quot;: &quot;A String&quot;, # Opened file file path.
                    &quot;fileType&quot;: &quot;A String&quot;, # Opened file file type.
                    &quot;user&quot;: &quot;A String&quot;, # Opened file user.
                  },
                ],
              },
              &quot;processes&quot;: { # List of running guest OS processes. # Running processes.
                &quot;entries&quot;: [ # Running process entries.
                  { # Guest OS running process details.
                    &quot;attributes&quot;: { # Process extended attributes.
                      &quot;a_key&quot;: &quot;A String&quot;,
                    },
                    &quot;cmdline&quot;: &quot;A String&quot;, # Process full command line.
                    &quot;exePath&quot;: &quot;A String&quot;, # Process binary path.
                    &quot;pid&quot;: &quot;A String&quot;, # Process ID.
                    &quot;user&quot;: &quot;A String&quot;, # User running the process.
                  },
                ],
              },
              &quot;services&quot;: { # List of running guest OS services. # Running background services.
                &quot;entries&quot;: [ # Running service entries.
                  { # Guest OS running service details.
                    &quot;cmdline&quot;: &quot;A String&quot;, # Service command line.
                    &quot;exePath&quot;: &quot;A String&quot;, # Service binary path.
                    &quot;pid&quot;: &quot;A String&quot;, # Service pid.
                    &quot;serviceName&quot;: &quot;A String&quot;, # Service name.
                    &quot;startMode&quot;: &quot;A String&quot;, # Service start mode (OS-agnostic).
                    &quot;state&quot;: &quot;A String&quot;, # Service state (OS-agnostic).
                  },
                ],
              },
            },
            &quot;version&quot;: &quot;A String&quot;, # The version of the operating system.
          },
          &quot;machineName&quot;: &quot;A String&quot;, # Machine name.
          &quot;memoryMb&quot;: 42, # The amount of memory in the machine. Must be non-negative.
          &quot;network&quot;: { # Details of network adapters and settings. # Network details.
            &quot;adapters&quot;: { # List of network adapters. # List of network adapters.
              &quot;entries&quot;: [ # Network adapter entries.
                { # Details of network adapter.
                  &quot;adapterType&quot;: &quot;A String&quot;, # Network adapter type (e.g. VMXNET3).
                  &quot;addresses&quot;: { # List of allocated/assigned network addresses. # NetworkAddressList
                    &quot;entries&quot;: [ # Network address entries.
                      { # Details of network address.
                        &quot;assignment&quot;: &quot;A String&quot;, # Whether DHCP is used to assign addresses.
                        &quot;bcast&quot;: &quot;A String&quot;, # Broadcast address.
                        &quot;fqdn&quot;: &quot;A String&quot;, # Fully qualified domain name.
                        &quot;ipAddress&quot;: &quot;A String&quot;, # Assigned or configured IP Address.
                        &quot;subnetMask&quot;: &quot;A String&quot;, # Subnet mask.
                      },
                    ],
                  },
                  &quot;macAddress&quot;: &quot;A String&quot;, # MAC address.
                },
              ],
            },
            &quot;primaryIpAddress&quot;: &quot;A String&quot;, # The primary IP address of the machine.
            &quot;primaryMacAddress&quot;: &quot;A String&quot;, # MAC address of the machine. This property is used to uniqly identify the machine.
            &quot;publicIpAddress&quot;: &quot;A String&quot;, # The public IP address of the machine.
          },
          &quot;platform&quot;: { # Information about the platform. # Platform specific information.
            &quot;awsEc2Details&quot;: { # AWS EC2 specific details. # AWS EC2 specific details.
              &quot;hyperthreading&quot;: &quot;A String&quot;, # Optional. Whether the machine is hyperthreaded.
              &quot;location&quot;: &quot;A String&quot;, # The location of the machine in the AWS format.
              &quot;machineTypeLabel&quot;: &quot;A String&quot;, # AWS platform&#x27;s machine type label.
            },
            &quot;azureVmDetails&quot;: { # Azure VM specific details. # Azure VM specific details.
              &quot;hyperthreading&quot;: &quot;A String&quot;, # Whether the machine is hyperthreaded.
              &quot;location&quot;: &quot;A String&quot;, # The location of the machine in the Azure format.
              &quot;machineTypeLabel&quot;: &quot;A String&quot;, # Azure platform&#x27;s machine type label.
              &quot;provisioningState&quot;: &quot;A String&quot;, # Azure platform&#x27;s provisioning state.
            },
            &quot;genericDetails&quot;: { # Generic platform details. # Generic platform details.
              &quot;hyperthreading&quot;: &quot;A String&quot;, # Whether the machine is hyperthreaded.
              &quot;location&quot;: &quot;A String&quot;, # 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.
            },
            &quot;physicalDetails&quot;: { # Platform specific details for Physical Machines. # Physical machines platform details.
              &quot;hyperthreading&quot;: &quot;A String&quot;, # Whether the machine is hyperthreaded.
              &quot;location&quot;: &quot;A String&quot;, # 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.
            },
            &quot;vmwareDetails&quot;: { # VMware specific details. # VMware specific details.
              &quot;esxHyperthreading&quot;: &quot;A String&quot;, # Whether the ESX is hyperthreaded.
              &quot;esxVersion&quot;: &quot;A String&quot;, # ESX version.
              &quot;osid&quot;: &quot;A String&quot;, # 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.
              &quot;vcenterFolder&quot;: &quot;A String&quot;, # Folder name in vCenter where asset resides.
              &quot;vcenterUri&quot;: &quot;A String&quot;, # vCenter URI used in collection.
              &quot;vcenterVersion&quot;: &quot;A String&quot;, # vCenter version.
              &quot;vcenterVmId&quot;: &quot;A String&quot;, # vCenter VM ID.
            },
          },
          &quot;powerState&quot;: &quot;A String&quot;, # Power state of the machine.
          &quot;uuid&quot;: &quot;A String&quot;, # Machine unique identifier.
        },
        &quot;performanceSamples&quot;: [ # Asset performance data samples. Samples that are from more than 40 days ago or after tomorrow are ignored.
          { # Performance data sample.
            &quot;cpu&quot;: { # CPU usage sample. # CPU usage sample.
              &quot;utilizedPercentage&quot;: 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.
            },
            &quot;disk&quot;: { # Disk usage sample. Values are across all disks. # Disk usage sample.
              &quot;averageIops&quot;: 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.
              &quot;averageReadIops&quot;: 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.
              &quot;averageWriteIops&quot;: 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.
            },
            &quot;memory&quot;: { # Memory usage sample. # Memory usage sample.
              &quot;utilizedPercentage&quot;: 3.14, # Percentage of system memory utilized. Must be in the interval [0, 100].
            },
            &quot;network&quot;: { # Network usage sample. Values are across all network interfaces. # Network usage sample.
              &quot;averageEgressBps&quot;: 3.14, # Average network egress in B/s sampled over a short window. Must be non-negative.
              &quot;averageIngressBps&quot;: 3.14, # Average network ingress in B/s sampled over a short window. Must be non-negative.
            },
            &quot;sampleTime&quot;: &quot;A String&quot;, # Time the sample was collected. If omitted, the frame report time will be used.
          },
        ],
        &quot;reportTime&quot;: &quot;A String&quot;, # The time the data was reported.
        &quot;traceToken&quot;: &quot;A String&quot;, # Optional. Trace token is optionally provided to assist with debugging and traceability.
      },
      &quot;violations&quot;: [ # Output only. All the violations that were detected for the frame.
        { # A resource that contains a single violation of a reported `AssetFrame` resource.
          &quot;field&quot;: &quot;A String&quot;, # The field of the original frame where the violation occurred.
          &quot;violation&quot;: &quot;A String&quot;, # A message describing the violation.
        },
      ],
    },
  ],
  &quot;nextPageToken&quot;: &quot;A String&quot;, # A token identifying a page of results the server should return.
  &quot;unreachable&quot;: [ # Locations that could not be reached.
    &quot;A String&quot;,
  ],
}</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 &#x27;execute()&#x27; on to request the next
          page. Returns None if there are no more items in the collection.
        </pre>
</div>

</body></html>