Skip to content

Commit

Permalink
Generated from bde45d9834e735a9cdb6265ae5553eef2c01021e (#127)
Browse files Browse the repository at this point in the history
Updated the way we retrieve the version
  • Loading branch information
openapi-sdkautomation[bot] authored and SDK Automation committed Sep 9, 2019
1 parent c072cab commit 1ec1f03
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
6 changes: 3 additions & 3 deletions sdk/healthcareapis/arm-healthcareapis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "HealthcareApisManagementClient Library with typescript type definitions for node.js and browser.",
"version": "1.0.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.0.0",
"@azure/ms-rest-js": "^2.0.3",
"tslib": "^1.10.0"
"@azure/ms-rest-azure-js": "^1.3.2",
"@azure/ms-rest-js": "^1.8.1",
"tslib": "^1.9.3"
},
"keywords": [
"node",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class HealthcareApisManagementClientContext extends msRestAzure.AzureServ

super(credentials, options);

this.apiVersion = '2018-08-20-preview';
this.apiVersion = '2019-09-16';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
5 changes: 2 additions & 3 deletions sdk/healthcareapis/arm-healthcareapis/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export { BaseResource, CloudError };
*/
export interface ServiceAccessPolicyEntry {
/**
* An object ID that is allowed access to the FHIR service.
* An Azure AD object ID (User or Apps) that is allowed access to the FHIR service.
*/
objectId: string;
}
Expand Down Expand Up @@ -123,8 +123,7 @@ export interface Resource extends BaseResource {
*/
readonly type?: string;
/**
* The kind of the service. Valid values are: fhir, fhir-Stu3 and fhir-R4. Possible values
* include: 'fhir', 'fhir-Stu3', 'fhir-R4'
* The kind of the service. Possible values include: 'fhir', 'fhir-Stu3', 'fhir-R4'
*/
kind: Kind;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ export const apiVersion: msRest.OperationQueryParameter = {
parameterPath: "apiVersion",
mapper: {
required: true,
isConstant: true,
serializedName: "api-version",
defaultValue: '2018-08-20-preview',
constraints: {
MinLength: 10
MinLength: 1
},
type: {
name: "String"
Expand Down
2 changes: 1 addition & 1 deletion sdk/healthcareapis/arm-healthcareapis/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es6", "dom"],
"lib": ["es6"],
"declaration": true,
"outDir": "./esm",
"importHelpers": true
Expand Down

0 comments on commit 1ec1f03

Please sign in to comment.