@@ -1011,6 +1011,7 @@ def test_get_instance(request_type, transport: str = "grpc"):
1011
1011
display_name = "display_name_value" ,
1012
1012
state = instance .Instance .State .READY ,
1013
1013
type_ = instance .Instance .Type .PRODUCTION ,
1014
+ satisfies_pzs = True ,
1014
1015
)
1015
1016
response = client .get_instance (request )
1016
1017
@@ -1025,6 +1026,7 @@ def test_get_instance(request_type, transport: str = "grpc"):
1025
1026
assert response .display_name == "display_name_value"
1026
1027
assert response .state == instance .Instance .State .READY
1027
1028
assert response .type_ == instance .Instance .Type .PRODUCTION
1029
+ assert response .satisfies_pzs is True
1028
1030
1029
1031
1030
1032
def test_get_instance_empty_call ():
@@ -1066,6 +1068,7 @@ async def test_get_instance_async(
1066
1068
display_name = "display_name_value" ,
1067
1069
state = instance .Instance .State .READY ,
1068
1070
type_ = instance .Instance .Type .PRODUCTION ,
1071
+ satisfies_pzs = True ,
1069
1072
)
1070
1073
)
1071
1074
response = await client .get_instance (request )
@@ -1081,6 +1084,7 @@ async def test_get_instance_async(
1081
1084
assert response .display_name == "display_name_value"
1082
1085
assert response .state == instance .Instance .State .READY
1083
1086
assert response .type_ == instance .Instance .Type .PRODUCTION
1087
+ assert response .satisfies_pzs is True
1084
1088
1085
1089
1086
1090
@pytest .mark .asyncio
@@ -1490,6 +1494,7 @@ def test_update_instance(request_type, transport: str = "grpc"):
1490
1494
display_name = "display_name_value" ,
1491
1495
state = instance .Instance .State .READY ,
1492
1496
type_ = instance .Instance .Type .PRODUCTION ,
1497
+ satisfies_pzs = True ,
1493
1498
)
1494
1499
response = client .update_instance (request )
1495
1500
@@ -1504,6 +1509,7 @@ def test_update_instance(request_type, transport: str = "grpc"):
1504
1509
assert response .display_name == "display_name_value"
1505
1510
assert response .state == instance .Instance .State .READY
1506
1511
assert response .type_ == instance .Instance .Type .PRODUCTION
1512
+ assert response .satisfies_pzs is True
1507
1513
1508
1514
1509
1515
def test_update_instance_empty_call ():
@@ -1544,6 +1550,7 @@ async def test_update_instance_async(
1544
1550
display_name = "display_name_value" ,
1545
1551
state = instance .Instance .State .READY ,
1546
1552
type_ = instance .Instance .Type .PRODUCTION ,
1553
+ satisfies_pzs = True ,
1547
1554
)
1548
1555
)
1549
1556
response = await client .update_instance (request )
@@ -1559,6 +1566,7 @@ async def test_update_instance_async(
1559
1566
assert response .display_name == "display_name_value"
1560
1567
assert response .state == instance .Instance .State .READY
1561
1568
assert response .type_ == instance .Instance .Type .PRODUCTION
1569
+ assert response .satisfies_pzs is True
1562
1570
1563
1571
1564
1572
@pytest .mark .asyncio
0 commit comments