Skip to content

Commit

Permalink
Fix DataFactory README and bump central version (#37624)
Browse files Browse the repository at this point in the history
* Fix DataFactory README and bump central version

* fix spacing
  • Loading branch information
JoshLove-msft authored Jul 14, 2023
1 parent 1525950 commit 561a3ce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<PackageReference Update="Azure.Core" Version="1.34.0" />
<PackageReference Update="Azure.Core.Amqp" Version="1.3.0" />
<PackageReference Update="Azure.Core.Experimental" Version="0.1.0-preview.28" />
<PackageReference Update="Azure.Core.Expressions.DataFactory" Version="1.0.0-beta.3" />
<PackageReference Update="Azure.Core.Expressions.DataFactory" Version="1.0.0-beta.4" />
<PackageReference Update="Azure.Data.SchemaRegistry" Version="1.2.0" />
<PackageReference Update="Azure.Data.Tables" Version="12.8.0" />
<PackageReference Update="Azure.Messaging.EventHubs" Version="5.9.2" />
Expand Down
10 changes: 7 additions & 3 deletions sdk/core/Azure.Core.Expressions.DataFactory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,18 @@ When a secure string is used, the value is return masked with '*' characters whe

```json
"folderpath": {
"type": "AzureKeyVaultSecretReference",
"value": "@Microsoft.KeyVault(SecretUri=https://myvault.vault.azure.net/secrets/mysecret/)"
"type": "AzureKeyVaultSecret",
"store": {
"type": "LinkedServiceReference",
"referenceName": "someReferenceName"
},
"secretName": "someSecretName",
"secretVersion": "someSecretVersion"
}
```

A Key Vault Reference can be used to specify a Key Vault where the value of the property is stored.


### DataFactoryElement<T>

The `DataFactoryElement<T>` class allows us to model the literal value expected by this property using strongly typed practices.
Expand Down

0 comments on commit 561a3ce

Please sign in to comment.