@@ -183,8 +183,8 @@ def delete_share_cli(api_client, name):
183183@click .option ('--name' , required = True , help = 'Name of new recipient.' )
184184@click .option ('--comment' , default = None , required = False ,
185185 help = 'Free-form text description.' )
186- @click .option ('--sharing-code ' , default = None , required = False ,
187- help = 'A one-time sharing code shared by the data recipient offline.' )
186+ @click .option ('--sharing-id ' , default = None , required = False ,
187+ help = 'The sharing identifier provided by the data recipient offline.' )
188188@click .option ('--allowed_ip_address' , default = None , required = False , multiple = True ,
189189 help = (
190190 'IP address in CIDR notation that is allowed to use delta sharing. '
@@ -193,12 +193,12 @@ def delete_share_cli(api_client, name):
193193@profile_option
194194@eat_exceptions
195195@provide_api_client
196- def create_recipient_cli (api_client , name , comment , sharing_code , allowed_ip_address ):
196+ def create_recipient_cli (api_client , name , comment , sharing_id , allowed_ip_address ):
197197 """
198198 Create a new recipient.
199199 """
200200 recipient_json = UnityCatalogApi (api_client ).create_recipient (
201- name , comment , sharing_code , allowed_ip_address )
201+ name , comment , sharing_id , allowed_ip_address )
202202 click .echo (mc_pretty_format (recipient_json ))
203203
204204
0 commit comments