Skip to content

Commit f03b71b

Browse files
Chronicle Teamakshita-dudani
authored andcommitted
No public description
PiperOrigin-RevId: 588977807
1 parent d53345c commit f03b71b

23 files changed

+31
-26
lines changed

common/options.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@
1919
from common import chronicle_auth
2020

2121
REGION_LIST = [
22+
"ASIA-SOUTH1",
2223
"ASIA-SOUTHEAST1",
2324
"AUSTRALIA-SOUTHEAST1",
2425
"EUROPE",
2526
"EUROPE-WEST2",
27+
"EUROPE-WEST3",
2628
"EUROPE-WEST6",
29+
"ME-CENTRAL2",
2730
"ME-WEST1",
2831
"US",
2932
]

parsers/commands/activate_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def activate_parser(
7373
return
7474

7575
if not project_id:
76-
click.echo("Project ID not provided. Please enter Porject ID")
76+
click.echo("Project ID not provided. Please enter Project ID")
7777
return
7878

7979
if not customer_id:

parsers/commands/activate_parser_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_activate_parser_empty_project_id(
106106
mock_http_session.return_value = client
107107
result = runner.invoke(activate_parser.activate_parser, [
108108
"--v2", "--env", "PROD", "--region", "US"])
109-
assert """Project ID not provided. Please enter Porject ID
109+
assert """Project ID not provided. Please enter Project ID
110110
""" == result.output
111111

112112

parsers/commands/deactivate_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def deactivate_parser(
7373
return
7474

7575
if not project_id:
76-
click.echo("Project ID not provided. Please enter Porject ID")
76+
click.echo("Project ID not provided. Please enter Project ID")
7777
return
7878

7979
if not customer_id:

parsers/commands/deactivate_parser_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def test_deactivate_parser_empty_project_id(
108108
mock_http_session.return_value = client
109109
result = runner.invoke(deactivate_parser.deactivate_parser, [
110110
"--v2", "--env", "PROD", "--region", "US"])
111-
assert """Project ID not provided. Please enter Porject ID
111+
assert """Project ID not provided. Please enter Project ID
112112
""" == result.output
113113

114114

parsers/commands/delete_extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def delete_extension(
7373
return
7474

7575
if not project_id:
76-
click.echo("Project ID not provided. Please enter Porject ID")
76+
click.echo("Project ID not provided. Please enter Project ID")
7777
return
7878

7979
if not customer_id:

parsers/commands/delete_extension_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def test_delete_extension_empty_project_id(
107107
mock_http_session.return_value = client
108108
result = runner.invoke(delete_extension.delete_extension, [
109109
"--v2", "--env", "PROD", "--region", "US"])
110-
assert """Project ID not provided. Please enter Porject ID
110+
assert """Project ID not provided. Please enter Project ID
111111
""" == result.output
112112

113113

parsers/commands/delete_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def delete_parser(
7373
return
7474

7575
if not project_id:
76-
click.echo("Project ID not provided. Please enter Porject ID")
76+
click.echo("Project ID not provided. Please enter Project ID")
7777
return
7878

7979
if not customer_id:

parsers/commands/delete_parser_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_delete_parser_empty_project_id(
106106
mock_http_session.return_value = client
107107
result = runner.invoke(delete_parser.delete_parser, [
108108
"--v2", "--env", "PROD", "--region", "US"])
109-
assert """Project ID not provided. Please enter Porject ID
109+
assert """Project ID not provided. Please enter Project ID
110110
""" == result.output
111111

112112

parsers/commands/get_extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def get_extension(
9191
return
9292

9393
if not project_id:
94-
click.echo("Project ID not provided. Please enter Porject ID")
94+
click.echo("Project ID not provided. Please enter Project ID")
9595
return
9696

9797
if not customer_id:

0 commit comments

Comments
 (0)