@@ -37,14 +37,14 @@ def test_method_create_with_all_params(self, client: Gitpod) -> None:
37
37
runner = client .runners .create (
38
38
kind = "RUNNER_KIND_UNSPECIFIED" ,
39
39
name = "Production Runner" ,
40
- provider = "RUNNER_PROVIDER_UNSPECIFIED " ,
40
+ provider = "RUNNER_PROVIDER_AWS_EC2 " ,
41
41
spec = {
42
42
"configuration" : {
43
43
"auto_update" : True ,
44
44
"region" : "us-west" ,
45
- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
45
+ "release_channel" : "RUNNER_RELEASE_CHANNEL_STABLE " ,
46
46
},
47
- "desired_phase" : "RUNNER_PHASE_UNSPECIFIED " ,
47
+ "desired_phase" : "RUNNER_PHASE_ACTIVE " ,
48
48
},
49
49
)
50
50
assert_matches_type (RunnerCreateResponse , runner , path = ["response" ])
@@ -122,7 +122,7 @@ def test_method_update_with_all_params(self, client: Gitpod) -> None:
122
122
spec = {
123
123
"configuration" : {
124
124
"auto_update" : True ,
125
- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
125
+ "release_channel" : "RUNNER_RELEASE_CHANNEL_LATEST " ,
126
126
},
127
127
"desired_phase" : "RUNNER_PHASE_UNSPECIFIED" ,
128
128
},
@@ -166,7 +166,7 @@ def test_method_list_with_all_params(self, client: Gitpod) -> None:
166
166
filter = {
167
167
"creator_ids" : ["182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ],
168
168
"kinds" : ["RUNNER_KIND_UNSPECIFIED" ],
169
- "providers" : ["RUNNER_PROVIDER_UNSPECIFIED " ],
169
+ "providers" : ["RUNNER_PROVIDER_AWS_EC2 " ],
170
170
},
171
171
pagination = {
172
172
"token" : "token" ,
@@ -360,14 +360,14 @@ async def test_method_create_with_all_params(self, async_client: AsyncGitpod) ->
360
360
runner = await async_client .runners .create (
361
361
kind = "RUNNER_KIND_UNSPECIFIED" ,
362
362
name = "Production Runner" ,
363
- provider = "RUNNER_PROVIDER_UNSPECIFIED " ,
363
+ provider = "RUNNER_PROVIDER_AWS_EC2 " ,
364
364
spec = {
365
365
"configuration" : {
366
366
"auto_update" : True ,
367
367
"region" : "us-west" ,
368
- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
368
+ "release_channel" : "RUNNER_RELEASE_CHANNEL_STABLE " ,
369
369
},
370
- "desired_phase" : "RUNNER_PHASE_UNSPECIFIED " ,
370
+ "desired_phase" : "RUNNER_PHASE_ACTIVE " ,
371
371
},
372
372
)
373
373
assert_matches_type (RunnerCreateResponse , runner , path = ["response" ])
@@ -445,7 +445,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncGitpod) ->
445
445
spec = {
446
446
"configuration" : {
447
447
"auto_update" : True ,
448
- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
448
+ "release_channel" : "RUNNER_RELEASE_CHANNEL_LATEST " ,
449
449
},
450
450
"desired_phase" : "RUNNER_PHASE_UNSPECIFIED" ,
451
451
},
@@ -489,7 +489,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncGitpod) -> N
489
489
filter = {
490
490
"creator_ids" : ["182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ],
491
491
"kinds" : ["RUNNER_KIND_UNSPECIFIED" ],
492
- "providers" : ["RUNNER_PROVIDER_UNSPECIFIED " ],
492
+ "providers" : ["RUNNER_PROVIDER_AWS_EC2 " ],
493
493
},
494
494
pagination = {
495
495
"token" : "token" ,
0 commit comments