Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update azure key vault connector #804

Merged
merged 1 commit into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openapi/azure.keyvault/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "azure.keyvault"
icon = "icon.png"
distribution = "2201.4.1"
repository = "https://github.com/ballerina-platform/openapi-connectors/tree/main/openapi/azure.keyvault"
version = "1.5.1"
version = "1.6.1"
authors = ["Ballerina"]
[build-options]
observabilityIncluded = true
4 changes: 2 additions & 2 deletions openapi/azure.keyvault/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ import ballerinax/azure.keyvault;
### Step 2 - Create a new connector instance
You can now make the connection configuration using the access token.
```ballerina
keyvault:ClientConfig clientConfig = {
keyvault:ConnectionConfig connectionConfig = {
auth : {
token: token
}
};

keyvault:Client baseClient = check new Client(clientConfig, serviceUrl = "{vaultBaseUrl}");
keyvault:Client baseClient = check new Client(connectionConfig, serviceUrl = "{vaultBaseUrl}");
```
### Step 3 - Invoke connector operation

Expand Down
13 changes: 13 additions & 0 deletions openapi/azure.keyvault/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ info:
x-tags:
- Azure
- Microsoft
x-ballerina-http-configurations:
httpVersion: "1.1"
paths:
/certificates:
get:
Expand Down Expand Up @@ -5317,6 +5319,7 @@ components:
type: string
description: The URL to get the next set of certificate issuers.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of certificate issuers
Expand Down Expand Up @@ -5379,6 +5382,7 @@ components:
type: string
description: The URL to get the next set of certificates.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of certificates in the
Expand Down Expand Up @@ -5545,6 +5549,7 @@ components:
type: string
description: The URL to get the next set of deleted certificates.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of deleted certificates
Expand All @@ -5570,6 +5575,7 @@ components:
type: string
description: The URL to get the next set of deleted keys.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of deleted keys in the
Expand All @@ -5595,6 +5601,7 @@ components:
type: string
description: The URL to get the next set of deleted SAS definitions.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of the deleted SAS definitions
Expand All @@ -5619,6 +5626,7 @@ components:
type: string
description: The URL to get the next set of deleted secrets.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of the deleted secrets
Expand All @@ -5644,6 +5652,7 @@ components:
type: string
description: The URL to get the next set of deleted storage accounts.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of the deleted storage
Expand Down Expand Up @@ -5963,6 +5972,7 @@ components:
type: string
description: The URL to get the next set of keys.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of keys in the key vault
Expand Down Expand Up @@ -6364,6 +6374,7 @@ components:
type: string
description: The URL to get the next set of SAS definitions.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of SAS definitions along
Expand Down Expand Up @@ -6464,6 +6475,7 @@ components:
type: string
description: The URL to get the next set of secrets.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of secrets in the key
Expand Down Expand Up @@ -6676,6 +6688,7 @@ components:
type: string
description: The URL to get the next set of storage accounts.
readOnly: true
nullable: true
value:
type: array
description: A response message containing a list of storage accounts in
Expand Down
Loading
Loading