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

[AutoPR @azure/arm-operationalinsights] OperationailInsights: Cluster identity description change. #3480

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
1 change: 1 addition & 0 deletions sdk/keyvault/keyvault-certificates/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- [Breaking] Removed `dist-browser` from the published package. To bundle the Azure SDK libraries for the browsers, please read our bundling guide: [link](https://github.com/Azure/azure-sdk-for-js/blob/master/documentation/Bundling.md).
- Updated the Key Vault Certificates Long Running Operation Pollers to follow a more compact and meaningful approach moving forward.
- Bug fix: The logging of HTTP requests wasn't properly working - now it has been fixed and tests have been written that verify the fix.
- Removed `parseKeyVaultCertificatesIdentifier` from the public API.

## 4.2.0-beta.1 (2020-09-11)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,6 @@ export const logger: import("@azure/logger").AzureLogger;
// @public
export type MergeCertificateOptions = coreHttp.OperationOptions;

// @public
export function parseKeyVaultCertificateId(id: string): KeyVaultCertificateId;

export { PipelineOptions }

// @public
Expand Down
1 change: 1 addition & 0 deletions sdk/keyvault/keyvault-certificates/src/identifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export interface KeyVaultCertificateId {
* }
*```
* @param id - The Id of the Key Vault Certificate.
* @internal
*/
export function parseKeyVaultCertificateId(id: string): KeyVaultCertificateId {
const urlParts = id.split("/");
Expand Down
3 changes: 1 addition & 2 deletions sdk/keyvault/keyvault-certificates/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ import { DeleteCertificateState } from "./lro/delete/operation";
import { CreateCertificateState } from "./lro/create/operation";
import { RecoverDeletedCertificateState } from "./lro/recover/operation";
import { parseCertificateBytes } from "./utils";
import { parseKeyVaultCertificateId, KeyVaultCertificateId } from "./identifier";
import { KeyVaultCertificateId } from "./identifier";
import {
coreContactsToCertificateContacts,
getCertificateFromCertificateBundle,
Expand All @@ -168,7 +168,6 @@ export {
BeginRecoverDeletedCertificateOptions,
KeyVaultCertificate,
KeyVaultCertificateWithPolicy,
parseKeyVaultCertificateId,
BackupCertificateOptions,
CertificateContentType,
CertificateProperties,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

import { parseKeyVaultCertificateId } from "../../src";
import { parseKeyVaultCertificateId } from "../../src/identifier";
import * as assert from "assert";

describe("Key Vault Certificates Identifier", () => {
Expand Down
5 changes: 3 additions & 2 deletions sdk/keyvault/keyvault-keys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
- [Breaking] Removed `dist-browser` from the published package. To bundle the Azure SDK libraries for the browsers, please read our bundling guide: [link](https://github.com/Azure/azure-sdk-for-js/blob/master/documentation/Bundling.md).
- Updated the Key Vault Keys Long Running Operation Pollers to follow a more compact and meaningful approach moving forward.
- Bug fix: The logging of HTTP requests wasn't properly working - now it has been fixed and tests have been written that verify the fix.
- Add a constructor overload to `CryptographyClient` that takes a `JsonWebKey` and allows for local-only subset of operations.
- Add `KeyId` to the public API of CryptographyClient.
- Added a constructor overload to `CryptographyClient` that takes a `JsonWebKey` and allows for local-only subset of operations.
- Added `KeyId` to the public API of CryptographyClient.
- Removed `parseKeyVaultKeysId` from the public API and made `KeyOptionsOptions.additionalAuthenticatedData` a readonly property.

## 4.2.0-beta.2 (2020-10-06)

Expand Down
5 changes: 1 addition & 4 deletions sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export type KeyOperation = string;

// @public
export interface KeyOperationsOptions extends CryptographyOptions {
additionalAuthenticatedData?: Uint8Array;
readonly additionalAuthenticatedData?: Uint8Array;
iv?: Uint8Array;
tag?: Uint8Array;
}
Expand Down Expand Up @@ -340,9 +340,6 @@ export { PagedAsyncIterableIterator }

export { PageSettings }

// @public
export function parseKeyVaultKeyId(id: string): KeyVaultKeyId;

export { PipelineOptions }

export { PollerLike }
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-keys/src/cryptographyClientModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export interface KeyOperationsOptions extends CryptographyOptions {
* Additional data to authenticate but not encrypt/decrypt when using authenticated crypto
* algorithms.
*/
additionalAuthenticatedData?: Uint8Array;
readonly additionalAuthenticatedData?: Uint8Array;
/**
* The tag to authenticate when performing decryption with an authenticated algorithm.
*/
Expand Down
1 change: 1 addition & 0 deletions sdk/keyvault/keyvault-keys/src/identifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export interface KeyVaultKeyId {
*```

* @param id - The Id of the Key Vault Key.
* @internal
*/
export function parseKeyVaultKeyId(id: string): KeyVaultKeyId {
const urlParts = id.split("/");
Expand Down
1 change: 0 additions & 1 deletion sdk/keyvault/keyvault-keys/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ export {
KeyType,
KnownKeyTypes,
KeyPollerOptions,
parseKeyVaultKeyId,
BeginDeleteKeyOptions,
BeginRecoverDeletedKeyOptions,
KeyProperties,
Expand Down
3 changes: 0 additions & 3 deletions sdk/keyvault/keyvault-secrets/review/keyvault-secrets.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ export { PagedAsyncIterableIterator }

export { PageSettings }

// @public
export function parseKeyVaultSecretId(id: string): KeyVaultSecretId;

export { PipelineOptions }

export { PollerLike }
Expand Down
1 change: 1 addition & 0 deletions sdk/keyvault/keyvault-secrets/src/identifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export interface KeyVaultSecretId {
* }
*```
* @param id - The Id of the Key Vault Secret.
* @internal
*/
export function parseKeyVaultSecretId(id: string): KeyVaultSecretId {
const urlParts = id.split("/");
Expand Down
3 changes: 1 addition & 2 deletions sdk/keyvault/keyvault-secrets/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ import {
SecretClientOptions,
LATEST_API_VERSION
} from "./secretsModels";
import { parseKeyVaultSecretId, KeyVaultSecretId } from "./identifier";
import { KeyVaultSecretId } from "./identifier";
import { getSecretFromSecretBundle } from "./transformations";

export {
Expand All @@ -84,7 +84,6 @@ export {
PollerLike,
PollOperationState,
KeyVaultSecret,
parseKeyVaultSecretId,
SecretProperties,
SecretPollerOptions,
BeginDeleteSecretOptions,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

import { parseKeyVaultSecretId } from "../../src";
import { parseKeyVaultSecretId } from "../../src/identifier";
import * as assert from "assert";

describe("Key Vault Secrets Identifier", () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Microsoft
Copyright (c) 2021 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface DataExport extends BaseResource {
/**
* An array of tables to export, for example: [“Heartbeat, SecurityEvent”].
*/
tableNames?: string[];
tableNames: string[];
/**
* The destination resource ID. This can be copied from the Properties entry of the destination
* resource in Azure.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const DataExport: msRest.CompositeMapper = {
}
},
tableNames: {
required: true,
serializedName: "properties.tableNames",
type: {
name: "Sequence",
Expand Down