ZiWei Chen 2024-04-26 11:43:52 +08:00 коммит произвёл GitHub
Родитель e74a13865c
Коммит 3ec271ea76
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
222 изменённых файлов: 325 добавлений и 289 удалений

Просмотреть файл

@ -1,15 +1,33 @@
# Release History
## 15.0.0 (2024-04-12)
**Features**
## 14.1.1 (Unreleased)
- Added Interface ServicePrincipalCredentialResource
- Type of parameter headers of interface AzureFunctionActivity is changed from {
[propertyName: string]: string;
} to {
[propertyName: string]: any;
}
- Type of parameter headers of interface WebActivity is changed from {
[propertyName: string]: string;
} to {
[propertyName: string]: any;
}
- Type of parameter headers of interface WebHookActivity is changed from {
[propertyName: string]: string;
} to {
[propertyName: string]: any;
}
### Features Added
### Breaking Changes
### Bugs Fixed
### Other Changes
**Breaking Changes**
- Operation CredentialOperations.createOrUpdate has a new signature
- Interface ManagedIdentityCredential no longer has parameter resourceId
- Type of parameter value of interface CredentialListResponse is changed from ManagedIdentityCredentialResource[] to CredentialResource[]
## 14.1.0 (2024-03-11)
**Features**

Просмотреть файл

@ -1,8 +1,8 @@
{
"commit": "1a011ff0d72315ef3c530fe545c4fe82d0450201",
"commit": "106483d9f698ac3b6c0d481ab0c5fab14152e21f",
"readme": "specification/datafactory/resource-manager/readme.md",
"autorest_command": "autorest --version=3.9.7 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\Git\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\datafactory\\resource-manager\\readme.md --use=@autorest/typescript@6.0.17 --generate-sample=true",
"autorest_command": "autorest --version=3.9.7 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\Git\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\datafactory\\resource-manager\\readme.md --use=@autorest/typescript@6.0.20 --generate-sample=true",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/js-sdk-release-tools@2.7.4",
"use": "@autorest/typescript@6.0.17"
"release_tool": "@azure-tools/js-sdk-release-tools@2.7.5",
"use": "@autorest/typescript@6.0.20"
}

Просмотреть файл

@ -3,7 +3,7 @@
"sdk-type": "mgmt",
"author": "Microsoft Corporation",
"description": "A generated SDK for DataFactoryManagementClient.",
"version": "14.1.1",
"version": "15.0.0",
"engines": {
"node": ">=18.0.0"
},

Просмотреть файл

