Skip to content

Commit

Permalink
CodeGen from PR 20116 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 52fa9f3569a9a5d08829a3beafa8c062125939eb into 3d2bd9039eb67a9462ae8fb6a9f9fbb900df59fc
  • Loading branch information
SDKAuto committed Dec 1, 2022
1 parent 54d8843 commit 6e76a45
Show file tree
Hide file tree
Showing 22 changed files with 416 additions and 362 deletions.
50 changes: 25 additions & 25 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 17 additions & 10 deletions sdk/healthcareapis/arm-healthcareapis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Release History

## 2.3.0 (2022-12-01)

**Features**

## 2.2.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

- Added Interface CorsConfiguration
- Added Interface FhirServiceImportConfiguration
- Added Interface ServiceImportConfigurationInfo
- Interface DicomService has a new optional parameter corsConfiguration
- Interface FhirService has a new optional parameter importConfiguration
- Interface MetricSpecification has a new optional parameter enableRegionalMdmAccount
- Interface MetricSpecification has a new optional parameter isInternal
- Interface MetricSpecification has a new optional parameter metricFilterPattern
- Interface MetricSpecification has a new optional parameter resourceIdDimensionNameOverride
- Interface MetricSpecification has a new optional parameter sourceMdmAccount
- Interface ServicesProperties has a new optional parameter importConfiguration


## 2.2.0 (2022-11-25)

**Features**
Expand Down
8 changes: 4 additions & 4 deletions sdk/healthcareapis/arm-healthcareapis/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "c583b05741fadfdca116be3b9ccb1c4be8a73258",
"commit": "b8a8ddaec558489206a4803e3d7575ebf624d4fe",
"readme": "specification/healthcareapis/resource-manager/readme.md",
"autorest_command": "autorest --version=3.8.4 --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\\healthcareapis\\resource-manager\\readme.md --use=@autorest/typescript@6.0.0-rc.3.20221108.1 --generate-sample=true",
"autorest_command": "autorest --version=3.8.4 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-js ../azure-rest-api-specs/specification/healthcareapis/resource-manager/readme.md --use=@autorest/typescript@6.0.0-rc.2",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/js-sdk-release-tools@2.4.2",
"use": "@autorest/typescript@6.0.0-rc.3.20221108.1"
"release_tool": "@azure-tools/js-sdk-release-tools@2.5.1",
"use": "@autorest/typescript@6.0.0-rc.2"
}
19 changes: 5 additions & 14 deletions sdk/healthcareapis/arm-healthcareapis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"sdk-type": "mgmt",
"author": "Microsoft Corporation",
"description": "A generated SDK for HealthcareApisManagementClient.",
"version": "2.2.1",
"version": "2.3.0",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@azure/core-lro": "^2.2.0",
"@azure/abort-controller": "^1.0.0",
"@azure/core-paging": "^1.2.0",
"@azure/core-client": "^1.6.1",
"@azure/core-client": "^1.5.0",
"@azure/core-auth": "^1.3.0",
"@azure/core-rest-pipeline": "^1.8.0",
"tslib": "^2.2.0"
Expand All @@ -36,7 +36,7 @@
"mkdirp": "^1.0.4",
"rollup": "^2.66.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "~4.8.0",
"typescript": "~4.6.0",
"uglify-js": "^3.4.9",
"rimraf": "^3.0.0",
"@azure/identity": "^2.0.1",
Expand All @@ -46,7 +46,6 @@
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"@types/node": "^14.0.0",
"@azure/dev-tool": "^1.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/healthcareapis/arm-healthcareapis",
Expand Down Expand Up @@ -110,13 +109,5 @@
}
]
},
"autoPublish": true,
"//sampleConfiguration": {
"productName": "",
"productSlugs": [
"azure"
],
"disableDocsMs": true,
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-healthcareapis?view=azure-node-preview"
}
}
"autoPublish": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,22 @@ export interface CheckNameAvailabilityParameters {
type: string;
}

// @public
export interface CorsConfiguration {
allowCredentials?: boolean;
headers?: string[];
maxAge?: number;
methods?: string[];
origins?: string[];
}

// @public
export type CreatedByType = string;

// @public
export interface DicomService extends TaggedResource, ServiceManagedIdentity {
authenticationConfiguration?: DicomServiceAuthenticationConfiguration;
corsConfiguration?: CorsConfiguration;
readonly privateEndpointConnections?: PrivateEndpointConnection[];
readonly provisioningState?: ProvisioningState;
publicNetworkAccess?: PublicNetworkAccess;
Expand Down Expand Up @@ -152,6 +162,7 @@ export interface FhirService extends TaggedResource, ServiceManagedIdentity {
corsConfiguration?: FhirServiceCorsConfiguration;
readonly eventState?: ServiceEventState;
exportConfiguration?: FhirServiceExportConfiguration;
importConfiguration?: FhirServiceImportConfiguration;
kind?: FhirServiceKind;
readonly privateEndpointConnections?: PrivateEndpointConnection[];
readonly provisioningState?: ProvisioningState;
Expand Down Expand Up @@ -198,6 +209,13 @@ export interface FhirServiceExportConfiguration {
storageAccountName?: string;
}

// @public
export interface FhirServiceImportConfiguration {
enabled?: boolean;
initialImportMode?: boolean;
integrationDataStore?: string;
}

// @public
export type FhirServiceKind = string;

Expand Down Expand Up @@ -262,9 +280,6 @@ export interface FhirServicesUpdateOptionalParams extends coreClient.OperationOp
// @public
export type FhirServicesUpdateResponse = FhirService;

// @public
export function getContinuationToken(page: unknown): string | undefined;

// @public (undocumented)
export class HealthcareApisManagementClient extends coreClient.ServiceClient {
// (undocumented)
Expand Down Expand Up @@ -595,8 +610,13 @@ export interface MetricSpecification {
dimensions?: MetricDimension[];
displayDescription?: string;
displayName?: string;
enableRegionalMdmAccount?: boolean;
fillGapWithZero?: boolean;
isInternal?: boolean;
metricFilterPattern?: string;
name?: string;
resourceIdDimensionNameOverride?: string;
sourceMdmAccount?: string;
sourceMdmNamespace?: string;
supportedAggregationTypes?: string[];
supportedTimeGrainTypes?: string[];
Expand Down Expand Up @@ -863,6 +883,13 @@ export interface ServiceExportConfigurationInfo {
storageAccountName?: string;
}

// @public
export interface ServiceImportConfigurationInfo {
enabled?: boolean;
initialImportMode?: boolean;
integrationDataStore?: string;
}

// @public
export interface ServiceManagedIdentity {
identity?: ServiceManagedIdentityIdentity;
Expand Down Expand Up @@ -1003,6 +1030,7 @@ export interface ServicesProperties {
corsConfiguration?: ServiceCorsConfigurationInfo;
cosmosDbConfiguration?: ServiceCosmosDbConfigurationInfo;
exportConfiguration?: ServiceExportConfigurationInfo;
importConfiguration?: ServiceImportConfigurationInfo;
privateEndpointConnections?: PrivateEndpointConnection[];
readonly provisioningState?: ProvisioningState;
publicNetworkAccess?: PublicNetworkAccess;
Expand Down
Loading

0 comments on commit 6e76a45

Please sign in to comment.