@@ -50,45 +50,45 @@ def load_command_table(self, _):
50
50
with self .command_group ('containerapp env dapr-component' ) as g :
51
51
g .custom_command ('init' , 'init_dapr_components' , is_preview = True )
52
52
53
- with self .command_group ('containerapp service' , deprecate_info = self .deprecate (redirect = 'containerapp add-on' , expiration = '2.56 .1' , hide = True ), is_preview = True ) as g :
53
+ with self .command_group ('containerapp service' , deprecate_info = self .deprecate (redirect = 'containerapp add-on' , expiration = '2.58 .1' , hide = True ), is_preview = True ) as g :
54
54
g .custom_command ('list' , 'list_all_services' )
55
55
56
56
with self .command_group ('containerapp add-on' , is_preview = True ) as g :
57
57
g .custom_command ('list' , 'list_all_services' )
58
58
59
- with self .command_group ('containerapp service redis' , deprecate_info = self .deprecate (redirect = 'containerapp add-on redis' , expiration = '2.56 .1' , hide = True )) as g :
59
+ with self .command_group ('containerapp service redis' , deprecate_info = self .deprecate (redirect = 'containerapp add-on redis' , expiration = '2.58 .1' , hide = True )) as g :
60
60
g .custom_command ('create' , 'create_redis_service' , supports_no_wait = True )
61
61
g .custom_command ('delete' , 'delete_redis_service' , confirmation = True , supports_no_wait = True )
62
62
63
63
with self .command_group ('containerapp add-on redis' ) as g :
64
64
g .custom_command ('create' , 'create_redis_service' , supports_no_wait = True )
65
65
g .custom_command ('delete' , 'delete_redis_service' , confirmation = True , supports_no_wait = True )
66
66
67
- with self .command_group ('containerapp service postgres' , deprecate_info = self .deprecate (redirect = 'containerapp add-on postgres' , expiration = '2.56 .1' , hide = True )) as g :
67
+ with self .command_group ('containerapp service postgres' , deprecate_info = self .deprecate (redirect = 'containerapp add-on postgres' , expiration = '2.58 .1' , hide = True )) as g :
68
68
g .custom_command ('create' , 'create_postgres_service' , supports_no_wait = True )
69
69
g .custom_command ('delete' , 'delete_postgres_service' , confirmation = True , supports_no_wait = True )
70
70
71
71
with self .command_group ('containerapp add-on postgres' ) as g :
72
72
g .custom_command ('create' , 'create_postgres_service' , supports_no_wait = True )
73
73
g .custom_command ('delete' , 'delete_postgres_service' , confirmation = True , supports_no_wait = True )
74
74
75
- with self .command_group ('containerapp service kafka' , deprecate_info = self .deprecate (redirect = 'containerapp add-on kafka' , expiration = '2.56.1 ' , hide = True )) as g :
75
+ with self .command_group ('containerapp service kafka' , deprecate_info = self .deprecate (redirect = 'containerapp add-on kafka' , expiration = '2.59.0 ' , hide = True )) as g :
76
76
g .custom_command ('create' , 'create_kafka_service' , supports_no_wait = True )
77
77
g .custom_command ('delete' , 'delete_kafka_service' , confirmation = True , supports_no_wait = True )
78
78
79
79
with self .command_group ('containerapp add-on kafka' ) as g :
80
80
g .custom_command ('create' , 'create_kafka_service' , supports_no_wait = True )
81
81
g .custom_command ('delete' , 'delete_kafka_service' , confirmation = True , supports_no_wait = True )
82
82
83
- with self .command_group ('containerapp service mariadb' , deprecate_info = self .deprecate (redirect = 'containerapp add-on mariadb' , expiration = '2.56.1 ' , hide = True )) as g :
83
+ with self .command_group ('containerapp service mariadb' , deprecate_info = self .deprecate (redirect = 'containerapp add-on mariadb' , expiration = '2.59.0 ' , hide = True )) as g :
84
84
g .custom_command ('create' , 'create_mariadb_service' , supports_no_wait = True )
85
85
g .custom_command ('delete' , 'delete_mariadb_service' , confirmation = True , supports_no_wait = True )
86
86
87
87
with self .command_group ('containerapp add-on mariadb' ) as g :
88
88
g .custom_command ('create' , 'create_mariadb_service' , supports_no_wait = True )
89
89
g .custom_command ('delete' , 'delete_mariadb_service' , confirmation = True , supports_no_wait = True )
90
90
91
- with self .command_group ('containerapp service qdrant' , deprecate_info = self .deprecate (redirect = 'containerapp add-on qdrant' , expiration = '2.56.1 ' , hide = True )) as g :
91
+ with self .command_group ('containerapp service qdrant' , deprecate_info = self .deprecate (redirect = 'containerapp add-on qdrant' , expiration = '2.59.0 ' , hide = True )) as g :
92
92
g .custom_command ('create' , 'create_qdrant_service' , supports_no_wait = True )
93
93
g .custom_command ('delete' , 'delete_qdrant_service' , confirmation = True , supports_no_wait = True )
94
94
0 commit comments