Skip to content

Commit

Permalink
Fix AzureStorageApiModule bug (#24419)
Browse files Browse the repository at this point in the history
* fix arg default val

* fix arg default val
  • Loading branch information
ilappe committed Feb 7, 2023
1 parent 0017a96 commit a8210fb
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 5 deletions.
Expand Up @@ -13,7 +13,7 @@ class MicrosoftStorageClient(BaseClient):

def __init__(self, server_url, verify, proxy,
account_sas_token, storage_account_name,
api_version, managed_identities_client_id):
api_version, managed_identities_client_id: Optional[str] = None):
super().__init__(base_url=server_url, verify=verify, proxy=proxy)
self._account_sas_token = account_sas_token
self._storage_account_name = storage_account_name
Expand Down
4 changes: 4 additions & 0 deletions Packs/AzureStorageContainer/ReleaseNotes/1_0_8.md
@@ -0,0 +1,4 @@

#### Integrations
##### Azure Storage Container
Updated the MicrosoftAzureStorageApiModule.
2 changes: 1 addition & 1 deletion Packs/AzureStorageContainer/pack_metadata.json
Expand Up @@ -2,7 +2,7 @@
"name": "Azure Storage Container",
"description": "Create and Manage Azure Storage Container services.",
"support": "xsoar",
"currentVersion": "1.0.7",
"currentVersion": "1.0.8",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
4 changes: 4 additions & 0 deletions Packs/AzureStorageFileShare/ReleaseNotes/1_0_6.md
@@ -0,0 +1,4 @@

#### Integrations
##### Azure Storage FileShare
Updated the MicrosoftAzureStorageApiModule.
2 changes: 1 addition & 1 deletion Packs/AzureStorageFileShare/pack_metadata.json
Expand Up @@ -2,7 +2,7 @@
"name": "Azure Storage FileShare",
"description": "Create and Manage Azure FileShare Files and Directories.",
"support": "xsoar",
"currentVersion": "1.0.5",
"currentVersion": "1.0.6",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
4 changes: 4 additions & 0 deletions Packs/AzureStorageQueue/ReleaseNotes/1_0_6.md
@@ -0,0 +1,4 @@

#### Integrations
##### Azure Storage Queue
Updated the MicrosoftAzureStorageApiModule.
2 changes: 1 addition & 1 deletion Packs/AzureStorageQueue/pack_metadata.json
Expand Up @@ -2,7 +2,7 @@
"name": "Azure Storage Queue",
"description": "Create and Manage Azure Storage Queues and Messages.",
"support": "xsoar",
"currentVersion": "1.0.5",
"currentVersion": "1.0.6",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
4 changes: 4 additions & 0 deletions Packs/AzureStorageTable/ReleaseNotes/1_0_6.md
@@ -0,0 +1,4 @@

#### Integrations
##### Azure Storage Table
Updated the MicrosoftAzureStorageApiModule.
2 changes: 1 addition & 1 deletion Packs/AzureStorageTable/pack_metadata.json
Expand Up @@ -2,7 +2,7 @@
"name": "Azure Storage Table",
"description": "Create and Manage Azure Storage Tables and Entities.",
"support": "xsoar",
"currentVersion": "1.0.5",
"currentVersion": "1.0.6",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down

0 comments on commit a8210fb

Please sign in to comment.