Skip to content

Commit 8ddb455

Browse files
committed
[Synapse] Update azure synapse artifact version to 0.21.0
1 parent a6798ae commit 8ddb455

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -943,6 +943,7 @@ def load_arguments(self, _):
943943
c.argument('description', help='The integration runtime description.')
944944
c.argument('if_match', help='ETag of the integration runtime entity. Should only be specified for update, for '
945945
'which it should match existing entity or can be * for unconditional update.')
946+
c.argument('enableselfcontainedia', options_list=['--enable-self-contained-interactive-authoring', '--enable-scia'], help='An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.')
946947

947948
with self.argument_context('synapse integration-runtime update') as c:
948949
c.argument('auto_update', arg_type=get_enum_type(['On', 'Off']), help='Enable or disable the self-hosted integration runtime auto-update.')

src/azure-cli/azure/cli/command_modules/synapse/manual/operations/integrationruntime.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@ def Managed_Create(cmd, client, resource_group_name, workspace_name, integration
4646

4747

4848
def Selfhosted_Create(cmd, client, resource_group_name, workspace_name, integration_runtime_name,
49-
description=None, if_match=None, no_wait=False):
49+
description=None, if_match=None, no_wait=False, enableselfcontainedia=None):
5050
property_files = {}
5151
property_files['type'] = 'SelfHosted'
5252
property_files['description'] = description
53+
property_files['selfContainedInteractiveAuthoringEnabled'] = enableselfcontainedia
5354
properties = IntegrationRuntimeResource(type='SelfHosted', properties=property_files)
5455
return sdk_no_wait(no_wait, client.begin_create, resource_group_name, workspace_name,
5556
integration_runtime_name, properties, if_match)

src/azure-cli/requirements.py3.Darwin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ azure-multiapi-storage==1.4.0
8484
azure-nspkg==3.0.2
8585
azure-storage-common==1.4.2
8686
azure-synapse-accesscontrol==0.5.0
87-
azure-synapse-artifacts==0.20.0
87+
azure-synapse-artifacts==0.21.0
8888
azure-synapse-managedprivateendpoints==0.4.0
8989
azure-synapse-spark==0.7.0
9090
bcrypt==3.2.0

src/azure-cli/requirements.py3.Linux.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ azure-multiapi-storage==1.4.0
8484
azure-nspkg==3.0.2
8585
azure-storage-common==1.4.2
8686
azure-synapse-accesscontrol==0.5.0
87-
azure-synapse-artifacts==0.20.0
87+
azure-synapse-artifacts==0.21.0
8888
azure-synapse-managedprivateendpoints==0.4.0
8989
azure-synapse-spark==0.7.0
9090
bcrypt==3.2.0

src/azure-cli/requirements.py3.windows.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ azure-multiapi-storage==1.4.0
8484
azure-nspkg==3.0.2
8585
azure-storage-common==1.4.2
8686
azure-synapse-accesscontrol==0.5.0
87-
azure-synapse-artifacts==0.20.0
87+
azure-synapse-artifacts==0.21.0
8888
azure-synapse-managedprivateendpoints==0.4.0
8989
azure-synapse-spark==0.7.0
9090
bcrypt==3.2.0

src/azure-cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
'azure-multiapi-storage==1.4.0',
127127
'azure-storage-common~=1.4',
128128
'azure-synapse-accesscontrol~=0.5.0',
129-
'azure-synapse-artifacts~=0.20.0',
129+
'azure-synapse-artifacts~=0.21.0',
130130
'azure-synapse-managedprivateendpoints~=0.4.0',
131131
'azure-synapse-spark~=0.7.0',
132132
'chardet~=5.2.0',

0 commit comments

Comments
 (0)