peak-sdk 1.6.0__py3-none-any.whl → 1.7.0__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.
- peak/_metadata.py +22 -2
- peak/_version.py +1 -1
- peak/cli/args.py +1 -0
- peak/cli/press/apps/specs.py +2 -0
- peak/cli/press/blocks/specs.py +66 -22
- peak/cli/press/deployments.py +41 -0
- peak/cli/resources/images.py +18 -6
- peak/cli/resources/tenants.py +4 -1
- peak/cli/resources/workflows.py +12 -12
- peak/press/apps.py +10 -3
- peak/press/blocks.py +388 -139
- peak/press/deployments.py +28 -0
- peak/resources/images.py +309 -86
- peak/sample_yaml/press/apps/specs/create_app_spec.yaml +2 -0
- peak/sample_yaml/press/apps/specs/create_app_spec_release.yaml +2 -0
- peak/sample_yaml/press/blocks/specs/service/api/create_block_spec.yaml +102 -0
- peak/sample_yaml/press/blocks/specs/service/api/create_block_spec_release.yaml +88 -0
- peak/sample_yaml/press/blocks/specs/service/webapp/create_block_spec.yaml +103 -0
- peak/sample_yaml/press/blocks/specs/service/webapp/create_block_spec_release.yaml +89 -0
- peak/sample_yaml/press/blocks/specs/{create_block_spec.yaml → workflow/create_block_spec.yaml} +20 -1
- peak/sample_yaml/press/blocks/specs/{create_block_spec_release.yaml → workflow/create_block_spec_release.yaml} +20 -1
- peak/sample_yaml/resources/images/dockerfile/create_image.yaml +3 -0
- peak/sample_yaml/resources/images/dockerfile/create_image_version.yaml +3 -0
- peak/sample_yaml/resources/images/dockerfile/update_version.yaml +3 -0
- peak/sample_yaml/resources/images/github/create_image.yaml +3 -0
- peak/sample_yaml/resources/images/github/create_image_version.yaml +3 -0
- peak/sample_yaml/resources/images/github/update_version.yaml +3 -0
- peak/sample_yaml/resources/images/upload/create_image.yaml +3 -0
- peak/sample_yaml/resources/images/upload/create_image_version.yaml +3 -0
- peak/sample_yaml/resources/images/upload/create_or_update_image.yaml +3 -0
- peak/sample_yaml/resources/images/upload/update_version.yaml +3 -0
- peak/sample_yaml/resources/workflows/create_or_update_workflow.yaml +9 -1
- peak/sample_yaml/resources/workflows/create_workflow.yaml +9 -1
- peak/sample_yaml/resources/workflows/patch_workflow.yaml +9 -1
- peak/sample_yaml/resources/workflows/update_workflow.yaml +9 -1
- peak/session.py +1 -1
- {peak_sdk-1.6.0.dist-info → peak_sdk-1.7.0.dist-info}/METADATA +14 -14
- {peak_sdk-1.6.0.dist-info → peak_sdk-1.7.0.dist-info}/RECORD +41 -37
- {peak_sdk-1.6.0.dist-info → peak_sdk-1.7.0.dist-info}/LICENSE +0 -0
- {peak_sdk-1.6.0.dist-info → peak_sdk-1.7.0.dist-info}/WHEEL +0 -0
- {peak_sdk-1.6.0.dist-info → peak_sdk-1.7.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,103 @@
|
|
1
|
+
body:
|
2
|
+
version: 1
|
3
|
+
kind: service
|
4
|
+
metadata:
|
5
|
+
name: webapp-service-block
|
6
|
+
title: Web App Service Block
|
7
|
+
summary: Web App Service Block
|
8
|
+
description: Creating a new service block spec of type web-app.
|
9
|
+
descriptionContentType: text/markdown
|
10
|
+
imageUrl: https://my-block-pics.com/image-0.jpg
|
11
|
+
tags:
|
12
|
+
- name: CLI
|
13
|
+
release:
|
14
|
+
version: 1.0.0
|
15
|
+
notes: This is the original release
|
16
|
+
config:
|
17
|
+
serviceType: web-app
|
18
|
+
image:
|
19
|
+
dockerfile: Dockerfile
|
20
|
+
context: "."
|
21
|
+
version: 0.0.1
|
22
|
+
parameters:
|
23
|
+
env:
|
24
|
+
param1: value1
|
25
|
+
param2: value2
|
26
|
+
secrets:
|
27
|
+
- secret1
|
28
|
+
- secret2
|
29
|
+
resources:
|
30
|
+
instanceTypeId: "@param:instance_type_id"
|
31
|
+
healthCheckURL: "@param:health_check_url"
|
32
|
+
sessionStickiness: false
|
33
|
+
entrypoint: |
|
34
|
+
python
|
35
|
+
app.py
|
36
|
+
minInstances: 1
|
37
|
+
parameters:
|
38
|
+
build:
|
39
|
+
- defaultValue: /health
|
40
|
+
description: Enter the health check URL
|
41
|
+
name: health_check_url
|
42
|
+
required: true
|
43
|
+
title: Health Check URL
|
44
|
+
type: string
|
45
|
+
hideValue: false
|
46
|
+
- defaultValue: 43
|
47
|
+
description: Select an instance type
|
48
|
+
name: instance_type_id
|
49
|
+
options:
|
50
|
+
- title: Pico (0.25CPU, 0.5GB RAM)
|
51
|
+
value: 43
|
52
|
+
- title: Nano (0.25CPU, 1GB RAM)
|
53
|
+
value: 44
|
54
|
+
- title: Micro (0.5CPU, 1GB RAM)
|
55
|
+
value: 45
|
56
|
+
required: true
|
57
|
+
title: Instance Type ID
|
58
|
+
type: number
|
59
|
+
run:
|
60
|
+
- defaultValue: AVG
|
61
|
+
description: Select an aggregation function (e.g., AVG, SUM, COUNT)
|
62
|
+
name: agg_type
|
63
|
+
required: false
|
64
|
+
title: Agg Type
|
65
|
+
type: string
|
66
|
+
hideValue: true
|
67
|
+
- defaultValue: false
|
68
|
+
description: Enable email notifications
|
69
|
+
name: email_notifications
|
70
|
+
required: false
|
71
|
+
title: Email Notifications
|
72
|
+
type: boolean
|
73
|
+
- defaultValue: 10
|
74
|
+
description: Select the number of iterations
|
75
|
+
name: num_iterations
|
76
|
+
options:
|
77
|
+
- title: Low
|
78
|
+
value: 10
|
79
|
+
- title: Medium
|
80
|
+
value: 50
|
81
|
+
- title: High
|
82
|
+
value: 100
|
83
|
+
required: false
|
84
|
+
title: Number of Iterations
|
85
|
+
type: number
|
86
|
+
- defaultValue:
|
87
|
+
- input.csv
|
88
|
+
- output.csv
|
89
|
+
description: Specify input and output file names
|
90
|
+
name: file_names
|
91
|
+
required: true
|
92
|
+
title: File Names
|
93
|
+
type: string_array
|
94
|
+
artifact:
|
95
|
+
path: "."
|
96
|
+
ignore_files:
|
97
|
+
- ".gitignore"
|
98
|
+
- ".dockerignore"
|
99
|
+
featured: true
|
100
|
+
scope: shared
|
101
|
+
tenants:
|
102
|
+
- tenant1
|
103
|
+
- tenant2
|
@@ -0,0 +1,89 @@
|
|
1
|
+
# block_spec_release.yaml
|
2
|
+
|
3
|
+
body:
|
4
|
+
release:
|
5
|
+
version: 2.0.0
|
6
|
+
notes: This is a new release
|
7
|
+
config:
|
8
|
+
serviceType: web-app
|
9
|
+
image:
|
10
|
+
dockerfile: Dockerfile
|
11
|
+
context: "."
|
12
|
+
version: 0.0.1
|
13
|
+
parameters:
|
14
|
+
env:
|
15
|
+
param1: value1
|
16
|
+
param2: value2
|
17
|
+
secrets:
|
18
|
+
- secret1
|
19
|
+
- secret2
|
20
|
+
resources:
|
21
|
+
instanceTypeId: "@param:instance_type_id"
|
22
|
+
healthCheckURL: "@param:health_check_url"
|
23
|
+
sessionStickiness: false
|
24
|
+
entrypoint: |
|
25
|
+
python
|
26
|
+
app.py
|
27
|
+
minInstances: 1
|
28
|
+
parameters:
|
29
|
+
build:
|
30
|
+
- defaultValue: /health
|
31
|
+
description: Enter the health check URL
|
32
|
+
name: health_check_url
|
33
|
+
required: true
|
34
|
+
title: Health Check URL
|
35
|
+
type: string
|
36
|
+
hideValue: false
|
37
|
+
- defaultValue: 43
|
38
|
+
description: Select an instance type
|
39
|
+
name: instance_type_id
|
40
|
+
options:
|
41
|
+
- title: Pico (0.25CPU, 0.5GB RAM)
|
42
|
+
value: 43
|
43
|
+
- title: Nano (0.25CPU, 1GB RAM)
|
44
|
+
value: 44
|
45
|
+
- title: Micro (0.5CPU, 1GB RAM)
|
46
|
+
value: 45
|
47
|
+
required: true
|
48
|
+
title: Instance Type ID
|
49
|
+
type: number
|
50
|
+
run:
|
51
|
+
- defaultValue: AVG
|
52
|
+
description: Select an aggregation function (e.g., AVG, SUM, COUNT)
|
53
|
+
name: agg_type
|
54
|
+
required: false
|
55
|
+
title: Agg Type
|
56
|
+
type: string
|
57
|
+
hideValue: true
|
58
|
+
- defaultValue: false
|
59
|
+
description: Enable email notifications
|
60
|
+
name: email_notifications
|
61
|
+
required: false
|
62
|
+
title: Email Notifications
|
63
|
+
type: boolean
|
64
|
+
- defaultValue: 10
|
65
|
+
description: Select the number of iterations
|
66
|
+
name: num_iterations
|
67
|
+
options:
|
68
|
+
- title: Low
|
69
|
+
value: 10
|
70
|
+
- title: Medium
|
71
|
+
value: 50
|
72
|
+
- title: High
|
73
|
+
value: 100
|
74
|
+
required: false
|
75
|
+
title: Number of Iterations
|
76
|
+
type: number
|
77
|
+
- defaultValue:
|
78
|
+
- input.csv
|
79
|
+
- output.csv
|
80
|
+
description: Specify input and output file names
|
81
|
+
name: file_names
|
82
|
+
required: true
|
83
|
+
title: File Names
|
84
|
+
type: string_array
|
85
|
+
artifact:
|
86
|
+
path: "."
|
87
|
+
ignore_files:
|
88
|
+
- ".gitignore"
|
89
|
+
- ".dockerignore"
|
peak/sample_yaml/press/blocks/specs/{create_block_spec.yaml → workflow/create_block_spec.yaml}
RENAMED
@@ -38,7 +38,25 @@ body:
|
|
38
38
|
- webhook:
|
39
39
|
name: info
|
40
40
|
url: https://abc.com/post
|
41
|
-
payload:
|
41
|
+
payload: |
|
42
|
+
{
|
43
|
+
"system": "external_system",
|
44
|
+
"action": "update",
|
45
|
+
"data": {
|
46
|
+
"field": "value",
|
47
|
+
"timestamp": "2024-05-20T12:00:00Z"
|
48
|
+
}
|
49
|
+
}
|
50
|
+
events:
|
51
|
+
success: false
|
52
|
+
fail: true
|
53
|
+
runtimeExceeded: "@param:runtime_exceeded"
|
54
|
+
- email:
|
55
|
+
name: "email-watcher-1"
|
56
|
+
recipients:
|
57
|
+
to:
|
58
|
+
- "user1@peak.ai"
|
59
|
+
- "user2@peak.ai"
|
42
60
|
events:
|
43
61
|
success: false
|
44
62
|
fail: true
|
@@ -112,6 +130,7 @@ artifact:
|
|
112
130
|
- ".gitignore"
|
113
131
|
- ".dockerignore"
|
114
132
|
featured: true
|
133
|
+
autoRunOnDeploy: true
|
115
134
|
scope: shared
|
116
135
|
tenants:
|
117
136
|
- tenant1
|
@@ -27,7 +27,25 @@ body:
|
|
27
27
|
- webhook:
|
28
28
|
name: info
|
29
29
|
url: https://abc.com/post
|
30
|
-
payload:
|
30
|
+
payload: |
|
31
|
+
{
|
32
|
+
"system": "external_system",
|
33
|
+
"action": "update",
|
34
|
+
"data": {
|
35
|
+
"field": "value",
|
36
|
+
"timestamp": "2024-05-20T12:00:00Z"
|
37
|
+
}
|
38
|
+
}
|
39
|
+
events:
|
40
|
+
success: false
|
41
|
+
fail: true
|
42
|
+
runtimeExceeded: "@param:runtime_exceeded"
|
43
|
+
- email:
|
44
|
+
name: "email-watcher-1"
|
45
|
+
recipients:
|
46
|
+
to:
|
47
|
+
- "user1@peak.ai"
|
48
|
+
- "user2@peak.ai"
|
31
49
|
events:
|
32
50
|
success: false
|
33
51
|
fail: true
|
@@ -100,3 +118,4 @@ artifact:
|
|
100
118
|
ignore_files:
|
101
119
|
- ".gitignore"
|
102
120
|
- ".dockerignore"
|
121
|
+
autoRunOnDeploy: true
|
@@ -12,7 +12,15 @@ body:
|
|
12
12
|
- webhook:
|
13
13
|
name: info
|
14
14
|
url: "https://abc.com/post"
|
15
|
-
payload:
|
15
|
+
payload: |
|
16
|
+
{
|
17
|
+
"system": "external_system",
|
18
|
+
"action": "update",
|
19
|
+
"data": {
|
20
|
+
"field": "value",
|
21
|
+
"timestamp": "2024-05-20T12:00:00Z"
|
22
|
+
}
|
23
|
+
}
|
16
24
|
events:
|
17
25
|
success: false
|
18
26
|
fail: true
|
@@ -12,7 +12,15 @@ body:
|
|
12
12
|
- webhook:
|
13
13
|
name: info
|
14
14
|
url: "https://abc.com/post"
|
15
|
-
payload:
|
15
|
+
payload: |
|
16
|
+
{
|
17
|
+
"system": "external_system",
|
18
|
+
"action": "update",
|
19
|
+
"data": {
|
20
|
+
"field": "value",
|
21
|
+
"timestamp": "2024-05-20T12:00:00Z"
|
22
|
+
}
|
23
|
+
}
|
16
24
|
events:
|
17
25
|
success: false
|
18
26
|
fail: true
|
@@ -12,7 +12,15 @@ body:
|
|
12
12
|
- webhook:
|
13
13
|
name: info
|
14
14
|
url: "https://abc.com/post"
|
15
|
-
payload:
|
15
|
+
payload: |
|
16
|
+
{
|
17
|
+
"system": "external_system",
|
18
|
+
"action": "update",
|
19
|
+
"data": {
|
20
|
+
"field": "value",
|
21
|
+
"timestamp": "2024-05-20T12:00:00Z"
|
22
|
+
}
|
23
|
+
}
|
16
24
|
events:
|
17
25
|
success: false
|
18
26
|
fail: true
|
@@ -12,7 +12,15 @@ body:
|
|
12
12
|
- webhook:
|
13
13
|
name: info
|
14
14
|
url: "https://abc.com/post"
|
15
|
-
payload:
|
15
|
+
payload: |
|
16
|
+
{
|
17
|
+
"system": "external_system",
|
18
|
+
"action": "update",
|
19
|
+
"data": {
|
20
|
+
"field": "value",
|
21
|
+
"timestamp": "2024-05-20T12:00:00Z"
|
22
|
+
}
|
23
|
+
}
|
16
24
|
events:
|
17
25
|
success: false
|
18
26
|
fail: true
|
peak/session.py
CHANGED
@@ -179,7 +179,7 @@ class Session:
|
|
179
179
|
page_count = response["pageCount"]
|
180
180
|
yield from response[response_key]
|
181
181
|
page_number += 1
|
182
|
-
return f"No more {response_key} to list"
|
182
|
+
return f"No more {response_key} to list" # type: ignore[return-value]
|
183
183
|
|
184
184
|
def create_download_request(
|
185
185
|
self,
|
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: peak-sdk
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.7.0
|
4
4
|
Summary: Python SDK for interacting with the Peak platform
|
5
|
-
Home-page: https://docs.peak.ai/sdk
|
5
|
+
Home-page: https://docs.peak.ai/sdk/latest/
|
6
6
|
License: Apache-2.0
|
7
7
|
Author: Peak
|
8
8
|
Author-email: support@peak.ai
|
@@ -30,14 +30,14 @@ Requires-Dist: shellingham (<1.5.4)
|
|
30
30
|
Requires-Dist: structlog (>=24.1.0,<25.0.0)
|
31
31
|
Requires-Dist: typer[all] (>=0.9,<0.10)
|
32
32
|
Requires-Dist: urllib3 (<2)
|
33
|
-
Project-URL: Documentation, https://docs.peak.ai/sdk/
|
33
|
+
Project-URL: Documentation, https://docs.peak.ai/sdk/latest/
|
34
34
|
Description-Content-Type: text/markdown
|
35
35
|
|
36
36
|
# Peak SDK
|
37
37
|
|
38
38
|
[](https://pypi.org/project/peak-sdk/)
|
39
|
-
[](https://docs.peak.ai/sdk/#platform-support)
|
40
|
-
[](https://docs.peak.ai/sdk/license.html)
|
39
|
+
[](https://docs.peak.ai/sdk/latest/#platform-support)
|
40
|
+
[](https://docs.peak.ai/sdk/latest/license.html)
|
41
41
|
|
42
42
|
## What is Peak SDK?
|
43
43
|
|
@@ -104,15 +104,15 @@ Follow these steps to create a virtual environment using Python's built-in `venv
|
|
104
104
|
|
105
105
|
### Documentation
|
106
106
|
|
107
|
-
You can access the documentation for the SDK and CLI at [https://docs.peak.ai/sdk/](https://docs.peak.ai/sdk/).
|
107
|
+
You can access the documentation for the SDK and CLI at [https://docs.peak.ai/sdk/latest/](https://docs.peak.ai/sdk/latest/).
|
108
108
|
Here are some quick links to help you navigate easily:
|
109
109
|
|
110
|
-
- [SDK Reference](https://docs.peak.ai/sdk/reference.html)
|
111
|
-
- [CLI Reference](https://docs.peak.ai/sdk/cli/reference.html)
|
112
|
-
- [Usage](https://docs.peak.ai/sdk/usage.html)
|
113
|
-
- [CLI Usage](https://docs.peak.ai/sdk/cli/usage.html)
|
114
|
-
- [Migration Guide](https://docs.peak.ai/sdk/migration-guide.html)
|
115
|
-
- [FAQ](https://docs.peak.ai/sdk/faq.html)
|
110
|
+
- [SDK Reference](https://docs.peak.ai/sdk/latest/reference.html)
|
111
|
+
- [CLI Reference](https://docs.peak.ai/sdk/latest/cli/reference.html)
|
112
|
+
- [Usage](https://docs.peak.ai/sdk/latest/usage.html)
|
113
|
+
- [CLI Usage](https://docs.peak.ai/sdk/latest/cli/usage.html)
|
114
|
+
- [Migration Guide](https://docs.peak.ai/sdk/latest/migration-guide.html)
|
115
|
+
- [FAQ](https://docs.peak.ai/sdk/latest/faq.html)
|
116
116
|
|
117
117
|
### Platform Support
|
118
118
|
|
@@ -194,6 +194,6 @@ Here are some quick links to help you navigate easily:
|
|
194
194
|
|
195
195
|
## More Resources
|
196
196
|
|
197
|
-
- [License](https://docs.peak.ai/sdk/license.html)
|
198
|
-
- [Changelog](https://docs.peak.ai/sdk/changelog.html)
|
197
|
+
- [License](https://docs.peak.ai/sdk/latest/license.html)
|
198
|
+
- [Changelog](https://docs.peak.ai/sdk/latest/changelog.html)
|
199
199
|
|
@@ -1,32 +1,32 @@
|
|
1
1
|
peak/__init__.py,sha256=yULGsiciVPNjdTO6uwEynsyLFiGBA2n7TT72DzKn9z8,1263
|
2
|
-
peak/_metadata.py,sha256=
|
3
|
-
peak/_version.py,sha256=
|
2
|
+
peak/_metadata.py,sha256=c94cy4QVjiKKuIBPMMyJ5CYQ1VFku5l-ga558HnjBos,25055
|
3
|
+
peak/_version.py,sha256=pjS4iZCA4ZosIAsDXHtFfLLN_SNjRloHortjuuHKErU,886
|
4
4
|
peak/auth.py,sha256=KcqCqovY6sFiMGNAGP9k3AtCAXrZ-tYd7QP-PFYorX0,904
|
5
5
|
peak/base_client.py,sha256=3cS8hZApONkojwdgzt_tbwSxwpFcn3xGwzVcmxkgOJc,1808
|
6
6
|
peak/callbacks.py,sha256=ZO3Yk_-xa9LGoJgMCc01hqYLq2z3wU45UO3iLHSHk6k,2486
|
7
7
|
peak/cli/__init_.py,sha256=enzNZ-aEPmKIC8eExPvF-ZdomGroRUPmP09003PNGAg,859
|
8
|
-
peak/cli/args.py,sha256=
|
8
|
+
peak/cli/args.py,sha256=h40_p-pz2qgIMNeK_Mpk7IlvqkjnjZaEahxYfALy4-w,5721
|
9
9
|
peak/cli/cli.py,sha256=pmwb8hrOVCIsXYMaRJzGVcSBHusehpeqkjpT4BW_qYk,2445
|
10
10
|
peak/cli/helpers.py,sha256=GS1YUdQcjzxW_YDRsVbBsmdJ36mxn4Z2DuoaVd9JRYw,8286
|
11
11
|
peak/cli/press/__init__.py,sha256=7zvL15sobpdrEuGoziADkJVnrHMiZKINYr4FDRFetY8,898
|
12
12
|
peak/cli/press/apps/__init__.py,sha256=_bUtQG1zrO9Jv5zIFFKikR82-NsAfpow2KgSOa3oX_M,1459
|
13
13
|
peak/cli/press/apps/deployments.py,sha256=7JmxFhtaOZ9QXTtAtd-Oxu69JemRBP6MDuaRONdWEAY,15895
|
14
|
-
peak/cli/press/apps/specs.py,sha256=
|
14
|
+
peak/cli/press/apps/specs.py,sha256=jwH2lbK2nHnZ8NCpYpofoBLaanNe2u92wkNXdkcb0h8,15844
|
15
15
|
peak/cli/press/blocks/__init__.py,sha256=0kQIpLD29rlec5xTB9RLNPdIHxf6vi6_3gukBkwaySI,1499
|
16
16
|
peak/cli/press/blocks/deployments.py,sha256=20zUO6_GSjc2DpCfao0_2urktjn4Z6JY4T1GVc4sK60,20260
|
17
|
-
peak/cli/press/blocks/specs.py,sha256=
|
18
|
-
peak/cli/press/deployments.py,sha256=
|
17
|
+
peak/cli/press/blocks/specs.py,sha256=9Xg_9sGxujdHWa3Veq3VJi3PiOg-LeCX9amd8grKLNQ,32860
|
18
|
+
peak/cli/press/deployments.py,sha256=KyNyAQEoX4cXApa637G5oB6O7o0cIRuBp5d2aXliNUo,4258
|
19
19
|
peak/cli/press/specs.py,sha256=I5eBzFDN365oo16lEwnPaOlcncBRRpvIchkt4ukGreg,4811
|
20
20
|
peak/cli/resources/__init__.py,sha256=ThMYJ-QNULjTWOmAGUzhKWuqDcHq73DxzgTV2r5-uLs,883
|
21
21
|
peak/cli/resources/alerts/__init__.py,sha256=TyeLPOGiA4qvOKORV3Ejlx8n6lGfX1G2GcU-bpYsgPE,1197
|
22
22
|
peak/cli/resources/alerts/emails.py,sha256=NBJQfk9lTvfzGw8rTO3lRbK3iB05p71rwdfyxvTEhjc,12062
|
23
23
|
peak/cli/resources/artifacts.py,sha256=LQcJKw39xoJaFeTJMYi1n-XTyU02SOSKg0J1VuWrhgU,12383
|
24
|
-
peak/cli/resources/images.py,sha256
|
24
|
+
peak/cli/resources/images.py,sha256=67WLjM_PjHiXk1tI4x_LCo7yWrpnHXCRQihO7L3XMzc,43563
|
25
25
|
peak/cli/resources/services.py,sha256=WUQw2J0V8SGs7h-yJ5tgLTUWNE5e8rasw6hII4hE9ng,24546
|
26
|
-
peak/cli/resources/tenants.py,sha256=
|
26
|
+
peak/cli/resources/tenants.py,sha256=OsalbkYVCl3E2sw9SEhJNOLfFrWdeVFsLIKXkvJdtBo,2659
|
27
27
|
peak/cli/resources/users.py,sha256=igXEelUTnqcqVd4OUu2YUMu8kwelWp7ZM9JgXxk9Jfg,2628
|
28
28
|
peak/cli/resources/webapps.py,sha256=0Wunb-XYvM5n5HQO4_-LDMCDezdRo_FbbsEnHPTdA2Y,21349
|
29
|
-
peak/cli/resources/workflows.py,sha256=
|
29
|
+
peak/cli/resources/workflows.py,sha256=G9DnpsxaBdlp8D1uPaVOINx3KDvZTG9LzU1_TajZFqM,52731
|
30
30
|
peak/cli/ruff.toml,sha256=fpwsdsoY9ktmnOMvwONo13_myn0N5AcoDq8mMueCVDs,267
|
31
31
|
peak/cli/version.py,sha256=Y8HJCJJqkXnpcXw8dyaJcPZmIDOl32bJZ2bWmjmlJBM,1654
|
32
32
|
peak/compression.py,sha256=ZV2WCzyhmn1omupKAFaA0s3CsFEOmd2UjcuM-uSjUB4,7442
|
@@ -38,15 +38,15 @@ peak/helpers.py,sha256=EvTk4oMdkVcAXXqbYoxa0o9Si1y7X_PqS4yOJwSxhdg,8781
|
|
38
38
|
peak/logger.py,sha256=bPq_7mdbhFoUcnV_LCi8hRDrb7INwf8PHHEx2z83bFU,1548
|
39
39
|
peak/output.py,sha256=BM_DTyz8kxGCUAY--19SzsRofzqafFOuRGehUVtgbm4,6180
|
40
40
|
peak/press/__init__.py,sha256=80Key6wov_xZld45-39ELT0gDC_t4cy-JvA9wfCy7-c,1112
|
41
|
-
peak/press/apps.py,sha256=
|
42
|
-
peak/press/blocks.py,sha256=
|
43
|
-
peak/press/deployments.py,sha256
|
41
|
+
peak/press/apps.py,sha256=LykUr4KpBaMVZ_hm8tmqRwsaimqjdW2JfFrOPlaKFKE,42551
|
42
|
+
peak/press/blocks.py,sha256=Se2Rckz8HV6jcntsS82F__BPUydQacBstALSItx2qfg,73739
|
43
|
+
peak/press/deployments.py,sha256=-kXElfoP3HEd6AA91LIM7TSiQ5_dn7B8abZHXoGpU-w,7232
|
44
44
|
peak/press/specs.py,sha256=GH9-SACctAlcBZznXEmsIqneOwIJoE55mD4aHQymMrM,10915
|
45
45
|
peak/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
46
|
peak/resources/__init__.py,sha256=xTYFuTvVTXJECutc1h-uDYuK-xL-5lctu3ZDXvn0ZHw,1207
|
47
47
|
peak/resources/alerts.py,sha256=-RIfyCa4bkrb32poJlbKnsfLslpw49DyqvUOCTl-mUo,12370
|
48
48
|
peak/resources/artifacts.py,sha256=lLVRRrznKKYVOA-pinWyqLpRd-AoFHGkFYwLT9aEGOU,14365
|
49
|
-
peak/resources/images.py,sha256=
|
49
|
+
peak/resources/images.py,sha256=7UB-jNEkE3HaqGLiTkv5wf5SU_9Y-jeFoMG_aMPT-y8,46715
|
50
50
|
peak/resources/services.py,sha256=B9FJQD4eFGYdHbYbfHocfXm1LlRGil7yTmQPwTEpazM,16910
|
51
51
|
peak/resources/tenants.py,sha256=J6lxfq1HXfyhA2EmSSSUHi4fRN6KU__yV7El1PVmvtk,2936
|
52
52
|
peak/resources/users.py,sha256=X9NfZo1dVvXQk_DCxzTKGG_VCsSmk7HzHdJrRR90mKQ,3428
|
@@ -55,30 +55,34 @@ peak/resources/workflows.py,sha256=ePDis4MFa7HZd2PCEt2Y-WfpdFY1hsOmJStiXxccVwc,5
|
|
55
55
|
peak/sample_yaml/press/apps/deployments/create_app_deployment.yaml,sha256=-P2wFBnxY_yCxRJ5-Wx1NQyLrdbBQa8RAxVKXjyiGYc,996
|
56
56
|
peak/sample_yaml/press/apps/deployments/create_app_deployment_revision.yaml,sha256=QVYjGBBDxoqADIxWuOuV3X8rABpvHMZUbXlA7KpKg1s,688
|
57
57
|
peak/sample_yaml/press/apps/deployments/update_app_deployment_metadata.yaml,sha256=RBrAnxULPXYTrYY7T6l-L5_Q1E8LJ6RwVwOkw4zn5w0,302
|
58
|
-
peak/sample_yaml/press/apps/specs/create_app_spec.yaml,sha256=
|
59
|
-
peak/sample_yaml/press/apps/specs/create_app_spec_release.yaml,sha256=
|
58
|
+
peak/sample_yaml/press/apps/specs/create_app_spec.yaml,sha256=UmqpvsMscxl-63Py36eZ-M55irNL1a1UvojldExE9Bo,642
|
59
|
+
peak/sample_yaml/press/apps/specs/create_app_spec_release.yaml,sha256=ow9WaTKrmQg9A8Q_IbOadn6_KuEKTUbCG-dalj8-8TM,307
|
60
60
|
peak/sample_yaml/press/apps/specs/update_app_spec_metadata.yaml,sha256=jCZZevvQbeUlHtfhG0DZrNVMlzm-teT1dLs6DuqAloY,337
|
61
61
|
peak/sample_yaml/press/blocks/deployments/create_block_deployment.yaml,sha256=LcJ2Eata1JdwQ8rhCM4kh2H0p5OsSpnGIMnVySP7DiY,729
|
62
62
|
peak/sample_yaml/press/blocks/deployments/create_block_deployment_revision.yaml,sha256=ob17cSem5opvRaoeZzgwKtbTVItduNIHdnVD5l3nYuw,376
|
63
63
|
peak/sample_yaml/press/blocks/deployments/patch_block_parameters.yaml,sha256=Zx8bHmrfnClykuUhBSe9OY9CBOwvfdtvxePLHED7LyA,156
|
64
64
|
peak/sample_yaml/press/blocks/deployments/update_block_deployment_metadata.yaml,sha256=1Qvc-2kdxcC3wPpH8p4DQWFRNKqRMI_mQjeN4A0aUug,304
|
65
|
-
peak/sample_yaml/press/blocks/specs/create_block_spec.yaml,sha256=
|
66
|
-
peak/sample_yaml/press/blocks/specs/create_block_spec_release.yaml,sha256=
|
65
|
+
peak/sample_yaml/press/blocks/specs/service/api/create_block_spec.yaml,sha256=QPZVdsdbLmNZu5d8TjeqLGvvjnbqZAnhfJ_XSPLVX30,2445
|
66
|
+
peak/sample_yaml/press/blocks/specs/service/api/create_block_spec_release.yaml,sha256=I6iMRQStiP1hDI-7nc2unsAK81Le-GWZuZXiTdKsUzw,2088
|
67
|
+
peak/sample_yaml/press/blocks/specs/service/webapp/create_block_spec.yaml,sha256=3jXgYUUWRPsscjZE_PEzKGLkk79SUL2Q9xdy93_MIVc,2488
|
68
|
+
peak/sample_yaml/press/blocks/specs/service/webapp/create_block_spec_release.yaml,sha256=lJbBN5V-lO0AKuMZ2wLWxmqbtdgJN9EcFVk4AvAuEk0,2116
|
67
69
|
peak/sample_yaml/press/blocks/specs/update_block_spec_metadata.yaml,sha256=WsfYGQ81gC4-RYG-U_N3_EPIhKjx4zOgg-tmAjmHkpk,378
|
70
|
+
peak/sample_yaml/press/blocks/specs/workflow/create_block_spec.yaml,sha256=C3VXM7C5RH6j7fwHdArqpuJEWj_O1JtK_NTZ8FgaTv0,3423
|
71
|
+
peak/sample_yaml/press/blocks/specs/workflow/create_block_spec_release.yaml,sha256=7nVS39bzkV9U1r-5YhRO6yDIc8yDgBFmoTiTRVcW5wE,3067
|
68
72
|
peak/sample_yaml/resources/artifacts/create_artifact.yaml,sha256=TtUB8yI-hZqXY3t5bCYPbXncvg-GXUIq0T8Ak7tYuW4,152
|
69
73
|
peak/sample_yaml/resources/artifacts/create_artifact_version.yaml,sha256=orT1FOpjxpLP3XHMB9XDfhLM1KG8Sv3PSlVUQkeNUeI,104
|
70
74
|
peak/sample_yaml/resources/artifacts/update_artifact_metadata.yaml,sha256=nvV84lOBtoekXl3kWrMTIU3tbsVn-gVIx4cLRI8jevw,99
|
71
75
|
peak/sample_yaml/resources/emails/send_email.yaml,sha256=aU0oUT7AppVRSnu-NJmp-Li0xKkM8XGqStpJAIGYKGg,256
|
72
|
-
peak/sample_yaml/resources/images/dockerfile/create_image.yaml,sha256=
|
73
|
-
peak/sample_yaml/resources/images/dockerfile/create_image_version.yaml,sha256=
|
74
|
-
peak/sample_yaml/resources/images/dockerfile/update_version.yaml,sha256=
|
75
|
-
peak/sample_yaml/resources/images/github/create_image.yaml,sha256=
|
76
|
-
peak/sample_yaml/resources/images/github/create_image_version.yaml,sha256=
|
77
|
-
peak/sample_yaml/resources/images/github/update_version.yaml,sha256=
|
78
|
-
peak/sample_yaml/resources/images/upload/create_image.yaml,sha256
|
79
|
-
peak/sample_yaml/resources/images/upload/create_image_version.yaml,sha256=
|
80
|
-
peak/sample_yaml/resources/images/upload/create_or_update_image.yaml,sha256=
|
81
|
-
peak/sample_yaml/resources/images/upload/update_version.yaml,sha256=
|
76
|
+
peak/sample_yaml/resources/images/dockerfile/create_image.yaml,sha256=Tf-v2-qOQxfecaU7fZGQpzzy6QlvqKIOCCqvkR87c8E,388
|
77
|
+
peak/sample_yaml/resources/images/dockerfile/create_image_version.yaml,sha256=7WaWHmuZ45b3DDKI2Z75WpuUvz49pZNCxyCsfnYGeEA,355
|
78
|
+
peak/sample_yaml/resources/images/dockerfile/update_version.yaml,sha256=lJRjXDwyLGD_ZJnXbWKSka8nk9dKt52N_VO7xnLrpdg,320
|
79
|
+
peak/sample_yaml/resources/images/github/create_image.yaml,sha256=aZNHyXTwLSjIXbquKpCyIoNv1m9sirXvDj8Z_EyCg5Q,441
|
80
|
+
peak/sample_yaml/resources/images/github/create_image_version.yaml,sha256=dGDGi1qfw6GRQqjg1PqdTaFGdNRyD3KxaHLIWp6IS30,414
|
81
|
+
peak/sample_yaml/resources/images/github/update_version.yaml,sha256=r_NnG41vPuP_bRHO1M-AwESafmeEqBgXIbPlcnFMM3M,383
|
82
|
+
peak/sample_yaml/resources/images/upload/create_image.yaml,sha256=N8zKEZd4Lu1cejDa4H5MloQGxmMFLntx1eQWIGqNcEI,435
|
83
|
+
peak/sample_yaml/resources/images/upload/create_image_version.yaml,sha256=Xt_fzSV9IEzFuvxf5p89z1DVoKHqyi4sY37jJ6CbvpY,440
|
84
|
+
peak/sample_yaml/resources/images/upload/create_or_update_image.yaml,sha256=6F4O2h3W9DsMNKwq1qMqDLffTTotvLH343Nmcxm3l3o,459
|
85
|
+
peak/sample_yaml/resources/images/upload/update_version.yaml,sha256=hn8Tb4jrWI-IaFBtjEpY27MIZTpBKgWb3PR500h0g-o,366
|
82
86
|
peak/sample_yaml/resources/services/create_or_update_service.yaml,sha256=YrS3TiUDj-sy8qseFFXuvpR_CXRyCI268hYzv6YA4PA,428
|
83
87
|
peak/sample_yaml/resources/services/create_service.yaml,sha256=YrS3TiUDj-sy8qseFFXuvpR_CXRyCI268hYzv6YA4PA,428
|
84
88
|
peak/sample_yaml/resources/services/test_service.yaml,sha256=600Ufl4c63LWXiGJATH0-dvWPIgLjh-QOd-mIIruuxo,158
|
@@ -86,18 +90,18 @@ peak/sample_yaml/resources/services/update_service.yaml,sha256=-0G2AkcJXl5b9e_id
|
|
86
90
|
peak/sample_yaml/resources/webapps/create_or_update_webapp.yaml,sha256=r7amhHgvHFczoet7Uv1TU40IN3nPECDohD-V0_joGUM,192
|
87
91
|
peak/sample_yaml/resources/webapps/create_webapp.yaml,sha256=vha4FJgOILeBOp2eaw2CL_fr3LudotLjNu1CR1-cnTg,208
|
88
92
|
peak/sample_yaml/resources/webapps/update_webapp.yaml,sha256=6L2F30h-U6_aSZfRAllDxwAgCMHZk8jBHgUi4l18xRM,199
|
89
|
-
peak/sample_yaml/resources/workflows/create_or_update_workflow.yaml,sha256=
|
90
|
-
peak/sample_yaml/resources/workflows/create_workflow.yaml,sha256=
|
93
|
+
peak/sample_yaml/resources/workflows/create_or_update_workflow.yaml,sha256=0-0g42c_2z_nqRYlLQL_tQ8SqVcpl3OzClJZ6vOLT6Y,1361
|
94
|
+
peak/sample_yaml/resources/workflows/create_workflow.yaml,sha256=sF2kGrElgA0EWiDZy9V6juDgMRaPtgQEN71926wraqk,1403
|
91
95
|
peak/sample_yaml/resources/workflows/execute_partial_workflow.yaml,sha256=Mmv3aEr8jsiFN-yuPbp8hk5ZT-GdtEAgwt2pArFC_EQ,237
|
92
96
|
peak/sample_yaml/resources/workflows/execute_workflow.yaml,sha256=aMPjkzS3pFvKy-FfKfGAW9qb1WmAUSU2gsUcyv8a3X0,160
|
93
|
-
peak/sample_yaml/resources/workflows/patch_workflow.yaml,sha256=
|
94
|
-
peak/sample_yaml/resources/workflows/update_workflow.yaml,sha256=
|
97
|
+
peak/sample_yaml/resources/workflows/patch_workflow.yaml,sha256=6W8uva0PwiTkAlOOnWuM6C6UY_SvKD8cR3IP8NLveNc,1190
|
98
|
+
peak/sample_yaml/resources/workflows/update_workflow.yaml,sha256=nEf0x9oY7q6jyCaKBux91UBb4AF1tTTwPOXbcazwN-w,1372
|
95
99
|
peak/sample_yaml/resources/workflows/workflow_auto_retry.yaml,sha256=_E5FA-uD1qGVC3RhMCqi56Ac60TACMTnjNZ0wp1aLg8,849
|
96
100
|
peak/sample_yaml/resources/workflows/workflow_execution_parameters.yaml,sha256=bmRQLw-kM3qB2KBWsVonbKPy7-N_SE_CRyeoD5zKm6M,1229
|
97
101
|
peak/sample_yaml/resources/workflows/workflow_input_parameters.yaml,sha256=lG_3KZoZPSIhw2YA9CZvU1B400oMD1t8xQQjvoocO24,457
|
98
102
|
peak/sample_yaml/resources/workflows/workflow_output_parameters.yaml,sha256=PEkinTcETUgFAK1o5-cKjYAqhAlzEFKtOJzRpuBPom8,536
|
99
103
|
peak/sample_yaml/resources/workflows/workflow_skippable_steps.yaml,sha256=BjDy73pWO6nJ-4IjmdyHOJJE5C35E18gjPPlITs7ucI,680
|
100
|
-
peak/session.py,sha256=
|
104
|
+
peak/session.py,sha256=UZxo3Zai50G_ruZTTvNCUQvpQG2yl3TP5-uXz_wLWy8,10187
|
101
105
|
peak/telemetry.py,sha256=vRiWm3evFRSy_V8wC2IopdDP32KbcueqNASUhlnmyHs,7086
|
102
106
|
peak/template.py,sha256=njz8haMQV_WfZ5HQoJFNseUMWPSw2a9r0V7P1hY9GFM,9798
|
103
107
|
peak/tools/__init__.py,sha256=qK30qBi0MNvob6UkyzcfhI0s8nfSwGC4167A_2URBnY,1048
|
@@ -107,8 +111,8 @@ peak/tools/logging/log_level.py,sha256=Xtv4zZnYk4QBix_MfCRGim4yJbv7w2tTbNKe_s4Qm
|
|
107
111
|
peak/tools/logging/logger.py,sha256=Jow5D3hqek-n0kHWNeL2nKbC9NfpfkWFT_FmPp-skTw,15653
|
108
112
|
peak/tools/logging/utils.py,sha256=qmjdBbCc1Y6JDbSgNXfdnLnpkx7fb9kPw9u8uO3AAII,3330
|
109
113
|
peak/validators.py,sha256=_nVAXF_AB443voKNjyQsCTQBAVVAqn7xCbCbBguohIs,2715
|
110
|
-
peak_sdk-1.
|
111
|
-
peak_sdk-1.
|
112
|
-
peak_sdk-1.
|
113
|
-
peak_sdk-1.
|
114
|
-
peak_sdk-1.
|
114
|
+
peak_sdk-1.7.0.dist-info/LICENSE,sha256=W0jszenKx7YdFA7BDnyg8xDKXzCP8AperJb_PHh9paQ,11340
|
115
|
+
peak_sdk-1.7.0.dist-info/METADATA,sha256=tdDVlzIcBp2fP-0A9IJz86HsQnn9xIUPw2KJlO6bASw,7143
|
116
|
+
peak_sdk-1.7.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
117
|
+
peak_sdk-1.7.0.dist-info/entry_points.txt,sha256=zHCEjuOTjkfmqivgEZQsPGm4zFA4W3Q_vKCjPr7W6lE,47
|
118
|
+
peak_sdk-1.7.0.dist-info/RECORD,,
|