File tree Expand file tree Collapse file tree 8 files changed +20
-20
lines changed
scaleway-async/scaleway_async Expand file tree Collapse file tree 8 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -577,7 +577,7 @@ async def create_container(
577
577
:param port:
578
578
:param secret_environment_variables:
579
579
:param http_option: possible values:
580
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
580
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
581
581
- enabled: Serve both HTTP and HTTPS traffic.
582
582
583
583
:return: :class:`Container <Container>`
@@ -664,7 +664,7 @@ async def update_container(
664
664
:param port:
665
665
:param secret_environment_variables:
666
666
:param http_option: possible values:
667
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
667
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
668
668
- enabled: Serve both HTTP and HTTPS traffic.
669
669
670
670
:return: :class:`Container <Container>`
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ class Container:
219
219
http_option : ContainerHttpOption
220
220
"""
221
221
possible values:
222
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
222
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
223
223
- enabled: Serve both HTTP and HTTPS traffic.
224
224
225
225
"""
@@ -576,7 +576,7 @@ class CreateContainerRequest:
576
576
http_option : ContainerHttpOption
577
577
"""
578
578
possible values:
579
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
579
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
580
580
- enabled: Serve both HTTP and HTTPS traffic.
581
581
582
582
"""
@@ -620,7 +620,7 @@ class UpdateContainerRequest:
620
620
http_option : ContainerHttpOption
621
621
"""
622
622
possible values:
623
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
623
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
624
624
- enabled: Serve both HTTP and HTTPS traffic.
625
625
626
626
"""
Original file line number Diff line number Diff line change @@ -612,7 +612,7 @@ async def create_function(
612
612
:param description:
613
613
:param secret_environment_variables:
614
614
:param http_option: possible values:
615
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
615
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
616
616
- enabled: Serve both HTTP and HTTPS traffic.
617
617
618
618
:return: :class:`Function <Function>`
@@ -693,7 +693,7 @@ async def update_function(
693
693
:param description:
694
694
:param secret_environment_variables:
695
695
:param http_option: possible values:
696
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
696
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
697
697
- enabled: Serve both HTTP and HTTPS traffic.
698
698
699
699
:return: :class:`Function <Function>`
Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ class Function:
396
396
http_option : FunctionHttpOption
397
397
"""
398
398
possible values:
399
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
399
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
400
400
- enabled: Serve both HTTP and HTTPS traffic.
401
401
402
402
"""
@@ -892,7 +892,7 @@ class CreateFunctionRequest:
892
892
http_option : FunctionHttpOption
893
893
"""
894
894
possible values:
895
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
895
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
896
896
- enabled: Serve both HTTP and HTTPS traffic.
897
897
898
898
"""
@@ -932,7 +932,7 @@ class UpdateFunctionRequest:
932
932
http_option : FunctionHttpOption
933
933
"""
934
934
possible values:
935
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
935
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
936
936
- enabled: Serve both HTTP and HTTPS traffic.
937
937
938
938
"""
Original file line number Diff line number Diff line change @@ -573,7 +573,7 @@ def create_container(
573
573
:param port:
574
574
:param secret_environment_variables:
575
575
:param http_option: possible values:
576
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
576
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
577
577
- enabled: Serve both HTTP and HTTPS traffic.
578
578
579
579
:return: :class:`Container <Container>`
@@ -660,7 +660,7 @@ def update_container(
660
660
:param port:
661
661
:param secret_environment_variables:
662
662
:param http_option: possible values:
663
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
663
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
664
664
- enabled: Serve both HTTP and HTTPS traffic.
665
665
666
666
:return: :class:`Container <Container>`
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ class Container:
219
219
http_option : ContainerHttpOption
220
220
"""
221
221
possible values:
222
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
222
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
223
223
- enabled: Serve both HTTP and HTTPS traffic.
224
224
225
225
"""
@@ -576,7 +576,7 @@ class CreateContainerRequest:
576
576
http_option : ContainerHttpOption
577
577
"""
578
578
possible values:
579
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
579
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
580
580
- enabled: Serve both HTTP and HTTPS traffic.
581
581
582
582
"""
@@ -620,7 +620,7 @@ class UpdateContainerRequest:
620
620
http_option : ContainerHttpOption
621
621
"""
622
622
possible values:
623
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
623
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
624
624
- enabled: Serve both HTTP and HTTPS traffic.
625
625
626
626
"""
Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ def create_function(
608
608
:param description:
609
609
:param secret_environment_variables:
610
610
:param http_option: possible values:
611
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
611
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
612
612
- enabled: Serve both HTTP and HTTPS traffic.
613
613
614
614
:return: :class:`Function <Function>`
@@ -689,7 +689,7 @@ def update_function(
689
689
:param description:
690
690
:param secret_environment_variables:
691
691
:param http_option: possible values:
692
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
692
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
693
693
- enabled: Serve both HTTP and HTTPS traffic.
694
694
695
695
:return: :class:`Function <Function>`
Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ class Function:
396
396
http_option : FunctionHttpOption
397
397
"""
398
398
possible values:
399
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
399
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
400
400
- enabled: Serve both HTTP and HTTPS traffic.
401
401
402
402
"""
@@ -892,7 +892,7 @@ class CreateFunctionRequest:
892
892
http_option : FunctionHttpOption
893
893
"""
894
894
possible values:
895
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
895
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
896
896
- enabled: Serve both HTTP and HTTPS traffic.
897
897
898
898
"""
@@ -932,7 +932,7 @@ class UpdateFunctionRequest:
932
932
http_option : FunctionHttpOption
933
933
"""
934
934
possible values:
935
- - redirected: Responds to HTTP request with a 302 redirect to ask the clients to use HTTPS.
935
+ - redirected: Responds to HTTP request with a 301 redirect to ask the clients to use HTTPS.
936
936
- enabled: Serve both HTTP and HTTPS traffic.
937
937
938
938
"""
You can’t perform that action at this time.
0 commit comments