@@ -37,14 +37,14 @@ def test_method_create_with_all_params(self, client: Gitpod) -> None:
3737 runner = client .runners .create (
3838 kind = "RUNNER_KIND_UNSPECIFIED" ,
3939 name = "Production Runner" ,
40- provider = "RUNNER_PROVIDER_UNSPECIFIED " ,
40+ provider = "RUNNER_PROVIDER_AWS_EC2 " ,
4141 spec = {
4242 "configuration" : {
4343 "auto_update" : True ,
4444 "region" : "us-west" ,
45- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
45+ "release_channel" : "RUNNER_RELEASE_CHANNEL_STABLE " ,
4646 },
47- "desired_phase" : "RUNNER_PHASE_UNSPECIFIED " ,
47+ "desired_phase" : "RUNNER_PHASE_ACTIVE " ,
4848 },
4949 )
5050 assert_matches_type (RunnerCreateResponse , runner , path = ["response" ])
@@ -122,7 +122,7 @@ def test_method_update_with_all_params(self, client: Gitpod) -> None:
122122 spec = {
123123 "configuration" : {
124124 "auto_update" : True ,
125- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
125+ "release_channel" : "RUNNER_RELEASE_CHANNEL_LATEST " ,
126126 },
127127 "desired_phase" : "RUNNER_PHASE_UNSPECIFIED" ,
128128 },
@@ -166,7 +166,7 @@ def test_method_list_with_all_params(self, client: Gitpod) -> None:
166166 filter = {
167167 "creator_ids" : ["182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ],
168168 "kinds" : ["RUNNER_KIND_UNSPECIFIED" ],
169- "providers" : ["RUNNER_PROVIDER_UNSPECIFIED " ],
169+ "providers" : ["RUNNER_PROVIDER_AWS_EC2 " ],
170170 },
171171 pagination = {
172172 "token" : "token" ,
@@ -360,14 +360,14 @@ async def test_method_create_with_all_params(self, async_client: AsyncGitpod) ->
360360 runner = await async_client .runners .create (
361361 kind = "RUNNER_KIND_UNSPECIFIED" ,
362362 name = "Production Runner" ,
363- provider = "RUNNER_PROVIDER_UNSPECIFIED " ,
363+ provider = "RUNNER_PROVIDER_AWS_EC2 " ,
364364 spec = {
365365 "configuration" : {
366366 "auto_update" : True ,
367367 "region" : "us-west" ,
368- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
368+ "release_channel" : "RUNNER_RELEASE_CHANNEL_STABLE " ,
369369 },
370- "desired_phase" : "RUNNER_PHASE_UNSPECIFIED " ,
370+ "desired_phase" : "RUNNER_PHASE_ACTIVE " ,
371371 },
372372 )
373373 assert_matches_type (RunnerCreateResponse , runner , path = ["response" ])
@@ -445,7 +445,7 @@ async def test_method_update_with_all_params(self, async_client: AsyncGitpod) ->
445445 spec = {
446446 "configuration" : {
447447 "auto_update" : True ,
448- "release_channel" : "RUNNER_RELEASE_CHANNEL_UNSPECIFIED " ,
448+ "release_channel" : "RUNNER_RELEASE_CHANNEL_LATEST " ,
449449 },
450450 "desired_phase" : "RUNNER_PHASE_UNSPECIFIED" ,
451451 },
@@ -489,7 +489,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncGitpod) -> N
489489 filter = {
490490 "creator_ids" : ["182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e" ],
491491 "kinds" : ["RUNNER_KIND_UNSPECIFIED" ],
492- "providers" : ["RUNNER_PROVIDER_UNSPECIFIED " ],
492+ "providers" : ["RUNNER_PROVIDER_AWS_EC2 " ],
493493 },
494494 pagination = {
495495 "token" : "token" ,
0 commit comments