@azure/arm-datafactory 11.0.0-alpha.20230302.1 → 11.1.0-alpha.20230315.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,7 +32,7 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
32
32
  requestContentType: "application/json; charset=utf-8",
33
33
  credential: credentials
34
34
  };
35
- const packageDetails = `azsdk-js-arm-datafactory/11.0.0`;
35
+ const packageDetails = `azsdk-js-arm-datafactory/11.1.0`;
36
36
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
37
37
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
38
38
  : `${packageDetails}`;
@@ -3678,7 +3678,7 @@ export interface AzureBlobFSLinkedService extends LinkedService {
3678
3678
  /** Polymorphic discriminator, which specifies the different types this object can be */
3679
3679
  type: "AzureBlobFS";
3680
3680
  /** Endpoint for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string). */
3681
- url: any;
3681
+ url?: any;
3682
3682
  /** Account key for the Azure Data Lake Storage Gen2 service. Type: string (or Expression with resultType string). */
3683
3683
  accountKey?: any;
3684
3684
  /** The ID of the application used to authenticate against the Azure Data Lake Storage Gen2 account. Type: string (or Expression with resultType string). */
@@ -3697,6 +3697,10 @@ export interface AzureBlobFSLinkedService extends LinkedService {
3697
3697
  servicePrincipalCredentialType?: any;
3698
3698
  /** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
3699
3699
  servicePrincipalCredential?: SecretBaseUnion;
3700
+ /** SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference. */
3701
+ sasUri?: any;
3702
+ /** The Azure key vault secret reference of sasToken in sas uri. */
3703
+ sasToken?: SecretBaseUnion;
3700
3704
  }
3701
3705
  /** Office365 linked service. */
3702
3706
  export interface Office365LinkedService extends LinkedService {