Skip to content

Commit

Permalink
CodeGen from PR 18410 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 825f08ddf10b0d8de1f249c99643c760fb1261d2 into dfb02eb8ee4f04974fc46e9708615bff03329907
  • Loading branch information
SDKAuto committed Mar 27, 2022
1 parent 39f456a commit d0bc503
Show file tree
Hide file tree
Showing 12 changed files with 159 additions and 80 deletions.
15 changes: 7 additions & 8 deletions common/config/rush/pnpm-lock.yaml

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

15 changes: 15 additions & 0 deletions sdk/securityinsight/arm-securityinsight/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Release History

## 1.0.0-beta.3 (2022-03-27)

**Features**

- Added Type Alias EntityProviders
- Type Alias EntityAnalytics has a new parameter entityProviders
- Added Enum KnownEntityProviders

**Breaking Changes**

- Type Alias EntityAnalytics no longer has parameter isEnabled
- Type Alias WatchlistItem no longer has parameter itemsKeyValue
- Type Alias WatchlistItem no longer has parameter entityMapping


## 1.0.0-beta.2 (2022-03-17)

**Features**
Expand Down
11 changes: 0 additions & 11 deletions sdk/securityinsight/arm-securityinsight/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provi
- [LTS versions of Node.js](https://nodejs.org/about/releases/)
- Latest versions of Safari, Chrome, Edge and Firefox.

See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.

### Prerequisites

- An [Azure subscription][azure_sub].
Expand Down Expand Up @@ -51,17 +49,8 @@ For more information about how to create an Azure AD Application check out [this
```javascript
const { SecurityInsights } = require("@azure/arm-securityinsight");
const { DefaultAzureCredential } = require("@azure/identity");
// For client-side applications running in the browser, use InteractiveBrowserCredential instead of DefaultAzureCredential. See https://aka.ms/azsdk/js/identity/examples for more details.

const subscriptionId = "00000000-0000-0000-0000-000000000000";
const client = new SecurityInsights(new DefaultAzureCredential(), subscriptionId);

// For client-side applications running in the browser, use this code instead:
// const credential = new InteractiveBrowserCredential({
// tenantId: "<YOUR_TENANT_ID>",
// clientId: "<YOUR_CLIENT_ID>"
// });
// const client = new SecurityInsights(credential, subscriptionId);
```


Expand Down
8 changes: 4 additions & 4 deletions sdk/securityinsight/arm-securityinsight/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "3124311bc9791b64a8fa8fe8dc6372fb19559a1a",
"commit": "ff46f4c20932b4ddebbd543e3e16e2f0515b46cd",
"readme": "specification/securityinsights/resource-manager/readme.md",
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\work\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\securityinsights\\resource-manager\\readme.md --use=@autorest/typescript@6.0.0-beta.16 --generate-sample=true",
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-js ../azure-rest-api-specs/specification/securityinsights/resource-manager/readme.md --use=@autorest/typescript@6.0.0-alpha.16.20220105.1",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/js-sdk-release-tools@2.1.2",
"use": "@autorest/typescript@6.0.0-beta.16"
"release_tool": "@azure-tools/js-sdk-release-tools@2.2.1",
"use": "@autorest/typescript@6.0.0-alpha.16.20220105.1"
}
32 changes: 8 additions & 24 deletions sdk/securityinsight/arm-securityinsight/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 SecurityInsights.",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"engines": {
"node": ">=12.0.0"
},
Expand All @@ -27,13 +27,13 @@
"types": "./types/arm-securityinsight.d.ts",
"devDependencies": {
"@microsoft/api-extractor": "^7.18.11",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"mkdirp": "^1.0.4",
"rollup": "^2.66.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup": "^1.16.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"typescript": "~4.2.0",
"uglify-js": "^3.4.9",
"rimraf": "^3.0.0",
Expand Down Expand Up @@ -96,21 +96,5 @@
"docs": "echo skipped"
},
"sideEffects": false,
"//metadata": {
"constantPaths": [
{
"path": "src/securityInsights.ts",
"prefix": "packageDetails"
}
]
},
"autoPublish": true,
"//sampleConfiguration": {
"productName": "",
"productSlugs": [
"azure"
],
"disableDocsMs": true,
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-securityinsight?view=azure-node-preview"
}
"autoPublish": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ export interface AutomationRuleTriggeringLogic {
// @public
export interface Availability {
isPreview?: boolean;
status?: 1;
status?: "1";
}

// @public
Expand Down Expand Up @@ -1354,7 +1354,7 @@ export type Entity = Resource & {

// @public
export type EntityAnalytics = Settings & {
readonly isEnabled?: boolean;
entityProviders?: EntityProviders[];
};

// @public
Expand Down Expand Up @@ -1447,6 +1447,9 @@ export interface EntityMapping {
// @public
export type EntityMappingType = string;

// @public
export type EntityProviders = string;

// @public
export interface EntityQueries {
createOrUpdate(resourceGroupName: string, workspaceName: string, entityQueryId: string, entityQuery: CustomEntityQueryUnion, options?: EntityQueriesCreateOrUpdateOptionalParams): Promise<EntityQueriesCreateOrUpdateResponse>;
Expand Down Expand Up @@ -2776,6 +2779,14 @@ export enum KnownEntityMappingType {
URL = "URL"
}

// @public
export enum KnownEntityProviders {
// (undocumented)
ActiveDirectory = "ActiveDirectory",
// (undocumented)
AzureActiveDirectory = "AzureActiveDirectory"
}

// @public
export enum KnownEntityQueryKind {
// (undocumented)
Expand Down Expand Up @@ -5147,8 +5158,12 @@ export type WatchlistItem = ResourceWithEtag & {
updated?: Date;
createdBy?: UserInfo;
updatedBy?: UserInfo;
itemsKeyValue?: Record<string, unknown>;
entityMapping?: Record<string, unknown>;
itemsKeyValue?: {
[propertyName: string]: any;
};
entityMapping?: {
[propertyName: string]: any;
};
};

// @public
Expand Down
78 changes: 72 additions & 6 deletions sdk/securityinsight/arm-securityinsight/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,62 @@ import json from "@rollup/plugin-json";

import nodeBuiltins from "builtin-modules";

/**
* Gets the proper configuration needed for rollup's commonJS plugin for @opentelemetry/api.
*
* NOTE: this manual configuration is only needed because OpenTelemetry uses an
* __exportStar downleveled helper function to declare its exports which confuses
* rollup's automatic discovery mechanism.
*
* @returns an object reference that can be `...`'d into your cjs() configuration.
*/
export function openTelemetryCommonJs() {
const namedExports = {};

for (const key of [
"@opentelemetry/api",
"@azure/core-tracing/node_modules/@opentelemetry/api"
]) {
namedExports[key] = [
"SpanKind",
"TraceFlags",
"getSpan",
"setSpan",
"SpanStatusCode",
"getSpanContext",
"setSpanContext"
];
}

const releasedOpenTelemetryVersions = ["0.10.2", "1.0.0-rc.0"];

for (const version of releasedOpenTelemetryVersions) {
namedExports[
// working around a limitation in the rollup common.js plugin - it's not able to resolve these modules so the named exports listed above will not get applied. We have to drill down to the actual path.
`../../../common/temp/node_modules/.pnpm/@opentelemetry/api@${version}/node_modules/@opentelemetry/api/build/src/index.js`
] = [
"SpanKind",
"TraceFlags",
"getSpan",
"setSpan",
"StatusCode",
"CanonicalCode",
"getSpanContext",
"setSpanContext"
];
}

return namedExports;
}

// #region Warning Handler

/**
* A function that can determine whether a rollup warning should be ignored. If
* A function that can determine whether a rollupwarning should be ignored. If
* the function returns `true`, then the warning will not be displayed.
*/

function ignoreNiseSinonEval(warning) {
function ignoreNiseSinonEvalWarnings(warning) {
return (
warning.code === "EVAL" &&
warning.id &&
Expand All @@ -30,14 +78,17 @@ function ignoreNiseSinonEval(warning) {
);
}

function ignoreChaiCircularDependency(warning) {
function ignoreChaiCircularDependencyWarnings(warning) {
return (
warning.code === "CIRCULAR_DEPENDENCY" &&
warning.importer && warning.importer.includes("node_modules/chai") === true
);
}

const warningInhibitors = [ignoreChaiCircularDependency, ignoreNiseSinonEval];
const warningInhibitors = [
ignoreChaiCircularDependencyWarnings,
ignoreNiseSinonEvalWarnings
];

/**
* Construct a warning handler for the shared rollup configuration
Expand Down Expand Up @@ -71,7 +122,22 @@ function makeBrowserTestConfig() {
nodeResolve({
mainFields: ["module", "browser"]
}),
cjs(),
cjs({
namedExports: {
// Chai's strange internal architecture makes it impossible to statically
// analyze its exports.
chai: [
"version",
"use",
"util",
"config",
"expect",
"should",
"assert"
],
...openTelemetryCommonJs()
}
}),
json(),
sourcemaps()
//viz({ filename: "dist-test/browser-stats.html", sourcemap: true })
Expand Down Expand Up @@ -107,7 +173,7 @@ export function makeConfig(pkg, options) {
],
output: { file: "dist/index.js", format: "cjs", sourcemap: true },
preserveSymlinks: false,
plugins: [sourcemaps(), nodeResolve()]
plugins: [sourcemaps(), nodeResolve(), cjs()]
};

const config = [baseConfig];
Expand Down
29 changes: 21 additions & 8 deletions sdk/securityinsight/arm-securityinsight/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1874,7 +1874,7 @@ export interface ConnectivityCriteria {
/** Connector Availability Status */
export interface Availability {
/** The connector Availability Status */
status?: 1;
status?: "1";
/** Set connector as preview */
isPreview?: boolean;
}
Expand Down Expand Up @@ -4007,9 +4007,9 @@ export type WatchlistItem = ResourceWithEtag & {
/** Describes a user that updated the watchlist item */
updatedBy?: UserInfo;
/** key-value pairs for a watchlist item */
itemsKeyValue?: Record<string, unknown>;
itemsKeyValue?: { [propertyName: string]: any };
/** key-value pairs for a watchlist item entity mapping */
entityMapping?: Record<string, unknown>;
entityMapping?: { [propertyName: string]: any };
};

/** Data connector */
Expand Down Expand Up @@ -5670,11 +5670,8 @@ export type EyesOn = Settings & {

/** Settings with single toggle. */
export type EntityAnalytics = Settings & {
/**
* Determines whether the setting is enable or disabled.
* NOTE: This property will not be serialized. It can only be populated by the server.
*/
readonly isEnabled?: boolean;
/** The relevant entity providers that are synced */
entityProviders?: EntityProviders[];
};

/** Settings with single toggle. */
Expand Down Expand Up @@ -7403,6 +7400,22 @@ export enum KnownOutputType {
*/
export type OutputType = string;

/** Known values of {@link EntityProviders} that the service accepts. */
export enum KnownEntityProviders {
ActiveDirectory = "ActiveDirectory",
AzureActiveDirectory = "AzureActiveDirectory"
}

/**
* Defines values for EntityProviders. \
* {@link KnownEntityProviders} can be used interchangeably with EntityProviders,
* this enum contains the known values that the service supports.
* ### Known values supported by the service
* **ActiveDirectory** \
* **AzureActiveDirectory**
*/
export type EntityProviders = string;

/** Known values of {@link UebaDataSources} that the service accepts. */
export enum KnownUebaDataSources {
AuditLogs = "AuditLogs",
Expand Down
Loading

0 comments on commit d0bc503

Please sign in to comment.