pycarlo 0.10.170__py3-none-any.whl → 0.10.171__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pycarlo might be problematic. Click here for more details.
- pycarlo/lib/schema.json +64 -0
- pycarlo/lib/schema.py +37 -0
- {pycarlo-0.10.170.dist-info → pycarlo-0.10.171.dist-info}/METADATA +1 -1
- {pycarlo-0.10.170.dist-info → pycarlo-0.10.171.dist-info}/RECORD +7 -7
- {pycarlo-0.10.170.dist-info → pycarlo-0.10.171.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.170.dist-info → pycarlo-0.10.171.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.170.dist-info → pycarlo-0.10.171.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -166417,6 +166417,47 @@
|
|
|
166417
166417
|
"ofType": null
|
|
166418
166418
|
}
|
|
166419
166419
|
},
|
|
166420
|
+
{
|
|
166421
|
+
"args": [
|
|
166422
|
+
{
|
|
166423
|
+
"defaultValue": null,
|
|
166424
|
+
"description": "The alert's UUID",
|
|
166425
|
+
"name": "alertId",
|
|
166426
|
+
"type": {
|
|
166427
|
+
"kind": "NON_NULL",
|
|
166428
|
+
"name": null,
|
|
166429
|
+
"ofType": {
|
|
166430
|
+
"kind": "SCALAR",
|
|
166431
|
+
"name": "UUID",
|
|
166432
|
+
"ofType": null
|
|
166433
|
+
}
|
|
166434
|
+
}
|
|
166435
|
+
},
|
|
166436
|
+
{
|
|
166437
|
+
"defaultValue": null,
|
|
166438
|
+
"description": "Invitee's email",
|
|
166439
|
+
"name": "email",
|
|
166440
|
+
"type": {
|
|
166441
|
+
"kind": "NON_NULL",
|
|
166442
|
+
"name": null,
|
|
166443
|
+
"ofType": {
|
|
166444
|
+
"kind": "SCALAR",
|
|
166445
|
+
"name": "String",
|
|
166446
|
+
"ofType": null
|
|
166447
|
+
}
|
|
166448
|
+
}
|
|
166449
|
+
}
|
|
166450
|
+
],
|
|
166451
|
+
"deprecationReason": null,
|
|
166452
|
+
"description": "(experimental) Send an invitation to a non-user for an alert",
|
|
166453
|
+
"isDeprecated": false,
|
|
166454
|
+
"name": "sendAlertInvite",
|
|
166455
|
+
"type": {
|
|
166456
|
+
"kind": "OBJECT",
|
|
166457
|
+
"name": "SendAlertInvite",
|
|
166458
|
+
"ofType": null
|
|
166459
|
+
}
|
|
166460
|
+
},
|
|
166420
166461
|
{
|
|
166421
166462
|
"args": [
|
|
166422
166463
|
{
|
|
@@ -187715,6 +187756,29 @@
|
|
|
187715
187756
|
"name": "AlertStatusInput",
|
|
187716
187757
|
"possibleTypes": null
|
|
187717
187758
|
},
|
|
187759
|
+
{
|
|
187760
|
+
"description": "Send an invitation to a non-user for an existing alert",
|
|
187761
|
+
"enumValues": null,
|
|
187762
|
+
"fields": [
|
|
187763
|
+
{
|
|
187764
|
+
"args": [],
|
|
187765
|
+
"deprecationReason": null,
|
|
187766
|
+
"description": null,
|
|
187767
|
+
"isDeprecated": false,
|
|
187768
|
+
"name": "success",
|
|
187769
|
+
"type": {
|
|
187770
|
+
"kind": "SCALAR",
|
|
187771
|
+
"name": "Boolean",
|
|
187772
|
+
"ofType": null
|
|
187773
|
+
}
|
|
187774
|
+
}
|
|
187775
|
+
],
|
|
187776
|
+
"inputFields": null,
|
|
187777
|
+
"interfaces": [],
|
|
187778
|
+
"kind": "OBJECT",
|
|
187779
|
+
"name": "SendAlertInvite",
|
|
187780
|
+
"possibleTypes": null
|
|
187781
|
+
},
|
|
187718
187782
|
{
|
|
187719
187783
|
"description": "Create or update a domain",
|
|
187720
187784
|
"enumValues": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -25510,6 +25510,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
25510
25510
|
"bulk_update_incidents",
|
|
25511
25511
|
"bulk_update_alerts",
|
|
25512
25512
|
"update_alert",
|
|
25513
|
+
"send_alert_invite",
|
|
25513
25514
|
"create_or_update_domain",
|
|
25514
25515
|
"delete_domain",
|
|
25515
25516
|
"create_or_update_authorization_group",
|
|
@@ -37091,6 +37092,34 @@ class Mutation(sgqlc.types.Type):
|
|
|
37091
37092
|
* `uuid` (`UUID!`): UUID of the alert to update
|
|
37092
37093
|
"""
|
|
37093
37094
|
|
|
37095
|
+
send_alert_invite = sgqlc.types.Field(
|
|
37096
|
+
"SendAlertInvite",
|
|
37097
|
+
graphql_name="sendAlertInvite",
|
|
37098
|
+
args=sgqlc.types.ArgDict(
|
|
37099
|
+
(
|
|
37100
|
+
(
|
|
37101
|
+
"alert_id",
|
|
37102
|
+
sgqlc.types.Arg(
|
|
37103
|
+
sgqlc.types.non_null(UUID), graphql_name="alertId", default=None
|
|
37104
|
+
),
|
|
37105
|
+
),
|
|
37106
|
+
(
|
|
37107
|
+
"email",
|
|
37108
|
+
sgqlc.types.Arg(
|
|
37109
|
+
sgqlc.types.non_null(String), graphql_name="email", default=None
|
|
37110
|
+
),
|
|
37111
|
+
),
|
|
37112
|
+
)
|
|
37113
|
+
),
|
|
37114
|
+
)
|
|
37115
|
+
"""(experimental) Send an invitation to a non-user for an alert
|
|
37116
|
+
|
|
37117
|
+
Arguments:
|
|
37118
|
+
|
|
37119
|
+
* `alert_id` (`UUID!`): The alert's UUID
|
|
37120
|
+
* `email` (`String!`): Invitee's email
|
|
37121
|
+
"""
|
|
37122
|
+
|
|
37094
37123
|
create_or_update_domain = sgqlc.types.Field(
|
|
37095
37124
|
CreateOrUpdateDomain,
|
|
37096
37125
|
graphql_name="createOrUpdateDomain",
|
|
@@ -62538,6 +62567,14 @@ class SelectGitlabProjects(sgqlc.types.Type):
|
|
|
62538
62567
|
success = sgqlc.types.Field(Boolean, graphql_name="success")
|
|
62539
62568
|
|
|
62540
62569
|
|
|
62570
|
+
class SendAlertInvite(sgqlc.types.Type):
|
|
62571
|
+
"""Send an invitation to a non-user for an existing alert"""
|
|
62572
|
+
|
|
62573
|
+
__schema__ = schema
|
|
62574
|
+
__field_names__ = ("success",)
|
|
62575
|
+
success = sgqlc.types.Field(Boolean, graphql_name="success")
|
|
62576
|
+
|
|
62577
|
+
|
|
62541
62578
|
class SendDbtArtifactsEvent(sgqlc.types.Type):
|
|
62542
62579
|
"""Publish a Dbt artifacts event to Kinesis stream"""
|
|
62543
62580
|
|
|
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
35
35
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
36
36
|
pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
|
|
37
37
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pycarlo/lib/schema.json,sha256=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=H7CQX3Ey1cgqLhFCPjnGlqBaUY9abaABlok3cwT9D44,6270894
|
|
39
|
+
pycarlo/lib/schema.py,sha256=6_eSwtYMFD0Ka0h-sCHmUdZaJZjUvvHvJsG4BmfqseY,2726132
|
|
40
|
+
pycarlo-0.10.171.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.171.dist-info/METADATA,sha256=QYygEt-tjAqIQunJ0GBYRVN5BHsRelZrNjhGkYGgGm4,8742
|
|
42
|
+
pycarlo-0.10.171.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.171.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.171.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|