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
<?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 Pubsub (v1).
*
* <p>
* Provides reliable, many-to-many, asynchronous messaging between applications.</p>
*
* <p>
* For more information about this service, see the API
* <a href="https://cloud.google.com/pubsub/docs" target="_blank">Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_Service_Pubsub extends Google_Service
{
/** View and manage your data across Google Cloud Platform services. */
const CLOUD_PLATFORM =
"https://www.googleapis.com/auth/cloud-platform";
/** View and manage Pub/Sub topics and subscriptions. */
const PUBSUB =
"https://www.googleapis.com/auth/pubsub";
public $projects_subscriptions;
public $projects_topics;
public $projects_topics_subscriptions;
/**
* Constructs the internal representation of the Pubsub service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client)
{
parent::__construct($client);
$this->rootUrl = 'https://pubsub.googleapis.com/';
$this->servicePath = '';
$this->version = 'v1';
$this->serviceName = 'pubsub';
$this->projects_subscriptions = new Google_Service_Pubsub_ProjectsSubscriptions_Resource(
$this,
$this->serviceName,
'subscriptions',
array(
'methods' => array(
'acknowledge' => array(
'path' => 'v1/{+subscription}:acknowledge',
'httpMethod' => 'POST',
'parameters' => array(
'subscription' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'create' => array(
'path' => 'v1/{+name}',
'httpMethod' => 'PUT',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'delete' => array(
'path' => 'v1/{+subscription}',
'httpMethod' => 'DELETE',
'parameters' => array(
'subscription' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'get' => array(
'path' => 'v1/{+subscription}',
'httpMethod' => 'GET',
'parameters' => array(
'subscription' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'getIamPolicy' => array(
'path' => 'v1/{+resource}:getIamPolicy',
'httpMethod' => 'GET',
'parameters' => array(
'resource' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'list' => array(
'path' => 'v1/{+project}/subscriptions',
'httpMethod' => 'GET',
'parameters' => array(
'project' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),'modifyAckDeadline' => array(
'path' => 'v1/{+subscription}:modifyAckDeadline',
'httpMethod' => 'POST',
'parameters' => array(
'subscription' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'modifyPushConfig' => array(
'path' => 'v1/{+subscription}:modifyPushConfig',
'httpMethod' => 'POST',
'parameters' => array(
'subscription' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'pull' => array(
'path' => 'v1/{+subscription}:pull',
'httpMethod' => 'POST',
'parameters' => array(
'subscription' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'setIamPolicy' => array(
'path' => 'v1/{+resource}:setIamPolicy',
'httpMethod' => 'POST',
'parameters' => array(
'resource' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'testIamPermissions' => array(
'path' => 'v1/{+resource}:testIamPermissions',
'httpMethod' => 'POST',
'parameters' => array(
'resource' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),
)
)
);
$this->projects_topics = new Google_Service_Pubsub_ProjectsTopics_Resource(
$this,
$this->serviceName,
'topics',
array(
'methods' => array(
'create' => array(
'path' => 'v1/{+name}',
'httpMethod' => 'PUT',
'parameters' => array(
'name' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'delete' => array(
'path' => 'v1/{+topic}',
'httpMethod' => 'DELETE',
'parameters' => array(
'topic' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'get' => array(
'path' => 'v1/{+topic}',
'httpMethod' => 'GET',
'parameters' => array(
'topic' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'getIamPolicy' => array(
'path' => 'v1/{+resource}:getIamPolicy',
'httpMethod' => 'GET',
'parameters' => array(
'resource' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'list' => array(
'path' => 'v1/{+project}/topics',
'httpMethod' => 'GET',
'parameters' => array(
'project' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),'publish' => array(
'path' => 'v1/{+topic}:publish',
'httpMethod' => 'POST',
'parameters' => array(
'topic' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'setIamPolicy' => array(
'path' => 'v1/{+resource}:setIamPolicy',
'httpMethod' => 'POST',
'parameters' => array(
'resource' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),'testIamPermissions' => array(
'path' => 'v1/{+resource}:testIamPermissions',
'httpMethod' => 'POST',
'parameters' => array(
'resource' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
),
),
)
)
);
$this->projects_topics_subscriptions = new Google_Service_Pubsub_ProjectsTopicsSubscriptions_Resource(
$this,
$this->serviceName,
'subscriptions',
array(
'methods' => array(
'list' => array(
'path' => 'v1/{+topic}/subscriptions',
'httpMethod' => 'GET',
'parameters' => array(
'topic' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'pageToken' => array(
'location' => 'query',
'type' => 'string',
),
'pageSize' => array(
'location' => 'query',
'type' => 'integer',
),
),
),
)
)
);
}
}
/**
* The "projects" collection of methods.
* Typical usage is:
* <code>
* $pubsubService = new Google_Service_Pubsub(...);
* $projects = $pubsubService->projects;
* </code>
*/
class Google_Service_Pubsub_Projects_Resource extends Google_Service_Resource
{
}
/**
* The "subscriptions" collection of methods.
* Typical usage is:
* <code>
* $pubsubService = new Google_Service_Pubsub(...);
* $subscriptions = $pubsubService->subscriptions;
* </code>
*/
class Google_Service_Pubsub_ProjectsSubscriptions_Resource extends Google_Service_Resource
{
/**
* Acknowledges the messages associated with the ack tokens in the
* AcknowledgeRequest. The Pub/Sub system can remove the relevant messages from
* the subscription. Acknowledging a message whose ack deadline has expired may
* succeed, but such a message may be redelivered later. Acknowledging a message
* more than once will not result in an error. (subscriptions.acknowledge)
*
* @param string $subscription The subscription whose message is being
* acknowledged.
* @param Google_AcknowledgeRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Empty
*/
public function acknowledge($subscription, Google_Service_Pubsub_AcknowledgeRequest $postBody, $optParams = array())
{
$params = array('subscription' => $subscription, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('acknowledge', array($params), "Google_Service_Pubsub_Empty");
}
/**
* Creates a subscription to a given topic for a given subscriber. If the
* subscription already exists, returns ALREADY_EXISTS. If the corresponding
* topic doesn't exist, returns NOT_FOUND. If the name is not provided in the
* request, the server will assign a random name for this subscription on the
* same project as the topic. (subscriptions.create)
*
* @param string $name The name of the subscription. It must have the format
* `"projects/{project}/subscriptions/{subscription}"`. `{subscription}` must
* start with a letter, and contain only letters (`[A-Za-z]`), numbers
* (`[0-9]`), dashes (`-`), underscores (`_`), periods (`.`), tildes (`~`), plus
* (`+`) or percent signs (`%`). It must be between 3 and 255 characters in
* length, and it must not start with `"goog"`.
* @param Google_Subscription $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Subscription
*/
public function create($name, Google_Service_Pubsub_Subscription $postBody, $optParams = array())
{
$params = array('name' => $name, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('create', array($params), "Google_Service_Pubsub_Subscription");
}
/**
* Deletes an existing subscription. All pending messages in the subscription
* are immediately dropped. Calls to Pull after deletion will return NOT_FOUND.
* After a subscription is deleted, a new one may be created with the same name,
* but the new one has no association with the old subscription, or its topic
* unless the same topic is specified. (subscriptions.delete)
*
* @param string $subscription The subscription to delete.
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Empty
*/
public function delete($subscription, $optParams = array())
{
$params = array('subscription' => $subscription);
$params = array_merge($params, $optParams);
return $this->call('delete', array($params), "Google_Service_Pubsub_Empty");
}
/**
* Gets the configuration details of a subscription. (subscriptions.get)
*
* @param string $subscription The name of the subscription to get.
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Subscription
*/
public function get($subscription, $optParams = array())
{
$params = array('subscription' => $subscription);
$params = array_merge($params, $optParams);
return $this->call('get', array($params), "Google_Service_Pubsub_Subscription");
}
/**
* Gets the access control policy for a resource. Is empty if the policy or the
* resource does not exist. (subscriptions.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which policy is being
* requested. Resource is usually specified as a path, such as,
* projects/{project}.
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Policy
*/
public function getIamPolicy($resource, $optParams = array())
{
$params = array('resource' => $resource);
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy");
}
/**
* Lists matching subscriptions. (subscriptions.listProjectsSubscriptions)
*
* @param string $project The name of the cloud project that subscriptions
* belong to.
* @param array $optParams Optional parameters.
*
* @opt_param string pageToken The value returned by the last
* ListSubscriptionsResponse; indicates that this is a continuation of a prior
* ListSubscriptions call, and that the system should return the next page of
* data.
* @opt_param int pageSize Maximum number of subscriptions to return.
* @return Google_Service_Pubsub_ListSubscriptionsResponse
*/
public function listProjectsSubscriptions($project, $optParams = array())
{
$params = array('project' => $project);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Pubsub_ListSubscriptionsResponse");
}
/**
* Modifies the ack deadline for a specific message. This method is useful to
* indicate that more time is needed to process a message by the subscriber, or
* to make the message available for redelivery if the processing was
* interrupted. (subscriptions.modifyAckDeadline)
*
* @param string $subscription The name of the subscription.
* @param Google_ModifyAckDeadlineRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Empty
*/
public function modifyAckDeadline($subscription, Google_Service_Pubsub_ModifyAckDeadlineRequest $postBody, $optParams = array())
{
$params = array('subscription' => $subscription, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('modifyAckDeadline', array($params), "Google_Service_Pubsub_Empty");
}
/**
* Modifies the PushConfig for a specified subscription. This may be used to
* change a push subscription to a pull one (signified by an empty PushConfig)
* or vice versa, or change the endpoint URL and other attributes of a push
* subscription. Messages will accumulate for delivery continuously through the
* call regardless of changes to the PushConfig.
* (subscriptions.modifyPushConfig)
*
* @param string $subscription The name of the subscription.
* @param Google_ModifyPushConfigRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Empty
*/
public function modifyPushConfig($subscription, Google_Service_Pubsub_ModifyPushConfigRequest $postBody, $optParams = array())
{
$params = array('subscription' => $subscription, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('modifyPushConfig', array($params), "Google_Service_Pubsub_Empty");
}
/**
* Pulls messages from the server. Returns an empty list if there are no
* messages available in the backlog. The server may return UNAVAILABLE if there
* are too many concurrent pull requests pending for the given subscription.
* (subscriptions.pull)
*
* @param string $subscription The subscription from which messages should be
* pulled.
* @param Google_PullRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_PullResponse
*/
public function pull($subscription, Google_Service_Pubsub_PullRequest $postBody, $optParams = array())
{
$params = array('subscription' => $subscription, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('pull', array($params), "Google_Service_Pubsub_PullResponse");
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. (subscriptions.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which policy is being
* specified. Resource is usually specified as a path, such as,
* projects/{project}/zones/{zone}/disks/{disk}.
* @param Google_SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Policy
*/
public function setIamPolicy($resource, Google_Service_Pubsub_SetIamPolicyRequest $postBody, $optParams = array())
{
$params = array('resource' => $resource, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy");
}
/**
* Returns permissions that a caller has on the specified resource.
* (subscriptions.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which policy detail is
* being requested. Resource is usually specified as a path, such as,
* projects/{project}.
* @param Google_TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_TestIamPermissionsResponse
*/
public function testIamPermissions($resource, Google_Service_Pubsub_TestIamPermissionsRequest $postBody, $optParams = array())
{
$params = array('resource' => $resource, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse");
}
}
/**
* The "topics" collection of methods.
* Typical usage is:
* <code>
* $pubsubService = new Google_Service_Pubsub(...);
* $topics = $pubsubService->topics;
* </code>
*/
class Google_Service_Pubsub_ProjectsTopics_Resource extends Google_Service_Resource
{
/**
* Creates the given topic with the given name. (topics.create)
*
* @param string $name The name of the topic. It must have the format
* `"projects/{project}/topics/{topic}"`. `{topic}` must start with a letter,
* and contain only letters (`[A-Za-z]`), numbers (`[0-9]`), dashes (`-`),
* underscores (`_`), periods (`.`), tildes (`~`), plus (`+`) or percent signs
* (`%`). It must be between 3 and 255 characters in length, and it must not
* start with `"goog"`.
* @param Google_Topic $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Topic
*/
public function create($name, Google_Service_Pubsub_Topic $postBody, $optParams = array())
{
$params = array('name' => $name, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('create', array($params), "Google_Service_Pubsub_Topic");
}
/**
* Deletes the topic with the given name. Returns NOT_FOUND if the topic does
* not exist. After a topic is deleted, a new topic may be created with the same
* name; this is an entirely new topic with none of the old configuration or
* subscriptions. Existing subscriptions to this topic are not deleted, but
* their `topic` field is set to `_deleted-topic_`. (topics.delete)
*
* @param string $topic Name of the topic to delete.
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Empty
*/
public function delete($topic, $optParams = array())
{
$params = array('topic' => $topic);
$params = array_merge($params, $optParams);
return $this->call('delete', array($params), "Google_Service_Pubsub_Empty");
}
/**
* Gets the configuration of a topic. (topics.get)
*
* @param string $topic The name of the topic to get.
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Topic
*/
public function get($topic, $optParams = array())
{
$params = array('topic' => $topic);
$params = array_merge($params, $optParams);
return $this->call('get', array($params), "Google_Service_Pubsub_Topic");
}
/**
* Gets the access control policy for a resource. Is empty if the policy or the
* resource does not exist. (topics.getIamPolicy)
*
* @param string $resource REQUIRED: The resource for which policy is being
* requested. Resource is usually specified as a path, such as,
* projects/{project}.
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Policy
*/
public function getIamPolicy($resource, $optParams = array())
{
$params = array('resource' => $resource);
$params = array_merge($params, $optParams);
return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy");
}
/**
* Lists matching topics. (topics.listProjectsTopics)
*
* @param string $project The name of the cloud project that topics belong to.
* @param array $optParams Optional parameters.
*
* @opt_param string pageToken The value returned by the last
* ListTopicsResponse; indicates that this is a continuation of a prior
* ListTopics call, and that the system should return the next page of data.
* @opt_param int pageSize Maximum number of topics to return.
* @return Google_Service_Pubsub_ListTopicsResponse
*/
public function listProjectsTopics($project, $optParams = array())
{
$params = array('project' => $project);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicsResponse");
}
/**
* Adds one or more messages to the topic. Returns NOT_FOUND if the topic does
* not exist. The message payload must not be empty; it must contain either a
* non-empty data field, or at least one attribute. (topics.publish)
*
* @param string $topic The messages in the request will be published on this
* topic.
* @param Google_PublishRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_PublishResponse
*/
public function publish($topic, Google_Service_Pubsub_PublishRequest $postBody, $optParams = array())
{
$params = array('topic' => $topic, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('publish', array($params), "Google_Service_Pubsub_PublishResponse");
}
/**
* Sets the access control policy on the specified resource. Replaces any
* existing policy. (topics.setIamPolicy)
*
* @param string $resource REQUIRED: The resource for which policy is being
* specified. Resource is usually specified as a path, such as,
* projects/{project}/zones/{zone}/disks/{disk}.
* @param Google_SetIamPolicyRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_Policy
*/
public function setIamPolicy($resource, Google_Service_Pubsub_SetIamPolicyRequest $postBody, $optParams = array())
{
$params = array('resource' => $resource, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy");
}
/**
* Returns permissions that a caller has on the specified resource.
* (topics.testIamPermissions)
*
* @param string $resource REQUIRED: The resource for which policy detail is
* being requested. Resource is usually specified as a path, such as,
* projects/{project}.
* @param Google_TestIamPermissionsRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_Pubsub_TestIamPermissionsResponse
*/
public function testIamPermissions($resource, Google_Service_Pubsub_TestIamPermissionsRequest $postBody, $optParams = array())
{
$params = array('resource' => $resource, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse");
}
}
/**
* The "subscriptions" collection of methods.
* Typical usage is:
* <code>
* $pubsubService = new Google_Service_Pubsub(...);
* $subscriptions = $pubsubService->subscriptions;
* </code>
*/
class Google_Service_Pubsub_ProjectsTopicsSubscriptions_Resource extends Google_Service_Resource
{
/**
* Lists the name of the subscriptions for this topic.
* (subscriptions.listProjectsTopicsSubscriptions)
*
* @param string $topic The name of the topic that subscriptions are attached
* to.
* @param array $optParams Optional parameters.
*
* @opt_param string pageToken The value returned by the last
* ListTopicSubscriptionsResponse; indicates that this is a continuation of a
* prior ListTopicSubscriptions call, and that the system should return the next
* page of data.
* @opt_param int pageSize Maximum number of subscription names to return.
* @return Google_Service_Pubsub_ListTopicSubscriptionsResponse
*/
public function listProjectsTopicsSubscriptions($topic, $optParams = array())
{
$params = array('topic' => $topic);
$params = array_merge($params, $optParams);
return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicSubscriptionsResponse");
}
}
class Google_Service_Pubsub_AcknowledgeRequest extends Google_Collection
{
protected $collection_key = 'ackIds';
protected $internal_gapi_mappings = array(
);
public $ackIds;
public function setAckIds($ackIds)
{
$this->ackIds = $ackIds;
}
public function getAckIds()
{
return $this->ackIds;
}
}
class Google_Service_Pubsub_Binding extends Google_Collection
{
protected $collection_key = 'members';
protected $internal_gapi_mappings = array(
);
public $members;
public $role;
public function setMembers($members)
{
$this->members = $members;
}
public function getMembers()
{
return $this->members;
}
public function setRole($role)
{
$this->role = $role;
}
public function getRole()
{
return $this->role;
}
}
class Google_Service_Pubsub_Empty extends Google_Model
{
}
class Google_Service_Pubsub_ListSubscriptionsResponse extends Google_Collection
{
protected $collection_key = 'subscriptions';
protected $internal_gapi_mappings = array(
);
public $nextPageToken;
protected $subscriptionsType = 'Google_Service_Pubsub_Subscription';
protected $subscriptionsDataType = 'array';
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
public function setSubscriptions($subscriptions)
{
$this->subscriptions = $subscriptions;
}
public function getSubscriptions()
{
return $this->subscriptions;
}
}
class Google_Service_Pubsub_ListTopicSubscriptionsResponse extends Google_Collection
{
protected $collection_key = 'subscriptions';
protected $internal_gapi_mappings = array(
);
public $nextPageToken;
public $subscriptions;
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
public function setSubscriptions($subscriptions)
{
$this->subscriptions = $subscriptions;
}
public function getSubscriptions()
{
return $this->subscriptions;
}
}
class Google_Service_Pubsub_ListTopicsResponse extends Google_Collection
{
protected $collection_key = 'topics';
protected $internal_gapi_mappings = array(
);
public $nextPageToken;
protected $topicsType = 'Google_Service_Pubsub_Topic';
protected $topicsDataType = 'array';
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
public function setTopics($topics)
{
$this->topics = $topics;
}
public function getTopics()
{
return $this->topics;
}
}
class Google_Service_Pubsub_ModifyAckDeadlineRequest extends Google_Collection
{
protected $collection_key = 'ackIds';
protected $internal_gapi_mappings = array(
);
public $ackDeadlineSeconds;
public $ackIds;
public function setAckDeadlineSeconds($ackDeadlineSeconds)
{
$this->ackDeadlineSeconds = $ackDeadlineSeconds;
}
public function getAckDeadlineSeconds()
{
return $this->ackDeadlineSeconds;
}
public function setAckIds($ackIds)
{
$this->ackIds = $ackIds;
}
public function getAckIds()
{
return $this->ackIds;
}
}
class Google_Service_Pubsub_ModifyPushConfigRequest extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $pushConfigType = 'Google_Service_Pubsub_PushConfig';
protected $pushConfigDataType = '';
public function setPushConfig(Google_Service_Pubsub_PushConfig $pushConfig)
{
$this->pushConfig = $pushConfig;
}
public function getPushConfig()
{
return $this->pushConfig;
}
}
class Google_Service_Pubsub_Policy extends Google_Collection
{
protected $collection_key = 'bindings';
protected $internal_gapi_mappings = array(
);
protected $bindingsType = 'Google_Service_Pubsub_Binding';
protected $bindingsDataType = 'array';
public $etag;
public $version;
public function setBindings($bindings)
{
$this->bindings = $bindings;
}
public function getBindings()
{
return $this->bindings;
}
public function setEtag($etag)
{
$this->etag = $etag;
}
public function getEtag()
{
return $this->etag;
}
public function setVersion($version)
{
$this->version = $version;
}
public function getVersion()
{
return $this->version;
}
}
class Google_Service_Pubsub_PublishRequest extends Google_Collection
{
protected $collection_key = 'messages';
protected $internal_gapi_mappings = array(
);
protected $messagesType = 'Google_Service_Pubsub_PubsubMessage';
protected $messagesDataType = 'array';
public function setMessages($messages)
{
$this->messages = $messages;
}
public function getMessages()
{
return $this->messages;
}
}
class Google_Service_Pubsub_PublishResponse extends Google_Collection
{
protected $collection_key = 'messageIds';
protected $internal_gapi_mappings = array(
);
public $messageIds;
public function setMessageIds($messageIds)
{
$this->messageIds = $messageIds;
}
public function getMessageIds()
{
return $this->messageIds;
}
}
class Google_Service_Pubsub_PubsubMessage extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $attributes;
public $data;
public $messageId;
public function setAttributes($attributes)
{
$this->attributes = $attributes;
}
public function getAttributes()
{
return $this->attributes;
}
public function setData($data)
{
$this->data = $data;
}
public function getData()
{
return $this->data;
}
public function setMessageId($messageId)
{
$this->messageId = $messageId;
}
public function getMessageId()
{
return $this->messageId;
}
}
class Google_Service_Pubsub_PubsubMessageAttributes extends Google_Model
{
}
class Google_Service_Pubsub_PullRequest extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $maxMessages;
public $returnImmediately;
public function setMaxMessages($maxMessages)
{
$this->maxMessages = $maxMessages;
}
public function getMaxMessages()
{
return $this->maxMessages;
}
public function setReturnImmediately($returnImmediately)
{
$this->returnImmediately = $returnImmediately;
}
public function getReturnImmediately()
{
return $this->returnImmediately;
}
}
class Google_Service_Pubsub_PullResponse extends Google_Collection
{
protected $collection_key = 'receivedMessages';
protected $internal_gapi_mappings = array(
);
protected $receivedMessagesType = 'Google_Service_Pubsub_ReceivedMessage';
protected $receivedMessagesDataType = 'array';
public function setReceivedMessages($receivedMessages)
{
$this->receivedMessages = $receivedMessages;
}
public function getReceivedMessages()
{
return $this->receivedMessages;
}
}
class Google_Service_Pubsub_PushConfig extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $attributes;
public $pushEndpoint;
public function setAttributes($attributes)
{
$this->attributes = $attributes;
}
public function getAttributes()
{
return $this->attributes;
}
public function setPushEndpoint($pushEndpoint)
{
$this->pushEndpoint = $pushEndpoint;
}
public function getPushEndpoint()
{
return $this->pushEndpoint;
}
}
class Google_Service_Pubsub_PushConfigAttributes extends Google_Model
{
}
class Google_Service_Pubsub_ReceivedMessage extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $ackId;
protected $messageType = 'Google_Service_Pubsub_PubsubMessage';
protected $messageDataType = '';
public function setAckId($ackId)
{
$this->ackId = $ackId;
}
public function getAckId()
{
return $this->ackId;
}
public function setMessage(Google_Service_Pubsub_PubsubMessage $message)
{
$this->message = $message;
}
public function getMessage()
{
return $this->message;
}
}
class Google_Service_Pubsub_SetIamPolicyRequest extends Google_Model
{
protected $internal_gapi_mappings = array(
);
protected $policyType = 'Google_Service_Pubsub_Policy';
protected $policyDataType = '';
public function setPolicy(Google_Service_Pubsub_Policy $policy)
{
$this->policy = $policy;
}
public function getPolicy()
{
return $this->policy;
}
}
class Google_Service_Pubsub_Subscription extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $ackDeadlineSeconds;
public $name;
protected $pushConfigType = 'Google_Service_Pubsub_PushConfig';
protected $pushConfigDataType = '';
public $topic;
public function setAckDeadlineSeconds($ackDeadlineSeconds)
{
$this->ackDeadlineSeconds = $ackDeadlineSeconds;
}
public function getAckDeadlineSeconds()
{
return $this->ackDeadlineSeconds;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function setPushConfig(Google_Service_Pubsub_PushConfig $pushConfig)
{
$this->pushConfig = $pushConfig;
}
public function getPushConfig()
{
return $this->pushConfig;
}
public function setTopic($topic)
{
$this->topic = $topic;
}
public function getTopic()
{
return $this->topic;
}
}
class Google_Service_Pubsub_TestIamPermissionsRequest extends Google_Collection
{
protected $collection_key = 'permissions';
protected $internal_gapi_mappings = array(
);
public $permissions;
public function setPermissions($permissions)
{
$this->permissions = $permissions;
}
public function getPermissions()
{
return $this->permissions;
}
}
class Google_Service_Pubsub_TestIamPermissionsResponse extends Google_Collection
{
protected $collection_key = 'permissions';
protected $internal_gapi_mappings = array(
);
public $permissions;
public function setPermissions($permissions)
{
$this->permissions = $permissions;
}
public function getPermissions()
{
return $this->permissions;
}
}
class Google_Service_Pubsub_Topic extends Google_Model
{
protected $internal_gapi_mappings = array(
);
public $name;
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}