Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[mgmt] datafactory release #29290

Merged
merged 3 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

### Other Changes
**Breaking Changes**

- Operation CredentialOperations.createOrUpdate has a new signature
- Interface ManagedIdentityCredential no longer has parameter resourceId
- Type of parameter headers of interface AzureFunctionActivity is changed from {
[propertyName: string]: string;
} to {
[propertyName: string]: any;
}
- Type of parameter value of interface CredentialListResponse is changed from ManagedIdentityCredentialResource[] to CredentialResource[]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this a breaking?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- 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;
}


## 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/[email protected].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/[email protected].20 --generate-sample=true",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/[email protected].4",
"use": "@autorest/[email protected].17"
"release_tool": "@azure-tools/[email protected].5",
"use": "@autorest/[email protected].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
Loading
Loading