You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
getAccessToken(resource: String): returns AAD token for a given resource.
61
+
getAADToken(tenantId: String, clientId: String, clientSecret: String, resource: String): returns AAD token for a given clientId and resource.
62
+
isValidToken(token: String): returns true if token hasn't expired.
63
+
getConnectionString(linkedService: String): returns connection string or credentials for the linked service.
64
+
getConnectionStringAsMap(linkedService: String): returns connection string as a map.
65
+
getFullConnectionString(linkedService: String): returns full connection string for the linked service.
66
+
getFullConnectionStringAsMap(linkedService: String): returns full connection string as a map.
67
+
getPropertiesAll(linkedService: String): returns all the properties of the linked service.
68
+
getPropertiesAsMap(linkedService: String): returns all the properties of the linked service as a Map[String, Any]
69
+
getSecret(akvName: String, secret: String, linkedService: String): returns AKV secret for a given akvName, secret key and AKV linked service using workspace MSI.
70
+
getSecret(akvName: String, secret: String): returns AKV secret for a given akvName, secret key using user credentials.
71
+
getSecretWithLS(linkedService: String, secret: String): returns AKV secret for a given AKV linked service, secret key.
72
+
putSecret(akvName: String, secretName: String, secretValue: String): puts AKV secret for a given akvName, secret name.
73
+
putSecretWithLS(linkedService: String, secretName: String, secretValue: String): puts AKV secret for a given linked service, secret name.
0 commit comments