Clouddebugger.php
36.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
<?php
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
/**
* Service definition for Clouddebugger (v2).
*
* <p>
* Lets you examine the stack and variables of your running application without
* stopping or slowing it down.</p>
*
* <p>
* For more information about this service, see the API
* <a href="https://cloud.google.com/tools/cloud-debugger" target="_blank">Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_Service_Clouddebugger extends Google_Service
{
/** View and manage your data across Google Cloud Platform services. */
const CLOUD_PLATFORM =
"https://www.googleapis.com/auth/cloud-platform";
/** Manage cloud debugger. */
const CLOUD_DEBUGGER =
"https://www.googleapis.com/auth/cloud_debugger";
/** Manage active breakpoints in cloud debugger. */
const CLOUD_DEBUGLETCONTROLLER =
"https://www.googleapis.com/auth/cloud_debugletcontroller";
public $controller_debuggees;
public $controller_debuggees_breakpoints;
public $debugger_debuggees;
public $debugger_debuggees_breakpoints;
/**
* Constructs the internal representation of the Clouddebugger service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client)
{
parent::__construct($client);
$this->rootUrl = 'https://clouddebugger.googleapis.com/';
$this->servicePath = '';
$this->version = 'v2';
$this->serviceName = 'clouddebugger';
$this->controller_debuggees = new Google_Service_Clouddebugger_ControllerDebuggees_Resource(
$this,
$this->serviceName,
'debuggees',
array(
'methods' => array(
'register' => array(
'path' => 'v2/controller/debuggees/register',
'httpMethod' => 'POST',
'parameters' => array(),
),
)
)
);
$this->controller_debuggees_breakpoints = new Google_Service_Clouddebugger_ControllerDebuggeesBreakpoints_Resource(
$this,
$this->serviceName,
'breakpoints',
array(
'methods' => array(
'list' => array(
'path' => 'v2/controller/debuggees/{debuggeeId}/breakpoints',
'httpMethod' => 'GET',
'parameters' => array(
'debuggeeId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'waitToken' => array(
'location' => 'query',
'type' => 'string',
),
),
),'update' => array(
'path' => 'v2/controller/debuggees/{debuggeeId}/breakpoints/{id}',
'httpMethod' => 'PUT',
'parameters' => array(
'debuggeeId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'id' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),
)
)
);
$this->debugger_debuggees = new Google_Service_Clouddebugger_DebuggerDebuggees_Resource(
$this,
$this->serviceName,
'debuggees',
array(
'methods' => array(
'list' => array(
'path' => 'v2/debugger/debuggees',
'httpMethod' => 'GET',
'parameters' => array(
'project' => array(
'location' => 'query',
'type' => 'string',
),
'includeInactive' => array(
'location' => 'query',
'type' => 'boolean',
),
),
),
)
)
);
$this->debugger_debuggees_breakpoints = new Google_Service_Clouddebugger_DebuggerDebuggeesBreakpoints_Resource(
$this,
$this->serviceName,
'breakpoints',
array(
'methods' => array(
'delete' => array(
'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints/{breakpointId}',
'httpMethod' => 'DELETE',
'parameters' => array(
'debuggeeId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'breakpointId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'get' => array(
'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints/{breakpointId}',
'httpMethod' => 'GET',
'parameters' => array(
'debuggeeId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'breakpointId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'list' => array(
'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints',
'httpMethod' => 'GET',
'parameters' => array(
'debuggeeId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'includeAllUsers' => array(
'location' => 'query',
'type' => 'boolean',
),
'stripResults' => array(
'location' => 'query',
'type' => 'boolean',
),
'action.value' => array(
'location' => 'query',
'type' => 'string',
),
'includeInactive' => array(
'location' => 'query',
'type' => 'boolean',
),
'waitToken' => array(
'location' => 'query',
'type' => 'string',
),
),
),'set' => array(
'path' => 'v2/debugger/debuggees/{debuggeeId}/breakpoints/set',
'httpMethod' => 'POST',
'parameters' => array(
'debuggeeId' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),
)
)
);
}
}
/**
* The "controller" collection of methods.
* Typical usage is:
* <code>
* $clouddebuggerService = new Google_Service_Clouddebugger(...);
* $controller = $clouddebuggerService->controller;
* </code>
*/
class Google_Service_Clouddebugger_Controller_Resource extends Google_Service_Resource
{
}
/**
* The "debuggees" collection of methods.
* Typical usage is:
* <code>
* $clouddebuggerService = new Google_Service_Clouddebugger(...);
* $debuggees = $clouddebuggerService->debuggees;
* </code>
*/
class Google_Service_Clouddebugger_ControllerDebuggees_Resource extends Google_Service_Resource
{
/**
* Registers the debuggee with the controller. All agents should call this API
* with the same request content to get back the same stable 'debuggee_id'.
* Agents should call this API again whenever ListActiveBreakpoints or
* UpdateActiveBreakpoint return the error google.rpc.Code.NOT_FOUND. It allows
* the server to disable the agent or recover from any registration loss. If the
* debuggee is disabled server, the response will have is_disabled' set to true.
* (debuggees.register)
*
* @param Google_RegisterDebuggeeRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Clouddebugger_RegisterDebuggeeResponse
*/
public function register(Google_Service_Clouddebugger_RegisterDebuggeeRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('register', array($params), "Google_Service_Clouddebugger_RegisterDebuggeeResponse");
}
}
/**
* The "breakpoints" collection of methods.
* Typical usage is:
* <code>
* $clouddebuggerService = new Google_Service_Clouddebugger(...);
* $breakpoints = $clouddebuggerService->breakpoints;
* </code>
*/
class Google_Service_Clouddebugger_ControllerDebuggeesBreakpoints_Resource extends Google_Service_Resource
{
/**
* Returns the list of all active breakpoints for the specified debuggee. The
* breakpoint specification (location, condition, and expression fields) is
* semantically immutable, although the field values may change. For example, an
* agent may update the location line number to reflect the actual line the
* breakpoint was set to, but that doesn't change the breakpoint semantics.
* Thus, an agent does not need to check if a breakpoint has changed when it
* encounters the same breakpoint on a successive call. Moreover, an agent
* should remember breakpoints that are complete until the controller removes
* them from the active list to avoid setting those breakpoints again.
* (breakpoints.listControllerDebuggeesBreakpoints)
*
* @param string $debuggeeId Identifies the debuggee.
* @param array $optParams Optional parameters.
*
* @opt_param string waitToken A wait token that, if specified, blocks the
* method call until the list of active breakpoints has changed, or a server
* selected timeout has expired. The value should be set from the last returned
* response. The error code google.rpc.Code.ABORTED is returned on wait timeout
* (which does not require the agent to re-register with the server)
* @return Google_Service_Clouddebugger_ListActiveBreakpointsResponse
*/
public function listControllerDebuggeesBreakpoints($debuggeeId, $optParams = array())
{
$params = array('debuggeeId' => $debuggeeId);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Clouddebugger_ListActiveBreakpointsResponse");
}
/**
* Updates the breakpoint state or mutable fields. The entire Breakpoint
* protobuf must be sent back to the controller. Updates to active breakpoint
* fields are only allowed if the new value does not change the breakpoint
* specification. Updates to the 'location', 'condition' and 'expression' fields
* should not alter the breakpoint semantics. They are restricted to changes
* such as canonicalizing a value or snapping the location to the correct line
* of code. (breakpoints.update)
*
* @param string $debuggeeId Identifies the debuggee being debugged.
* @param string $id Breakpoint identifier, unique in the scope of the debuggee.
* @param Google_UpdateActiveBreakpointRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Clouddebugger_UpdateActiveBreakpointResponse
*/
public function update($debuggeeId, $id, Google_Service_Clouddebugger_UpdateActiveBreakpointRequest $postBody, $optParams = array())
{
$params = array('debuggeeId' => $debuggeeId, 'id' => $id, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('update', array($params), "Google_Service_Clouddebugger_UpdateActiveBreakpointResponse");
}
}
/**
* The "debugger" collection of methods.
* Typical usage is:
* <code>
* $clouddebuggerService = new Google_Service_Clouddebugger(...);
* $debugger = $clouddebuggerService->debugger;
* </code>
*/
class Google_Service_Clouddebugger_Debugger_Resource extends Google_Service_Resource
{
}
/**
* The "debuggees" collection of methods.
* Typical usage is:
* <code>
* $clouddebuggerService = new Google_Service_Clouddebugger(...);
* $debuggees = $clouddebuggerService->debuggees;
* </code>
*/
class Google_Service_Clouddebugger_DebuggerDebuggees_Resource extends Google_Service_Resource
{
/**
* Lists all the debuggees that the user can set breakpoints to.
* (debuggees.listDebuggerDebuggees)
*
* @param array $optParams Optional parameters.
*
* @opt_param string project Set to the project number of the Google Cloud
* Platform to list the debuggees that are part of that project.
* @opt_param bool includeInactive When set to true the result includes all
* debuggees, otherwise only debugees that are active.
* @return Google_Service_Clouddebugger_ListDebuggeesResponse
*/
public function listDebuggerDebuggees($optParams = array())
{
$params = array();
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Clouddebugger_ListDebuggeesResponse");
}
}
/**
* The "breakpoints" collection of methods.
* Typical usage is:
* <code>
* $clouddebuggerService = new Google_Service_Clouddebugger(...);
* $breakpoints = $clouddebuggerService->breakpoints;
* </code>
*/
class Google_Service_Clouddebugger_DebuggerDebuggeesBreakpoints_Resource extends Google_Service_Resource
{
/**
* Deletes the breakpoint from the debuggee. (breakpoints.delete)
*
* @param string $debuggeeId The debuggee id to delete the breakpoint from.
* @param string $breakpointId The breakpoint to delete.
* @param array $optParams Optional parameters.
* @return Google_Service_Clouddebugger_Empty
*/
public function delete($debuggeeId, $breakpointId, $optParams = array())
{
$params = array('debuggeeId' => $debuggeeId, 'breakpointId' => $breakpointId);
$params = array_merge($params, $optParams);
return $this->call('delete', array($params), "Google_Service_Clouddebugger_Empty");
}
/**
* Gets breakpoint information. (breakpoints.get)
*
* @param string $debuggeeId The debuggee id to get the breakpoint from.
* @param string $breakpointId The breakpoint to get.
* @param array $optParams Optional parameters.
* @return Google_Service_Clouddebugger_GetBreakpointResponse
*/
public function get($debuggeeId, $breakpointId, $optParams = array())
{
$params = array('debuggeeId' => $debuggeeId, 'breakpointId' => $breakpointId);
$params = array_merge($params, $optParams);
return $this->call('get', array($params), "Google_Service_Clouddebugger_GetBreakpointResponse");
}
/**
* Lists all breakpoints of the debuggee that the user has access to.
* (breakpoints.listDebuggerDebuggeesBreakpoints)
*
* @param string $debuggeeId The debuggee id to list breakpoint from.
* @param array $optParams Optional parameters.
*
* @opt_param bool includeAllUsers When set to true the response includes the
* list of breakpoints set by any user, otherwise only breakpoints set by the
* caller.
* @opt_param bool stripResults When set to true the response breakpoints will
* be stripped of the results fields: stack_frames, evaluated_expressions and
* variable_table.
* @opt_param string action.value Only breakpoints with the specified action
* will pass the filter.
* @opt_param bool includeInactive When set to true the response includes active
* and inactive breakpoints, otherwise only active breakpoints are returned.
* @opt_param string waitToken A wait token that, if specified, blocks the call
* until the breakpoints list has changed, or a server selected timeout has
* expired. The value should be set from the last response to ListBreakpoints.
* The error code ABORTED is returned on wait timeout, which should be called
* again with the same wait_token.
* @return Google_Service_Clouddebugger_ListBreakpointsResponse
*/
public function listDebuggerDebuggeesBreakpoints($debuggeeId, $optParams = array())
{
$params = array('debuggeeId' => $debuggeeId);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Clouddebugger_ListBreakpointsResponse");
}
/**
* Sets the breakpoint to the debuggee. (breakpoints.set)
*
* @param string $debuggeeId The debuggee id to set the breakpoint to.
* @param Google_Breakpoint $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Clouddebugger_SetBreakpointResponse
*/
public function set($debuggeeId, Google_Service_Clouddebugger_Breakpoint $postBody, $optParams = array())
{
$params = array('debuggeeId' => $debuggeeId, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('set', array($params), "Google_Service_Clouddebugger_SetBreakpointResponse");
}
}
class Google_Service_Clouddebugger_Breakpoint extends Google_Collection
{
protected $collection_key = 'variableTable';
protected $internal_gapi_mappings = array(
);
public $action;
public $condition;
public $createTime;
protected $evaluatedExpressionsType = 'Google_Service_Clouddebugger_Variable';
protected $evaluatedExpressionsDataType = 'array';
public $expressions;
public $finalTime;
public $id;
public $isFinalState;
protected $locationType = 'Google_Service_Clouddebugger_SourceLocation';
protected $locationDataType = '';
public $logLevel;
public $logMessageFormat;
protected $stackFramesType = 'Google_Service_Clouddebugger_StackFrame';
protected $stackFramesDataType = 'array';
protected $statusType = 'Google_Service_Clouddebugger_StatusMessage';
protected $statusDataType = '';
public $userEmail;
protected $variableTableType = 'Google_Service_Clouddebugger_Variable';
protected $variableTableDataType = 'array';
public function setAction($action)
{
$this->action = $action;
}
public function getAction()
{
return $this->action;
}
public function setCondition($condition)
{
$this->condition = $condition;
}
public function getCondition()
{
return $this->condition;
}
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
public function getCreateTime()
{
return $this->createTime;
}
public function setEvaluatedExpressions($evaluatedExpressions)
{
$this->evaluatedExpressions = $evaluatedExpressions;
}
public function getEvaluatedExpressions()
{
return $this->evaluatedExpressions;
}
public function setExpressions($expressions)
{
$this->expressions = $expressions;
}
public function getExpressions()
{
return $this->expressions;
}
public function setFinalTime($finalTime)
{
$this->finalTime = $finalTime;
}
public function getFinalTime()
{
return $this->finalTime;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIsFinalState($isFinalState)
{
$this->isFinalState = $isFinalState;
}
public function getIsFinalState()
{
return $this->isFinalState;
}
public function setLocation(Google_Service_Clouddebugger_SourceLocation $location)
{
$this->location = $location;
}
public function getLocation()
{
return $this->location;
}
public function setLogLevel($logLevel)
{
$this->logLevel = $logLevel;
}
public function getLogLevel()
{
return $this->logLevel;
}
public function setLogMessageFormat($logMessageFormat)
{
$this->logMessageFormat = $logMessageFormat;
}
public function getLogMessageFormat()
{
return $this->logMessageFormat;
}
public function setStackFrames($stackFrames)
{
$this->stackFrames = $stackFrames;
}
public function getStackFrames()
{
return $this->stackFrames;
}
public function setStatus(Google_Service_Clouddebugger_StatusMessage $status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
public function setUserEmail($userEmail)
{
$this->userEmail = $userEmail;
}
public function getUserEmail()
{
return $this->userEmail;
}
public function setVariableTable($variableTable)
{
$this->variableTable = $variableTable;
}
public function getVariableTable()
{
return $this->variableTable;
}
}
class Google_Service_Clouddebugger_CloudRepoSourceContext extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $aliasName;
protected $repoIdType = 'Google_Service_Clouddebugger_RepoId';
protected $repoIdDataType = '';
public $revisionId;
public function setAliasName($aliasName)
{
$this->aliasName = $aliasName;
}
public function getAliasName()
{
return $this->aliasName;
}
public function setRepoId(Google_Service_Clouddebugger_RepoId $repoId)
{
$this->repoId = $repoId;
}
public function getRepoId()
{
return $this->repoId;
}
public function setRevisionId($revisionId)
{
$this->revisionId = $revisionId;
}
public function getRevisionId()
{
return $this->revisionId;
}
}
class Google_Service_Clouddebugger_CloudWorkspaceId extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $name;
protected $repoIdType = 'Google_Service_Clouddebugger_RepoId';
protected $repoIdDataType = '';
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setRepoId(Google_Service_Clouddebugger_RepoId $repoId)
{
$this->repoId = $repoId;
}
public function getRepoId()
{
return $this->repoId;
}
}
class Google_Service_Clouddebugger_CloudWorkspaceSourceContext extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $snapshotId;
protected $workspaceIdType = 'Google_Service_Clouddebugger_CloudWorkspaceId';
protected $workspaceIdDataType = '';
public function setSnapshotId($snapshotId)
{
$this->snapshotId = $snapshotId;
}
public function getSnapshotId()
{
return $this->snapshotId;
}
public function setWorkspaceId(Google_Service_Clouddebugger_CloudWorkspaceId $workspaceId)
{
$this->workspaceId = $workspaceId;
}
public function getWorkspaceId()
{
return $this->workspaceId;
}
}
class Google_Service_Clouddebugger_Debuggee extends Google_Collection
{
protected $collection_key = 'sourceContexts';
protected $internal_gapi_mappings = array(
);
public $agentVersion;
public $description;
public $id;
public $isDisabled;
public $isInactive;
public $labels;
public $project;
protected $sourceContextsType = 'Google_Service_Clouddebugger_SourceContext';
protected $sourceContextsDataType = 'array';
protected $statusType = 'Google_Service_Clouddebugger_StatusMessage';
protected $statusDataType = '';
public $uniquifier;
public function setAgentVersion($agentVersion)
{
$this->agentVersion = $agentVersion;
}
public function getAgentVersion()
{
return $this->agentVersion;
}
public function setDescription($description)
{
$this->description = $description;
}
public function getDescription()
{
return $this->description;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setIsDisabled($isDisabled)
{
$this->isDisabled = $isDisabled;
}
public function getIsDisabled()
{
return $this->isDisabled;
}
public function setIsInactive($isInactive)
{
$this->isInactive = $isInactive;
}
public function getIsInactive()
{
return $this->isInactive;
}
public function setLabels($labels)
{
$this->labels = $labels;
}
public function getLabels()
{
return $this->labels;
}
public function setProject($project)
{
$this->project = $project;
}
public function getProject()
{
return $this->project;
}
public function setSourceContexts($sourceContexts)
{
$this->sourceContexts = $sourceContexts;
}
public function getSourceContexts()
{
return $this->sourceContexts;
}
public function setStatus(Google_Service_Clouddebugger_StatusMessage $status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
public function setUniquifier($uniquifier)
{
$this->uniquifier = $uniquifier;
}
public function getUniquifier()
{
return $this->uniquifier;
}
}
class Google_Service_Clouddebugger_DebuggeeLabels extends Google_Model
{
}
class Google_Service_Clouddebugger_Empty extends Google_Model
{
}
class Google_Service_Clouddebugger_FormatMessage extends Google_Collection
{
protected $collection_key = 'parameters';
protected $internal_gapi_mappings = array(
);
public $format;
public $parameters;
public function setFormat($format)
{
$this->format = $format;
}
public function getFormat()
{
return $this->format;
}
public function setParameters($parameters)
{
$this->parameters = $parameters;
}
public function getParameters()
{
return $this->parameters;
}
}
class Google_Service_Clouddebugger_GerritSourceContext extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $aliasName;
public $gerritProject;
public $hostUri;
public $revisionId;
public function setAliasName($aliasName)
{
$this->aliasName = $aliasName;
}
public function getAliasName()
{
return $this->aliasName;
}
public function setGerritProject($gerritProject)
{
$this->gerritProject = $gerritProject;
}
public function getGerritProject()
{
return $this->gerritProject;
}
public function setHostUri($hostUri)
{
$this->hostUri = $hostUri;
}
public function getHostUri()
{
return $this->hostUri;
}
public function setRevisionId($revisionId)
{
$this->revisionId = $revisionId;
}
public function getRevisionId()
{
return $this->revisionId;
}
}
class Google_Service_Clouddebugger_GetBreakpointResponse extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $breakpointType = 'Google_Service_Clouddebugger_Breakpoint';
protected $breakpointDataType = '';
public function setBreakpoint(Google_Service_Clouddebugger_Breakpoint $breakpoint)
{
$this->breakpoint = $breakpoint;
}
public function getBreakpoint()
{
return $this->breakpoint;
}
}
class Google_Service_Clouddebugger_GitSourceContext extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $revisionId;
public $url;
public function setRevisionId($revisionId)
{
$this->revisionId = $revisionId;
}
public function getRevisionId()
{
return $this->revisionId;
}
public function setUrl($url)
{
$this->url = $url;
}
public function getUrl()
{
return $this->url;
}
}
class Google_Service_Clouddebugger_ListActiveBreakpointsResponse extends Google_Collection
{
protected $collection_key = 'breakpoints';
protected $internal_gapi_mappings = array(
);
protected $breakpointsType = 'Google_Service_Clouddebugger_Breakpoint';
protected $breakpointsDataType = 'array';
public $nextWaitToken;
public function setBreakpoints($breakpoints)
{
$this->breakpoints = $breakpoints;
}
public function getBreakpoints()
{
return $this->breakpoints;
}
public function setNextWaitToken($nextWaitToken)
{
$this->nextWaitToken = $nextWaitToken;
}
public function getNextWaitToken()
{
return $this->nextWaitToken;
}
}
class Google_Service_Clouddebugger_ListBreakpointsResponse extends Google_Collection
{
protected $collection_key = 'breakpoints';
protected $internal_gapi_mappings = array(
);
protected $breakpointsType = 'Google_Service_Clouddebugger_Breakpoint';
protected $breakpointsDataType = 'array';
public $nextWaitToken;
public function setBreakpoints($breakpoints)
{
$this->breakpoints = $breakpoints;
}
public function getBreakpoints()
{
return $this->breakpoints;
}
public function setNextWaitToken($nextWaitToken)
{
$this->nextWaitToken = $nextWaitToken;
}
public function getNextWaitToken()
{
return $this->nextWaitToken;
}
}
class Google_Service_Clouddebugger_ListDebuggeesResponse extends Google_Collection
{
protected $collection_key = 'debuggees';
protected $internal_gapi_mappings = array(
);
protected $debuggeesType = 'Google_Service_Clouddebugger_Debuggee';
protected $debuggeesDataType = 'array';
public function setDebuggees($debuggees)
{
$this->debuggees = $debuggees;
}
public function getDebuggees()
{
return $this->debuggees;
}
}
class Google_Service_Clouddebugger_ProjectRepoId extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $projectId;
public $repoName;
public function setProjectId($projectId)
{
$this->projectId = $projectId;
}
public function getProjectId()
{
return $this->projectId;
}
public function setRepoName($repoName)
{
$this->repoName = $repoName;
}
public function getRepoName()
{
return $this->repoName;
}
}
class Google_Service_Clouddebugger_RegisterDebuggeeRequest extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $debuggeeType = 'Google_Service_Clouddebugger_Debuggee';
protected $debuggeeDataType = '';
public function setDebuggee(Google_Service_Clouddebugger_Debuggee $debuggee)
{
$this->debuggee = $debuggee;
}
public function getDebuggee()
{
return $this->debuggee;
}
}
class Google_Service_Clouddebugger_RegisterDebuggeeResponse extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $debuggeeType = 'Google_Service_Clouddebugger_Debuggee';
protected $debuggeeDataType = '';
public function setDebuggee(Google_Service_Clouddebugger_Debuggee $debuggee)
{
$this->debuggee = $debuggee;
}
public function getDebuggee()
{
return $this->debuggee;
}
}
class Google_Service_Clouddebugger_RepoId extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $projectRepoIdType = 'Google_Service_Clouddebugger_ProjectRepoId';
protected $projectRepoIdDataType = '';
public $uid;
public function setProjectRepoId(Google_Service_Clouddebugger_ProjectRepoId $projectRepoId)
{
$this->projectRepoId = $projectRepoId;
}
public function getProjectRepoId()
{
return $this->projectRepoId;
}
public function setUid($uid)
{
$this->uid = $uid;
}
public function getUid()
{
return $this->uid;
}
}
class Google_Service_Clouddebugger_SetBreakpointResponse extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $breakpointType = 'Google_Service_Clouddebugger_Breakpoint';
protected $breakpointDataType = '';
public function setBreakpoint(Google_Service_Clouddebugger_Breakpoint $breakpoint)
{
$this->breakpoint = $breakpoint;
}
public function getBreakpoint()
{
return $this->breakpoint;
}
}
class Google_Service_Clouddebugger_SourceContext extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $cloudRepoType = 'Google_Service_Clouddebugger_CloudRepoSourceContext';
protected $cloudRepoDataType = '';
protected $cloudWorkspaceType = 'Google_Service_Clouddebugger_CloudWorkspaceSourceContext';
protected $cloudWorkspaceDataType = '';
protected $gerritType = 'Google_Service_Clouddebugger_GerritSourceContext';
protected $gerritDataType = '';
protected $gitType = 'Google_Service_Clouddebugger_GitSourceContext';
protected $gitDataType = '';
public function setCloudRepo(Google_Service_Clouddebugger_CloudRepoSourceContext $cloudRepo)
{
$this->cloudRepo = $cloudRepo;
}
public function getCloudRepo()
{
return $this->cloudRepo;
}
public function setCloudWorkspace(Google_Service_Clouddebugger_CloudWorkspaceSourceContext $cloudWorkspace)
{
$this->cloudWorkspace = $cloudWorkspace;
}
public function getCloudWorkspace()
{
return $this->cloudWorkspace;
}
public function setGerrit(Google_Service_Clouddebugger_GerritSourceContext $gerrit)
{
$this->gerrit = $gerrit;
}
public function getGerrit()
{
return $this->gerrit;
}
public function setGit(Google_Service_Clouddebugger_GitSourceContext $git)
{
$this->git = $git;
}
public function getGit()
{
return $this->git;
}
}
class Google_Service_Clouddebugger_SourceLocation extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $line;
public $path;
public function setLine($line)
{
$this->line = $line;
}
public function getLine()
{
return $this->line;
}
public function setPath($path)
{
$this->path = $path;
}
public function getPath()
{
return $this->path;
}
}
class Google_Service_Clouddebugger_StackFrame extends Google_Collection
{
protected $collection_key = 'locals';
protected $internal_gapi_mappings = array(
);
protected $argumentsType = 'Google_Service_Clouddebugger_Variable';
protected $argumentsDataType = 'array';
public $function;
protected $localsType = 'Google_Service_Clouddebugger_Variable';
protected $localsDataType = 'array';
protected $locationType = 'Google_Service_Clouddebugger_SourceLocation';
protected $locationDataType = '';
public function setArguments($arguments)
{
$this->arguments = $arguments;
}
public function getArguments()
{
return $this->arguments;
}
public function setFunction($function)
{
$this->function = $function;
}
public function getFunction()
{
return $this->function;
}
public function setLocals($locals)
{
$this->locals = $locals;
}
public function getLocals()
{
return $this->locals;
}
public function setLocation(Google_Service_Clouddebugger_SourceLocation $location)
{
$this->location = $location;
}
public function getLocation()
{
return $this->location;
}
}
class Google_Service_Clouddebugger_StatusMessage extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $descriptionType = 'Google_Service_Clouddebugger_FormatMessage';
protected $descriptionDataType = '';
public $isError;
public $refersTo;
public function setDescription(Google_Service_Clouddebugger_FormatMessage $description)
{
$this->description = $description;
}
public function getDescription()
{
return $this->description;
}
public function setIsError($isError)
{
$this->isError = $isError;
}
public function getIsError()
{
return $this->isError;
}
public function setRefersTo($refersTo)
{
$this->refersTo = $refersTo;
}
public function getRefersTo()
{
return $this->refersTo;
}
}
class Google_Service_Clouddebugger_UpdateActiveBreakpointRequest extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $breakpointType = 'Google_Service_Clouddebugger_Breakpoint';
protected $breakpointDataType = '';
public function setBreakpoint(Google_Service_Clouddebugger_Breakpoint $breakpoint)
{
$this->breakpoint = $breakpoint;
}
public function getBreakpoint()
{
return $this->breakpoint;
}
}
class Google_Service_Clouddebugger_UpdateActiveBreakpointResponse extends Google_Model
{
}
class Google_Service_Clouddebugger_Variable extends Google_Collection
{
protected $collection_key = 'members';
protected $internal_gapi_mappings = array(
);
protected $membersType = 'Google_Service_Clouddebugger_Variable';
protected $membersDataType = 'array';
public $name;
protected $statusType = 'Google_Service_Clouddebugger_StatusMessage';
protected $statusDataType = '';
public $value;
public $varTableIndex;
public function setMembers($members)
{
$this->members = $members;
}
public function getMembers()
{
return $this->members;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setStatus(Google_Service_Clouddebugger_StatusMessage $status)
{
$this->status = $status;
}
public function getStatus()
{
return $this->status;
}
public function setValue($value)
{
$this->value = $value;
}
public function getValue()
{
return $this->value;
}
public function setVarTableIndex($varTableIndex)
{
$this->varTableIndex = $varTableIndex;
}
public function getVarTableIndex()
{
return $this->varTableIndex;
}
}