Skip to content

Commit

Permalink
[mgmt] datafactory release (#29290)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazrael2119 committed Apr 26, 2024
1 parent e74a138 commit 3ec271e
Show file tree
Hide file tree
Showing 222 changed files with 325 additions and 289 deletions.
34 changes: 26 additions & 8 deletions sdk/datafactory/arm-datafactory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,33 @@
# Release History

## 15.0.0 (2024-04-12)

**Features**

## 14.1.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
- 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;
}

### 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**
Expand Down
8 changes: 4 additions & 4 deletions sdk/datafactory/arm-datafactory/_meta.json
Original file line number Diff line number Diff line change
@@ -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"
}
2 changes: 1 addition & 1 deletion sdk/datafactory/arm-datafactory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
24 changes: 14 additions & 10 deletions sdk/datafactory/arm-datafactory/review/arm-datafactory.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ export interface AzureFunctionActivity extends ExecutionActivity {
body?: any;
functionName: any;
headers?: {
[propertyName: string]: string;
[propertyName: string]: any;
};
method: AzureFunctionActivityMethod;
type: "AzureFunctionActivity";
Expand Down Expand Up @@ -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
Expand All @@ -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 {
Expand All @@ -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 {
Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -8885,7 +8889,7 @@ export interface WebActivity extends ExecutionActivity {
datasets?: DatasetReference[];
disableCertValidation?: boolean;
headers?: {
[propertyName: string]: string;
[propertyName: string]: any;
};
httpRequestTimeout?: any;
linkedServices?: LinkedServiceReference[];
Expand Down Expand Up @@ -8936,7 +8940,7 @@ export interface WebHookActivity extends ControlActivity {
authentication?: WebActivityAuthentication;
body?: any;
headers?: {
[propertyName: string]: string;
[propertyName: string]: any;
};
method: WebHookActivityMethod;
policy?: SecureInputOutputPolicy;
Expand Down

0 comments on commit 3ec271e

Please sign in to comment.