Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/containerapp/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release History
upcoming
++++++
* 'az containerapp session code-interpreter execute': Extend maximum supported value of `--timeout-in-seconds` from 60 to 220.
* 'az containerapp session code-interpreter': Fix `--path` in examples
* 'az containerapp job create': Fix message with `--help`
* 'az containerapp arc': Enable setup custom core dns for Openshift on Arc

Expand Down
10 changes: 5 additions & 5 deletions src/containerapp/azext_containerapp/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -2075,7 +2075,7 @@
- name: Upload a file to a session.
text: |
az containerapp session code-interpreter upload-file -n MySessionPool -g MyResourceGroup --identifier MySession \\
--filepath example.txt --path /
--filepath example.txt --path test-directory
"""

helps['containerapp session code-interpreter show-file-content'] = """
Expand All @@ -2084,7 +2084,7 @@
examples:
- name: Show content of file.
text: az containerapp session code-interpreter show-file-content -n MySessionPool -g MyResourceGroup --identifier MySession \\
--filename example.txt --path /
--filename example.txt --path test-directory
"""

helps['containerapp session code-interpreter show-file-metadata'] = """
Expand All @@ -2093,7 +2093,7 @@
examples:
- name: Show the meta-data details of a file uploaded to a session.
text: az containerapp session code-interpreter show-file-metadata -n MySessionPool -g MyResourceGroup --identifier MySession \\
--filename example.txt --path /
--filename example.txt --path test-directory
"""

helps['containerapp session code-interpreter delete-file'] = """
Expand All @@ -2102,7 +2102,7 @@
examples:
- name: Delete a file .
text: az containerapp session code-interpreter delete-file -n MySessionPool -g MyResourceGroup --identifier MySession \\
--filename example.txt --path /
--filename example.txt --path test-directory
"""

helps['containerapp session code-interpreter list-files'] = """
Expand All @@ -2111,7 +2111,7 @@
examples:
- name: List files uploaded in a code-interpreter session.
text: |
az containerapp session code-interpreter list-files -n MySessionPool -g MyResourceGroup --identifier MySession --path /
az containerapp session code-interpreter list-files -n MySessionPool -g MyResourceGroup --identifier MySession --path test-directory
"""

helps['containerapp java'] = """
Expand Down
Loading