-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathstatuspage.py
3133 lines (2573 loc) · 91.4 KB
/
statuspage.py
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
# coding=utf-8
"""Statuspage API wrapper."""
import logging
from enum import Enum
from .rest_client import AtlassianRestAPI
log = logging.getLogger(__name__)
class Branding(Enum):
"""The main template your statuspage will use"""
PREMIUM = "premium"
BASIC = "basic"
class SubscriberType(Enum):
"""The type of subscriber"""
EMAIL = "email"
SMS = "sms"
WEBHOOK = "webhook"
SLACK = "slack"
INTEGRATION_PARTNER = "integration_partner"
class SubscriberState(Enum):
"""The state of the subscriber"""
ACTIVE = "active"
PENDING = "pending"
QUARANTINED = "quarantined"
ALL = "all"
class SortField(Enum):
"""The field to sort by
Attributes
----------
PRIMARY : str
to indicate sorting by the identifying field
CREATED_AT : str
for sorting by creation timestamp
QUARANTINED_AT : str
for sorting by quarantine timestamp
RELEVANCE : str
which sorts by the relevancy of the search text
"""
PRIMARY = "primary"
CREATED_AT = "created_at"
QUARANTINED_AT = "quarantined_at"
RELEVANCE = "relevance"
class SortOrder(Enum):
"""The order to sort by"""
ASC = "asc"
DESC = "desc"
class Status(Enum):
"""The status of the incident"""
INVESTIGATING = "investigating"
IDENTIFIED = "identified"
MONITORING = "monitoring"
RESOLVED = "resolved"
SCHEDULED = "scheduled"
IN_PROGRESS = "in_progress"
VERIFYING = "verifying"
COMPLETED = "completed"
class Impact(Enum):
"""The impact of the incident"""
CRITICAL = "critical"
MAJOR = "major"
MINOR = "minor"
MAINTENANCE = "maintenance"
NONE = "none"
class Transform(Enum):
"""The transform to apply to the metric"""
AVERAGE = "average"
COUNT = "count"
MAX = "max"
MIN = "min"
SUM = "sum"
class MetricProviderType(Enum):
"""The type of metric provider"""
PINGDOM = "Pingdom"
NEW_RELIC = "NewRelic"
LIBRATO = "Librato"
DATADOG = "Datadog"
SELF = "Self"
class StatusPage(AtlassianRestAPI):
"""StatusPage API wrapper."""
def __init__(self, *args, **kwargs):
super(StatusPage, self).__init__(*args, **kwargs)
def page_list_pages(self):
"""
Get a list of pages
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exception.response.content)` to get API error info
Notes
-----
Available fields: https://developer.statuspage.io/#operation/getPages
Returns
-------
any
"""
url = "v1/pages"
return self.get(url)
def get_page(self, page_id):
"""
Get page information
Parameters
----------
page_id : str
Your page unique ID
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exception.response.content)` to get API error info
Notes
-----
Available fields: https://developer.statuspage.io/#operation/getPagesPageId
Returns
-------
any
"""
url = f"v1/pages/{page_id}"
return self.get(url)
def page_update(self, page_id, page):
"""
Update a page
Parameters
----------
page_id : str
Your page unique ID
page : dict[str,any]
Your page values that you want to change
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exception.response.content)` to get API error info
Notes
-----
Available fields: https://developer.statuspage.io/#operation/patchPagesPageId
Description of fields:
name : str
The name of your page
Returns
-------
any
"""
url = f"v1/pages/{page_id}"
return self.patch(url, data={"page": page})
def organization_get_users(self, organization_id, page=1, per_page=100):
"""
Get a list of users
Notes
-----
Available fields: https://developer.statuspage.io/#operation/getOrganizationsOrganizationIdUsers
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exception.response.content)` to get API error info
Parameters
----------
organization_id : str
Unique organization ID
page : int
Page offset to fetch. Defaults to 1.
per_page : int
Number of results to return per page. Defaults to 100.
Returns
-------
any
"""
url = f"v1/organizations/{organization_id}/users"
return self.get(url, params={"page": page, "per_page": per_page})
def organization_get_user_permissions(self, organization_id, user_id):
"""
Get a user's permissions in organization
Parameters
----------
organization_id : str
Unique organization ID
user_id : str
Unique user ID
Notes
-----
Available fields: https://developer.statuspage.io/#operation/getOrganizationsOrganizationIdPermissionsUserId
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exception.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/organizations/{organization_id}/permissions/{user_id}"
return self.get(url)
def organization_set_user_permissions(self, organization_id, user_id, pages):
"""
Update a user's role permissions. Payload should contain a mapping of pages to a set of the desired roles,
if the page has Role Based Access Control. Otherwise, the pages should map to an empty hash.
User will lose access to any pages omitted from the payload.
Parameters
----------
organization_id : str
Unique organization ID
user_id : str
Unique user ID
pages : dict[str, any]
You can specify "page_configuration", "incident_manager" and "maintenance_manager" booleans here
Notes
-----
Available fields: https://developer.statuspage.io/#operation/putOrganizationsOrganizationIdPermissionsUserId
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exception.response.content)` to get API error info
Examples
--------
>>> client = StatusPage(url="https://api.statuspage.io", token="YOUR-TOKEN")
>>> client.organization_set_user_permissions(
... "ORGANIZATION-ID",
... "USER-ID",
... {
... "PAGE-ID": {
... "page_configuration": True,
... "incident_manager": True,
... "maintenance_manager": True
... }
... }
... )
Returns
-------
any
"""
url = f"v1/organizations/{organization_id}/permissions/{user_id}"
return self.patch(url, data={"pages": pages})
def page_get_embed_config_settings(self, page_id):
"""
Get status embed config settings
Parameters
----------
page_id : str
Your page unique ID
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exception.response.content)` to get API error info
Notes
-----
See available fields: https://developer.statuspage.io/#operation/getPagesPageIdStatusEmbedConfig
Returns
-------
any
"""
url = f"v1/pages/{page_id}/status_embed_config"
return self.get(url)
def page_update_embed_config_settings(self, page_id, status_embed_config):
"""
Update status embed config settings
Parameters
----------
page_id : str
Your page unique ID
status_embed_config : dict[str, any]
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Examples
--------
>>> client = StatusPage(url="https://api.statuspage.io", token="YOUR-TOKEN")
>>> client.page_update_embed_config_settings(
... "PAGE-ID",
... {
... "position": "string",
... "incident_background_color": "string",
... "incident_text_color": "string",
... "maintenance_background_color": "string",
... "maintenance_text_color": "string"
... }
... )
Notes
-----
See available fields: https://developer.statuspage.io/#operation/putPagesPageIdStatusEmbedConfig
Returns
-------
any
"""
url = f"v1/pages/{page_id}/status_embed_config"
return self.patch(url, status_embed_config)
def page_access_users_list(self, page_id, email, page=1, per_page=100):
"""
Get a list of page access users
Parameters
----------
page_id : str
Your page unique ID
email : str
Email address to search for
page : int
Page offset to fetch. Defaults to 1.
per_page : int
Number of results to return per page. Defaults to 100.
Notes
-----
See available fields: https://developer.statuspage.io/#operation/getPagesPageIdPageAccessUsers
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users"
return self.get(url, params={"email": email, "page": page, "per_page": per_page})
def page_get_access_user(self, page_id, page_access_user_id):
"""
Get page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
Notes
-----
See available fields: https://developer.statuspage.io/#operation/getPagesPageIdPageAccessUsersPageAccessUserId
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}"
return self.get(url)
def page_set_access_user(self, page_id, page_access_user_id, external_login, email, page_access_group_ids):
"""
Update page access user
Warnings
--------
TODO: Fields that can be updated are undocumented as well as their descriptions.
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
external_login : str
IDP login user id. Key is typically "uid".
email : str
Email address
page_access_group_ids : list[str]
Group IDs
Notes
-----
See available fields: https://developer.statuspage.io/#operation/patchPagesPageIdPageAccessUsersPageAccessUserId
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}"
return self.patch(
url, data={"external_login": external_login, "email": email, "page_access_group_ids": page_access_group_ids}
)
def page_delete_access_user(self, page_id, page_access_user_id):
"""
Delete page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
Notes
-----
See available fields:
https://developer.statuspage.io/#operation/deletePagesPageIdPageAccessUsersPageAccessUserId
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}"
return self.delete(url)
def page_get_components_access_user(self, page_id, page_access_user_id, page=1, per_page=100):
"""
Get components for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
page : int
Page offset to fetch. Defaults to 1.
per_page : int
Number of results to return per page. Defaults to 100.
Notes
-----
See available fields: https://developer.statuspage.io/#operation/getPagesPageIdPageAccessUsersPageAccessUserIdComponents
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/components"
return self.get(url, params={"page": page, "per_page": per_page})
def page_add_components_access_user(self, page_id, page_access_user_id, component_ids):
"""
Add components for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
component_ids : list[str]
List of component codes to allow access to
Notes
-----
See available fields: https://developer.statuspage.io/#operation/putPagesPageIdPageAccessUsersPageAccessUserIdComponents
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/components"
return self.patch(url, data={"component_ids": component_ids})
def page_replace_components_access_user(self, page_id, page_access_user_id, component_ids):
"""
Replace components for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
component_ids : list[str]
List of component codes to allow access to
Notes
-----
See available fields: https://developer.statuspage.io/#operation/postPagesPageIdPageAccessUsersPageAccessUserIdComponents
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/components"
return self.post(url, data={"component_ids": component_ids})
def page_delete_components_access_user(self, page_id, page_access_user_id, component_ids):
"""
Delete components for page access user.
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
component_ids : list[str]
List of components codes to remove. **If omitted, all components will be removed.**
Notes
-----
See available fields: https://developer.statuspage.io/#operation/deletePagesPageIdPageAccessUsersPageAccessUserIdComponents
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/components"
return self.delete(url, data={"component_ids": component_ids})
def page_delete_component_access_user(self, page_id, page_access_user_id, component_id):
"""
Delete components for page access user.
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
component_id : str
Component identifier
Notes
-----
See available fields: https://developer.statuspage.io/#operation/deletePagesPageIdPageAccessUsersPageAccessUserIdComponentsComponentId
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/components/{component_id}"
return self.delete(url)
def page_get_metrics_access_user(self, page_id, page_access_user_id):
"""
Get metrics for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
Notes
-----
See available fields: https://developer.statuspage.io/#operation/getPagesPageIdPageAccessUsersPageAccessUserIdMetrics
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/metrics"
return self.get(url)
def page_add_metrics_access_user(self, page_id, page_access_user_id, metric_ids):
"""
Add metrics for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
metric_ids : list[str]
List of metrics to add
Notes
-----
See available fields: https://developer.statuspage.io/#operation/putPagesPageIdPageAccessUsersPageAccessUserIdMetrics
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/metrics"
return self.patch(url, data={"metric_ids": metric_ids})
def page_replace_metrics_access_user(self, page_id, page_access_user_id, metric_ids):
"""
Replace metrics for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
metric_ids : list[str]
List of metrics to replace
Notes
-----
See available fields: https://developer.statuspage.io/#operation/postPagesPageIdPageAccessUsersPageAccessUserIdMetrics
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/metrics"
return self.post(url, data={"metric_ids": metric_ids})
def page_delete_metrics_access_user(self, page_id, page_access_user_id, metric_ids):
"""
Delete metrics for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
metric_ids : list[str]
List of metrics to remove
Notes
-----
See available fields: https://developer.statuspage.io/#operation/deletePagesPageIdPageAccessUsersPageAccessUserIdMetrics
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/metrics"
return self.delete(url, data={"metric_ids": metric_ids})
def page_delete_metric_access_user(self, page_id, page_access_user_id, metric_id):
"""
Delete metric for page access user
Parameters
----------
page_id : str
Your page unique ID
page_access_user_id : str
Page Access User Identifier
metric_id : str
Identifier of metric requested
Notes
-----
See available fields: https://developer.statuspage.io/#operation/deletePagesPageIdPageAccessUsersPageAccessUserIdMetricsMetricId
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_users/{page_access_user_id}/metrics/{metric_id}"
return self.delete(url)
def page_get_access_groups(self, page_id, page=1, per_page=100):
"""
Get a list of page access groups
Parameters
----------
page_id : str
Your page unique ID
page : int
Page offset to fetch. Defaults to 1.
per_page : int
Number of results to return per page. Defaults to 100.
Notes
-----
See available fields: https://developer.statuspage.io/#operation/getPagesPageIdPageAccessGroups
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_groups"
return self.get(url, params={"page": page, "per_page": per_page})
def page_get_access_group(self, page_id, page_access_group_id):
"""
Get a page access group
Parameters
----------
page_id : str
Your page unique ID
page_access_group_id : str
Page Access Group Identifier
Notes
-----
See available fields: https://developer.statuspage.io/#operation/getPagesPageIdPageAccessGroupsPageAccessGroupId
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_groups/{page_access_group_id}"
return self.get(url)
def page_create_access_group(
self, page_id, name, external_identifier, component_ids, metric_ids, page_access_user_ids
):
"""
Create a page access group
Parameters
----------
page_id : str
Your page unique ID
name : str
Name for this Group
external_identifier : str
Associates group with external group
component_ids : list[str]
metric_ids : list[str]
page_access_user_ids : list[str]
Notes
-----
See available fields: https://developer.statuspage.io/#operation/postPagesPageIdPageAccessGroups
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_groups"
return self.post(
url,
data={
"page_access_group": {
"name": name,
"external_identifier": external_identifier,
"component_ids": component_ids,
"metric_ids": metric_ids,
"page_access_user_ids": page_access_user_ids,
}
},
)
def page_replace_access_group(
self, page_id, page_access_group_id, name, external_identifier, component_ids, metric_ids, page_access_user_ids
):
"""
Update a page access group
Parameters
----------
page_id : str
Your page unique ID
page_access_group_id : str
Page Access Group Identifier
name : str
Name for this Group
external_identifier : str
Associates group with external group
component_ids : list[str]
metric_ids : list[str]
page_access_user_ids : list[str]
Notes
-----
See available fields: https://developer.statuspage.io/#operation/putPagesPageIdPageAccessGroupsPageAccessGroupId
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_groups/{page_access_group_id}"
return self.patch(
url,
data={
"page_access_group": {
"name": name,
"external_identifier": external_identifier,
"component_ids": component_ids,
"metric_ids": metric_ids,
"page_access_user_ids": page_access_user_ids,
}
},
)
def page_delete_access_group(self, page_id, page_access_group_id):
"""
Remove a page access group
Parameters
----------
page_id : str
Your page unique ID
page_access_group_id : str
Page Access Group Identifier
Notes
-----
See available fields: https://developer.statuspage.io/#operation/deletePagesPageIdPageAccessGroupsPageAccessGroupId
# noqa: E501
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_groups/{page_access_group_id}"
return self.delete(url)
def page_add_components_to_access_group(self, page_id, page_access_group_id, component_ids):
"""
Add components to page access group
Parameters
----------
page_id : str
Your page unique ID
page_access_group_id : str
Page Access Group Identifier
component_ids : list[str]
List of Component identifiers
Notes
-----
See available fields: https://developer.statuspage.io/#tag/page-access-group-components
Raises
------
requests.exceptions.HTTPError
Use `json.loads(exceptions.response.content)` to get API error info
Returns
-------
any
"""
url = f"v1/pages/{page_id}/page_access_groups/{page_access_group_id}/components"
return self.patch(url, data={"component_ids": component_ids})
def page_replace_components_for_access_page(self, page_id, page_access_group_id, component_ids):
"""
Replace components for a page access group
Parameters
----------
page_id : str
Your page unique ID
page_access_group_id : str
Page Access Group Identifier
component_ids : list[str]
List of components codes to set on the page access group