Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions src/spring/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Release History
===============
1.6.8
---
* Add detail description to Default for argument `--backend-protocol`.

1.6.7
---
* Change all Azure Spring Apps API version to 2022-11-01-preview.
Expand Down
2 changes: 1 addition & 1 deletion src/spring/azext_spring/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def prepare_logs_argument(c):
validator=validate_ingress_session_max_age)
c.argument('backend_protocol',
arg_type=get_enum_type(BackendProtocol),
help='Ingress backend protocol of app.')
help='Ingress backend protocol of app. Default means HTTP/HTTPS/WebSocket.')
c.argument('client_auth_certs',
validator=validate_ingress_client_auth_certificates,
help="A space-separated string containing resource ids of certificates for client authentication. e.g: --client_auth_certs='id0 id1'. Use '' to clear existing certificates.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4844,7 +4844,7 @@ class IngressSettings(_serialization.Model):
:ivar session_cookie_max_age: Time in seconds until the cookie expires.
:vartype session_cookie_max_age: int
:ivar backend_protocol: How ingress should communicate with this app backend service. Known
values are: "GRPC" and "Default".
values are: "GRPC" and "Default", Default means HTTP/HTTPS/WebSocket.
:vartype backend_protocol: str or
~azure.mgmt.appplatform.v2022_09_01_preview.models.BackendProtocol
:ivar client_auth: Client-Certification Authentication.
Expand Down Expand Up @@ -4884,7 +4884,7 @@ def __init__(
:keyword session_cookie_max_age: Time in seconds until the cookie expires.
:paramtype session_cookie_max_age: int
:keyword backend_protocol: How ingress should communicate with this app backend service. Known
values are: "GRPC" and "Default".
values are: "GRPC" and "Default", Default means HTTP/HTTPS/WebSocket.
:paramtype backend_protocol: str or
~azure.mgmt.appplatform.v2022_09_01_preview.models.BackendProtocol
:keyword client_auth: Client-Certification Authentication.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6113,7 +6113,7 @@ class IngressSettings(_serialization.Model):
:ivar session_cookie_max_age: Time in seconds until the cookie expires.
:vartype session_cookie_max_age: int
:ivar backend_protocol: How ingress should communicate with this app backend service. Known
values are: "GRPC" and "Default".
values are: "GRPC" and "Default", Default means HTTP/HTTPS/WebSocket.
:vartype backend_protocol: str or
~azure.mgmt.appplatform.v2022_11_01_preview.models.BackendProtocol
:ivar client_auth: Client-Certification Authentication.
Expand Down Expand Up @@ -6153,7 +6153,7 @@ def __init__(
:keyword session_cookie_max_age: Time in seconds until the cookie expires.
:paramtype session_cookie_max_age: int
:keyword backend_protocol: How ingress should communicate with this app backend service. Known
values are: "GRPC" and "Default".
values are: "GRPC" and "Default", Default means HTTP/HTTPS/WebSocket.
:paramtype backend_protocol: str or
~azure.mgmt.appplatform.v2022_11_01_preview.models.BackendProtocol
:keyword client_auth: Client-Certification Authentication.
Expand Down
2 changes: 1 addition & 1 deletion src/spring/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '1.6.7'
VERSION = '1.6.8'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down