@ -747,7 +747,7 @@ export interface AzureFunctionActivity extends ExecutionActivity {
body?: any;
functionName: any;
headers?: {
[propertyName: string]: string;
[propertyName: string]: any;
};
method: AzureFunctionActivityMethod;
type: "AzureFunctionActivity";
@ -1621,15 +1621,15 @@ export { Credential_2 as Credential }
// @public
export interface CredentialListResponse {
nextLink?: string;
value: ManagedIdentityCredentialResource[];
value: CredentialResource[];
}
// @public
export interface CredentialOperations {
createOrUpdate(resourceGroupName: string, factoryName: string, credentialName: string, credential: ManagedIdentityCredentialResource, options?: CredentialOperationsCreateOrUpdateOptionalParams): Promise<CredentialOperationsCreateOrUpdateResponse>;
createOrUpdate(resourceGroupName: string, factoryName: string, credentialName: string, credential: CredentialResource, options?: CredentialOperationsCreateOrUpdateOptionalParams): Promise<CredentialOperationsCreateOrUpdateResponse>;
delete(resourceGroupName: string, factoryName: string, credentialName: string, options?: CredentialOperationsDeleteOptionalParams): Promise<void>;
get(resourceGroupName: string, factoryName: string, credentialName: string, options?: CredentialOperationsGetOptionalParams): Promise<CredentialOperationsGetResponse>;
listByFactory(resourceGroupName: string, factoryName: string, options?: CredentialOperationsListByFactoryOptionalParams): PagedAsyncIterableIterator<ManagedIdentityCredentialResource>;
listByFactory(resourceGroupName: string, factoryName: string, options?: CredentialOperationsListByFactoryOptionalParams): PagedAsyncIterableIterator<CredentialResource>;
}
// @public
@ -1638,7 +1638,7 @@ export interface CredentialOperationsCreateOrUpdateOptionalParams extends coreCl
}
// @public
export type CredentialOperationsCreateOrUpdateResponse = ManagedIdentityCredentialResource;
export type CredentialOperationsCreateOrUpdateResponse = CredentialResource;
// @public
export interface CredentialOperationsDeleteOptionalParams extends coreClient.OperationOptions {
@ -1650,7 +1650,7 @@ export interface CredentialOperationsGetOptionalParams extends coreClient.Operat
}
// @public
export type CredentialOperationsGetResponse = ManagedIdentityCredentialResource;
export type CredentialOperationsGetResponse = CredentialResource;
// @public
export interface CredentialOperationsListByFactoryNextOptionalParams extends coreClient.OperationOptions {
@ -5363,12 +5363,11 @@ export interface MagentoSource extends TabularSource {
// @public
export interface ManagedIdentityCredential extends Credential_2 {
resourceId?: string;
type: "ManagedIdentity";
}
// @public
export interface ManagedIdentityCredentialResource extends SubResource {
export interface ManagedIdentityCredentialResource extends CredentialResource {
properties: ManagedIdentityCredential;
}
@ -7620,6 +7619,11 @@ export interface ServicePrincipalCredential extends Credential_2 {
type: "ServicePrincipal";
}
// @public
export interface ServicePrincipalCredentialResource extends CredentialResource {
properties: ServicePrincipalCredential;
}
// @public
export type ServicePrincipalCredentialType = string;
@ -8885,7 +8889,7 @@ export interface WebActivity extends ExecutionActivity {
datasets?: DatasetReference[];
disableCertValidation?: boolean;
headers?: {
[propertyName: string]: string;
[propertyName: string]: any;
};
httpRequestTimeout?: any;
linkedServices?: LinkedServiceReference[];
@ -8936,7 +8940,7 @@ export interface WebHookActivity extends ControlActivity {
authentication?: WebActivityAuthentication;
body?: any;
headers?: {
[propertyName: string]: string;
[propertyName: string]: any;
};
method: WebHookActivityMethod;
policy?: SecureInputOutputPolicy;

Просмотреть файл

@ -145,108 +145,108 @@ npx cross-env DATAFACTORY_SUBSCRIPTION_ID="<datafactory subscription id>" DATAFA
Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients.
[activityrunsquerybypipelinerunsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/activityRunsQueryByPipelineRunSample.js
[changedatacapturecreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/changeDataCaptureCreateOrUpdateSample.js
[changedatacapturedeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/changeDataCaptureDeleteSample.js
[changedatacapturegetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/changeDataCaptureGetSample.js
[changedatacapturelistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/changeDataCaptureListByFactorySample.js
[changedatacapturestartsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/changeDataCaptureStartSample.js
[changedatacapturestatussample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/changeDataCaptureStatusSample.js
[changedatacapturestopsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/changeDataCaptureStopSample.js
[credentialoperationscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/credentialOperationsCreateOrUpdateSample.js
[credentialoperationsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/credentialOperationsDeleteSample.js
[credentialoperationsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/credentialOperationsGetSample.js
[credentialoperationslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/credentialOperationsListByFactorySample.js
[dataflowdebugsessionadddataflowsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowDebugSessionAddDataFlowSample.js
[dataflowdebugsessioncreatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowDebugSessionCreateSample.js
[dataflowdebugsessiondeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowDebugSessionDeleteSample.js
[dataflowdebugsessionexecutecommandsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowDebugSessionExecuteCommandSample.js
[dataflowdebugsessionquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowDebugSessionQueryByFactorySample.js
[dataflowscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowsCreateOrUpdateSample.js
[dataflowsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowsDeleteSample.js
[dataflowsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowsGetSample.js
[dataflowslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/dataFlowsListByFactorySample.js
[datasetscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/datasetsCreateOrUpdateSample.js
[datasetsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/datasetsDeleteSample.js
[datasetsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/datasetsGetSample.js
[datasetslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/datasetsListByFactorySample.js
[exposurecontrolgetfeaturevaluebyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/exposureControlGetFeatureValueByFactorySample.js
[exposurecontrolgetfeaturevaluesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/exposureControlGetFeatureValueSample.js
[exposurecontrolqueryfeaturevaluesbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/exposureControlQueryFeatureValuesByFactorySample.js
[factoriesconfigurefactoryreposample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesConfigureFactoryRepoSample.js
[factoriescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesCreateOrUpdateSample.js
[factoriesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesDeleteSample.js
[factoriesgetdataplaneaccesssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesGetDataPlaneAccessSample.js
[factoriesgetgithubaccesstokensample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesGetGitHubAccessTokenSample.js
[factoriesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesGetSample.js
[factorieslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesListByResourceGroupSample.js
[factorieslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesListSample.js
[factoriesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/factoriesUpdateSample.js
[globalparameterscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/globalParametersCreateOrUpdateSample.js
[globalparametersdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/globalParametersDeleteSample.js
[globalparametersgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/globalParametersGetSample.js
[globalparameterslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/globalParametersListByFactorySample.js
[integrationruntimenodesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimeNodesDeleteSample.js
[integrationruntimenodesgetipaddresssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimeNodesGetIPAddressSample.js
[integrationruntimenodesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimeNodesGetSample.js
[integrationruntimenodesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimeNodesUpdateSample.js
[integrationruntimeobjectmetadatagetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimeObjectMetadataGetSample.js
[integrationruntimeobjectmetadatarefreshsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimeObjectMetadataRefreshSample.js
[integrationruntimescreatelinkedintegrationruntimesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesCreateLinkedIntegrationRuntimeSample.js
[integrationruntimescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesCreateOrUpdateSample.js
[integrationruntimesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesDeleteSample.js
[integrationruntimesgetconnectioninfosample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesGetConnectionInfoSample.js
[integrationruntimesgetmonitoringdatasample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesGetMonitoringDataSample.js
[integrationruntimesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesGetSample.js
[integrationruntimesgetstatussample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesGetStatusSample.js
[integrationruntimeslistauthkeyssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesListAuthKeysSample.js
[integrationruntimeslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesListByFactorySample.js
[integrationruntimeslistoutboundnetworkdependenciesendpointssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesListOutboundNetworkDependenciesEndpointsSample.js
[integrationruntimesregenerateauthkeysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesRegenerateAuthKeySample.js
[integrationruntimesremovelinkssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesRemoveLinksSample.js
[integrationruntimesstartsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesStartSample.js
[integrationruntimesstopsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesStopSample.js
[integrationruntimessynccredentialssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesSyncCredentialsSample.js
[integrationruntimesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesUpdateSample.js
[integrationruntimesupgradesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/integrationRuntimesUpgradeSample.js
[linkedservicescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/linkedServicesCreateOrUpdateSample.js
[linkedservicesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/linkedServicesDeleteSample.js
[linkedservicesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/linkedServicesGetSample.js
[linkedserviceslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/linkedServicesListByFactorySample.js
[managedprivateendpointscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/managedPrivateEndpointsCreateOrUpdateSample.js
[managedprivateendpointsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/managedPrivateEndpointsDeleteSample.js
[managedprivateendpointsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/managedPrivateEndpointsGetSample.js
[managedprivateendpointslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/managedPrivateEndpointsListByFactorySample.js
[managedvirtualnetworkscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/managedVirtualNetworksCreateOrUpdateSample.js
[managedvirtualnetworksgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/managedVirtualNetworksGetSample.js
[managedvirtualnetworkslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/managedVirtualNetworksListByFactorySample.js
[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/operationsListSample.js
[pipelinerunscancelsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelineRunsCancelSample.js
[pipelinerunsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelineRunsGetSample.js
[pipelinerunsquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelineRunsQueryByFactorySample.js
[pipelinescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelinesCreateOrUpdateSample.js
[pipelinescreaterunsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelinesCreateRunSample.js
[pipelinesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelinesDeleteSample.js
[pipelinesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelinesGetSample.js
[pipelineslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/pipelinesListByFactorySample.js
[privateendpointconnectionslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/privateEndPointConnectionsListByFactorySample.js
[privateendpointconnectioncreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/privateEndpointConnectionCreateOrUpdateSample.js
[privateendpointconnectiondeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/privateEndpointConnectionDeleteSample.js
[privateendpointconnectiongetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/privateEndpointConnectionGetSample.js
[privatelinkresourcesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/privateLinkResourcesGetSample.js
[triggerrunscancelsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggerRunsCancelSample.js
[triggerrunsquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggerRunsQueryByFactorySample.js
[triggerrunsrerunsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggerRunsRerunSample.js
[triggerscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersCreateOrUpdateSample.js
[triggersdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersDeleteSample.js
[triggersgeteventsubscriptionstatussample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersGetEventSubscriptionStatusSample.js
[triggersgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersGetSample.js
[triggerslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersListByFactorySample.js
[triggersquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersQueryByFactorySample.js
[triggersstartsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersStartSample.js
[triggersstopsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersStopSample.js
[triggerssubscribetoeventssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersSubscribeToEventsSample.js
[triggersunsubscribefromeventssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v14/javascript/triggersUnsubscribeFromEventsSample.js
[activityrunsquerybypipelinerunsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/activityRunsQueryByPipelineRunSample.js
[changedatacapturecreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/changeDataCaptureCreateOrUpdateSample.js
[changedatacapturedeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/changeDataCaptureDeleteSample.js
[changedatacapturegetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/changeDataCaptureGetSample.js
[changedatacapturelistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/changeDataCaptureListByFactorySample.js
[changedatacapturestartsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/changeDataCaptureStartSample.js
[changedatacapturestatussample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/changeDataCaptureStatusSample.js
[changedatacapturestopsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/changeDataCaptureStopSample.js
[credentialoperationscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/credentialOperationsCreateOrUpdateSample.js
[credentialoperationsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/credentialOperationsDeleteSample.js
[credentialoperationsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/credentialOperationsGetSample.js
[credentialoperationslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/credentialOperationsListByFactorySample.js
[dataflowdebugsessionadddataflowsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowDebugSessionAddDataFlowSample.js
[dataflowdebugsessioncreatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowDebugSessionCreateSample.js
[dataflowdebugsessiondeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowDebugSessionDeleteSample.js
[dataflowdebugsessionexecutecommandsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowDebugSessionExecuteCommandSample.js
[dataflowdebugsessionquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowDebugSessionQueryByFactorySample.js
[dataflowscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowsCreateOrUpdateSample.js
[dataflowsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowsDeleteSample.js
[dataflowsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowsGetSample.js
[dataflowslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/dataFlowsListByFactorySample.js
[datasetscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/datasetsCreateOrUpdateSample.js
[datasetsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/datasetsDeleteSample.js
[datasetsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/datasetsGetSample.js
[datasetslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/datasetsListByFactorySample.js
[exposurecontrolgetfeaturevaluebyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/exposureControlGetFeatureValueByFactorySample.js
[exposurecontrolgetfeaturevaluesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/exposureControlGetFeatureValueSample.js
[exposurecontrolqueryfeaturevaluesbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/exposureControlQueryFeatureValuesByFactorySample.js
[factoriesconfigurefactoryreposample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesConfigureFactoryRepoSample.js
[factoriescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesCreateOrUpdateSample.js
[factoriesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesDeleteSample.js
[factoriesgetdataplaneaccesssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesGetDataPlaneAccessSample.js
[factoriesgetgithubaccesstokensample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesGetGitHubAccessTokenSample.js
[factoriesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesGetSample.js
[factorieslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesListByResourceGroupSample.js
[factorieslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesListSample.js
[factoriesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/factoriesUpdateSample.js
[globalparameterscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/globalParametersCreateOrUpdateSample.js
[globalparametersdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/globalParametersDeleteSample.js
[globalparametersgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/globalParametersGetSample.js
[globalparameterslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/globalParametersListByFactorySample.js
[integrationruntimenodesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimeNodesDeleteSample.js
[integrationruntimenodesgetipaddresssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimeNodesGetIPAddressSample.js
[integrationruntimenodesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimeNodesGetSample.js
[integrationruntimenodesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimeNodesUpdateSample.js
[integrationruntimeobjectmetadatagetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimeObjectMetadataGetSample.js
[integrationruntimeobjectmetadatarefreshsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimeObjectMetadataRefreshSample.js
[integrationruntimescreatelinkedintegrationruntimesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesCreateLinkedIntegrationRuntimeSample.js
[integrationruntimescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesCreateOrUpdateSample.js
[integrationruntimesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesDeleteSample.js
[integrationruntimesgetconnectioninfosample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesGetConnectionInfoSample.js
[integrationruntimesgetmonitoringdatasample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesGetMonitoringDataSample.js
[integrationruntimesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesGetSample.js
[integrationruntimesgetstatussample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesGetStatusSample.js
[integrationruntimeslistauthkeyssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesListAuthKeysSample.js
[integrationruntimeslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesListByFactorySample.js
[integrationruntimeslistoutboundnetworkdependenciesendpointssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesListOutboundNetworkDependenciesEndpointsSample.js
[integrationruntimesregenerateauthkeysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesRegenerateAuthKeySample.js
[integrationruntimesremovelinkssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesRemoveLinksSample.js
[integrationruntimesstartsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesStartSample.js
[integrationruntimesstopsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesStopSample.js
[integrationruntimessynccredentialssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesSyncCredentialsSample.js
[integrationruntimesupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesUpdateSample.js
[integrationruntimesupgradesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/integrationRuntimesUpgradeSample.js
[linkedservicescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/linkedServicesCreateOrUpdateSample.js
[linkedservicesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/linkedServicesDeleteSample.js
[linkedservicesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/linkedServicesGetSample.js
[linkedserviceslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/linkedServicesListByFactorySample.js
[managedprivateendpointscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/managedPrivateEndpointsCreateOrUpdateSample.js
[managedprivateendpointsdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/managedPrivateEndpointsDeleteSample.js
[managedprivateendpointsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/managedPrivateEndpointsGetSample.js
[managedprivateendpointslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/managedPrivateEndpointsListByFactorySample.js
[managedvirtualnetworkscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/managedVirtualNetworksCreateOrUpdateSample.js
[managedvirtualnetworksgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/managedVirtualNetworksGetSample.js
[managedvirtualnetworkslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/managedVirtualNetworksListByFactorySample.js
[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/operationsListSample.js
[pipelinerunscancelsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelineRunsCancelSample.js
[pipelinerunsgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelineRunsGetSample.js
[pipelinerunsquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelineRunsQueryByFactorySample.js
[pipelinescreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelinesCreateOrUpdateSample.js
[pipelinescreaterunsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelinesCreateRunSample.js
[pipelinesdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelinesDeleteSample.js
[pipelinesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelinesGetSample.js
[pipelineslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/pipelinesListByFactorySample.js
[privateendpointconnectionslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/privateEndPointConnectionsListByFactorySample.js
[privateendpointconnectioncreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/privateEndpointConnectionCreateOrUpdateSample.js
[privateendpointconnectiondeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/privateEndpointConnectionDeleteSample.js
[privateendpointconnectiongetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/privateEndpointConnectionGetSample.js
[privatelinkresourcesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/privateLinkResourcesGetSample.js
[triggerrunscancelsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggerRunsCancelSample.js
[triggerrunsquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggerRunsQueryByFactorySample.js
[triggerrunsrerunsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggerRunsRerunSample.js
[triggerscreateorupdatesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersCreateOrUpdateSample.js
[triggersdeletesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersDeleteSample.js
[triggersgeteventsubscriptionstatussample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersGetEventSubscriptionStatusSample.js
[triggersgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersGetSample.js
[triggerslistbyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersListByFactorySample.js
[triggersquerybyfactorysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersQueryByFactorySample.js
[triggersstartsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersStartSample.js
[triggersstopsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersStopSample.js
[triggerssubscribetoeventssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersSubscribeToEventsSample.js
[triggersunsubscribefromeventssample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/datafactory/arm-datafactory/samples/v15/javascript/triggersUnsubscribeFromEventsSample.js
[apiref]: https://docs.microsoft.com/javascript/api/@azure/arm-datafactory?view=azure-node-preview
[freesub]: https://azure.microsoft.com/free/
[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/datafactory/arm-datafactory/README.md

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше