Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
11 changes: 7 additions & 4 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/compute/arm-compute/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Release History

## 21.2.0 (2023-08-16)

**Features**

## 21.1.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

- Added Interface CommunityGalleryMetadata
- Interface CommunityGallery has a new optional parameter artifactTags
- Interface CommunityGallery has a new optional parameter communityMetadata
- Interface CommunityGallery has a new optional parameter disclaimer
- Interface CommunityGalleryImage has a new optional parameter artifactTags
- Interface CommunityGalleryImage has a new optional parameter disclaimer
- Interface CommunityGalleryImageVersion has a new optional parameter artifactTags
- Interface CommunityGalleryImageVersion has a new optional parameter disclaimer
- Interface SharedGallery has a new optional parameter artifactTags
- Interface SharedGalleryImage has a new optional parameter artifactTags
- Interface SharedGalleryImageVersion has a new optional parameter artifactTags


## 21.1.0 (2023-07-07)

**Features**
Expand Down
8 changes: 4 additions & 4 deletions sdk/compute/arm-compute/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "310a0100f5b020c1900c527a6aa70d21992f078a",
"commit": "f16d7c159b7d1fade07aa470797d06ec46400bdb",
"readme": "specification/compute/resource-manager/readme.md",
"autorest_command": "autorest --version=3.9.3 --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\\compute\\resource-manager\\readme.md --use=@autorest/typescript@6.0.5 --generate-sample=true",
"autorest_command": "autorest --version=3.9.3 --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/compute/resource-manager/readme.md --use=@autorest/typescript@^6.0.4",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/js-sdk-release-tools@2.7.0",
"use": "@autorest/typescript@6.0.5"
"release_tool": "@azure-tools/js-sdk-release-tools@2.7.1",
"use": "@autorest/typescript@^6.0.4"
}
22 changes: 7 additions & 15 deletions sdk/compute/arm-compute/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"sdk-type": "mgmt",
"author": "Microsoft Corporation",
"description": "A generated SDK for ComputeManagementClient.",
"version": "21.1.1",
"version": "21.2.0",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@azure/core-lro": "^2.5.3",
"@azure/core-lro": "^2.5.4",
"@azure/abort-controller": "^1.0.0",
"@azure/core-paging": "^1.2.0",
"@azure/core-client": "^1.7.0",
"@azure/core-auth": "^1.3.0",
"@azure/core-rest-pipeline": "^1.8.0",
"@azure/core-rest-pipeline": "^1.12.0",
"tslib": "^2.2.0"
},
"keywords": [
Expand Down Expand Up @@ -48,8 +48,8 @@
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"@types/node": "^14.0.0",
"@azure/dev-tool": "^1.0.0",
"@azure/arm-network": "^26.0.0"
"ts-node": "^10.0.0",
"@azure/dev-tool": "^1.0.0"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -112,13 +112,5 @@
]
},
"autoPublish": true,
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/compute/arm-compute",
"//sampleConfiguration": {
"productName": "",
"productSlugs": [
"azure"
],
"disableDocsMs": true,
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-compute?view=azure-node-preview"
}
}
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/compute/arm-compute"
}
31 changes: 31 additions & 0 deletions sdk/compute/arm-compute/review/arm-compute.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -931,12 +931,21 @@ export type CommunityGalleriesGetResponse = CommunityGallery;

// @public
export interface CommunityGallery extends PirCommunityGalleryResource {
artifactTags?: {
[propertyName: string]: string;
};
communityMetadata?: CommunityGalleryMetadata;
disclaimer?: string;
}

// @public
export interface CommunityGalleryImage extends PirCommunityGalleryResource {
architecture?: Architecture;
artifactTags?: {
[propertyName: string]: string;
};
disallowed?: Disallowed;
disclaimer?: string;
endOfLifeDate?: Date;
eula?: string;
features?: GalleryImageFeature[];
Expand Down Expand Up @@ -991,6 +1000,10 @@ export type CommunityGalleryImagesListResponse = CommunityGalleryImageList;

// @public
export interface CommunityGalleryImageVersion extends PirCommunityGalleryResource {
artifactTags?: {
[propertyName: string]: string;
};
disclaimer?: string;
endOfLifeDate?: Date;
excludeFromLatest?: boolean;
publishedDate?: Date;
Expand Down Expand Up @@ -1040,6 +1053,15 @@ export interface CommunityGalleryInfo {
publisherUri?: string;
}

// @public
export interface CommunityGalleryMetadata {
eula?: string;
privacyStatementUri?: string;
publicNames?: string[];
publisherContact?: string;
publisherUri?: string;
}

// @public (undocumented)
export class ComputeManagementClient extends coreClient.ServiceClient {
// (undocumented)
Expand Down Expand Up @@ -5103,6 +5125,9 @@ export type SharedGalleriesListResponse = SharedGalleryList;

// @public
export interface SharedGallery extends PirSharedGalleryResource {
readonly artifactTags?: {
[propertyName: string]: string;
};
}

// @public
Expand All @@ -5122,6 +5147,9 @@ export type SharedGalleryHostCaching = string;
// @public
export interface SharedGalleryImage extends PirSharedGalleryResource {
architecture?: Architecture;
artifactTags?: {
[propertyName: string]: string;
};
disallowed?: Disallowed;
endOfLifeDate?: Date;
eula?: string;
Expand Down Expand Up @@ -5171,6 +5199,9 @@ export type SharedGalleryImagesListResponse = SharedGalleryImageList;

// @public
export interface SharedGalleryImageVersion extends PirSharedGalleryResource {
artifactTags?: {
[propertyName: string]: string;
};
endOfLifeDate?: Date;
excludeFromLatest?: boolean;
publishedDate?: Date;
Expand Down
2 changes: 1 addition & 1 deletion sdk/compute/arm-compute/src/computeManagementClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class ComputeManagementClient extends coreClient.ServiceClient {
credential: credentials
};

const packageDetails = `azsdk-js-arm-compute/21.1.1`;
const packageDetails = `azsdk-js-arm-compute/21.2.0`;
const userAgentPrefix =
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
Expand Down
Loading