Skip to content

Commit

Permalink
security release (#23845)
Browse files Browse the repository at this point in the history
* security release

* update files

* update files

* update files
  • Loading branch information
kazrael2119 authored Nov 16, 2022
1 parent c27b5a9 commit 6650f19
Show file tree
Hide file tree
Showing 38 changed files with 1,808 additions and 467 deletions.
4 changes: 2 additions & 2 deletions common/config/rush/pnpm-lock.yaml

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

21 changes: 20 additions & 1 deletion sdk/security/arm-security/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Release History

## 6.0.0-beta.2 (2022-11-08)
## 6.0.0-beta.2 (2022-11-15)

**Features**

- Added operation group APICollection
- Added operation group APICollectionOffboarding
- Added operation group APICollectionOnboarding
- Added operation group ApplicationOperations
- Added operation group Applications
- Added operation group GovernanceAssignments
Expand Down Expand Up @@ -37,6 +40,13 @@
- Added Interface AmqpC2DMessagesNotInAllowedRange
- Added Interface AmqpC2DRejectedMessagesNotInAllowedRange
- Added Interface AmqpD2CMessagesNotInAllowedRange
- Added Interface APICollectionGetOptionalParams
- Added Interface APICollectionListNextOptionalParams
- Added Interface APICollectionListOptionalParams
- Added Interface APICollectionOffboardingDeleteOptionalParams
- Added Interface APICollectionOnboardingCreateOptionalParams
- Added Interface ApiCollectionResponse
- Added Interface ApiCollectionResponseList
- Added Interface Application
- Added Interface ApplicationCondition
- Added Interface ApplicationCreateOrUpdateOptionalParams
Expand Down Expand Up @@ -118,6 +128,8 @@
- Added Interface DirectMethodInvokesNotInAllowedRange
- Added Interface DiscoveredSecuritySolution
- Added Interface EnvironmentData
- Added Interface ErrorDetail
- Added Interface ErrorResponse
- Added Interface ExecuteGovernanceRuleParams
- Added Interface ExecuteRuleStatus
- Added Interface ExternalSecuritySolution
Expand Down Expand Up @@ -227,6 +239,10 @@
- Added Interface UnauthorizedOperationsNotInAllowedRange
- Added Interface UpdateIotSecuritySolutionData
- Added Interface WorkspaceSetting
- Added Type Alias APICollectionGetResponse
- Added Type Alias APICollectionListNextResponse
- Added Type Alias APICollectionListResponse
- Added Type Alias APICollectionOnboardingCreateResponse
- Added Type Alias ApplicationConditionOperator
- Added Type Alias ApplicationCreateOrUpdateResponse
- Added Type Alias ApplicationGetResponse
Expand Down Expand Up @@ -270,6 +286,9 @@
- Interface AlertsSimulateOptionalParams has a new optional parameter resumeFrom
- Interface AlertsSimulateOptionalParams has a new optional parameter updateIntervalInMs
- Interface DefenderForServersAwsOfferingArcAutoProvisioning has a new optional parameter cloudRoleArn
- Class SecurityCenter has a new parameter aPICollection
- Class SecurityCenter has a new parameter aPICollectionOffboarding
- Class SecurityCenter has a new parameter aPICollectionOnboarding
- Class SecurityCenter has a new parameter applicationOperations
- Class SecurityCenter has a new parameter applications
- Class SecurityCenter has a new parameter governanceAssignments
Expand Down
6 changes: 3 additions & 3 deletions sdk/security/arm-security/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "ae9cb5a65ff4dba1d626ed0a1bb4e94dd17583e8",
"commit": "d8461c6480ba57b5163c48795e917e7c1d99d4fd",
"readme": "specification/security/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\\security\\resource-manager\\readme.md --use=@autorest/[email protected].20221103.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=D:\\Git\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\security\\resource-manager\\readme.md --use=@autorest/[email protected].20221108.1 --generate-sample=true",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/[email protected]",
"use": "@autorest/[email protected].20221103.1"
"use": "@autorest/[email protected].20221108.1"
}
2 changes: 1 addition & 1 deletion sdk/security/arm-security/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"mkdirp": "^1.0.4",
"rollup": "^2.66.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "~4.6.0",
"typescript": "~4.8.0",
"uglify-js": "^3.4.9",
"rimraf": "^3.0.0",
"@azure/identity": "^2.0.1",
Expand Down

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

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

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

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

82 changes: 82 additions & 0 deletions sdk/security/arm-security/review/arm-security.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,68 @@ export interface AmqpD2CMessagesNotInAllowedRange extends TimeWindowCustomAlertR
ruleType: "AmqpD2CMessagesNotInAllowedRange";
}

// @public
export interface APICollection {
get(resourceGroupName: string, serviceName: string, apiCollectionId: string, options?: APICollectionGetOptionalParams): Promise<APICollectionGetResponse>;
list(resourceGroupName: string, serviceName: string, options?: APICollectionListOptionalParams): PagedAsyncIterableIterator<ApiCollectionResponse>;
}

// @public
export interface APICollectionGetOptionalParams extends coreClient.OperationOptions {
}

// @public
export type APICollectionGetResponse = ApiCollectionResponse;

// @public
export interface APICollectionListNextOptionalParams extends coreClient.OperationOptions {
}

// @public
export type APICollectionListNextResponse = ApiCollectionResponseList;

// @public
export interface APICollectionListOptionalParams extends coreClient.OperationOptions {
}

// @public
export type APICollectionListResponse = ApiCollectionResponseList;

// @public
export interface APICollectionOffboarding {
delete(resourceGroupName: string, serviceName: string, apiCollectionId: string, options?: APICollectionOffboardingDeleteOptionalParams): Promise<void>;
}

// @public
export interface APICollectionOffboardingDeleteOptionalParams extends coreClient.OperationOptions {
}

// @public
export interface APICollectionOnboarding {
create(resourceGroupName: string, serviceName: string, apiCollectionId: string, options?: APICollectionOnboardingCreateOptionalParams): Promise<APICollectionOnboardingCreateResponse>;
}

// @public
export interface APICollectionOnboardingCreateOptionalParams extends coreClient.OperationOptions {
}

// @public
export type APICollectionOnboardingCreateResponse = ApiCollectionResponse;

// @public
export interface ApiCollectionResponse extends Resource {
additionalData?: {
[propertyName: string]: string;
};
displayName?: string;
}

// @public
export interface ApiCollectionResponseList {
readonly nextLink?: string;
readonly value?: ApiCollectionResponse[];
}

// @public
export interface Application extends Resource {
conditionSets?: Record<string, unknown>[];
Expand Down Expand Up @@ -1942,6 +2004,20 @@ export interface ErrorAdditionalInfo {
readonly type?: string;
}

// @public
export interface ErrorDetail {
readonly additionalInfo?: ErrorAdditionalInfo[];
readonly code?: string;
readonly details?: ErrorDetail[];
readonly message?: string;
readonly target?: string;
}

// @public
export interface ErrorResponse {
error?: ErrorDetail;
}

// @public
export interface ETag {
etag?: string;
Expand Down Expand Up @@ -4703,6 +4779,12 @@ export class SecurityCenter extends coreClient.ServiceClient {
// (undocumented)
allowedConnections: AllowedConnections;
// (undocumented)
aPICollection: APICollection;
// (undocumented)
aPICollectionOffboarding: APICollectionOffboarding;
// (undocumented)
aPICollectionOnboarding: APICollectionOnboarding;
// (undocumented)
applicationOperations: ApplicationOperations;
// (undocumented)
applications: Applications;
Expand Down
Loading

0 comments on commit 6650f19

Please sign in to comment.