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
31 changes: 21 additions & 10 deletions sdk/dataprotection/arm-dataprotection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
# Release History

## 2.1.0 (2024-03-26)

**Features**

## 2.0.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

- Added Interface CmkKekIdentity
- Added Interface CmkKeyVaultProperties
- Added Interface EncryptionSettings
- Added Type Alias BcdrSecurityLevel
- Added Type Alias EncryptionState
- Added Type Alias IdentityType
- Added Type Alias InfrastructureEncryptionState
- Interface BackupVault has a new optional parameter bcdrSecurityLevel
- Interface KubernetesClusterRestoreCriteria has a new optional parameter resourceModifierReference
- Interface KubernetesClusterVaultTierRestoreCriteria has a new optional parameter resourceModifierReference
- Interface SecuritySettings has a new optional parameter encryptionSettings
- Added Enum KnownBcdrSecurityLevel
- Added Enum KnownEncryptionState
- Added Enum KnownIdentityType
- Added Enum KnownInfrastructureEncryptionState


## 2.0.0 (2023-12-05)

**Features**
Expand Down
2 changes: 1 addition & 1 deletion sdk/dataprotection/arm-dataprotection/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2023 Microsoft
Copyright (c) 2024 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
6 changes: 3 additions & 3 deletions sdk/dataprotection/arm-dataprotection/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "cb798ffa99c193a88388f358965f377fde3699e8",
"commit": "8bf919b0730d585384708f4e4d8a756c4ea711dd",
"readme": "specification/dataprotection/resource-manager/readme.md",
"autorest_command": "autorest --version=3.9.7 --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\\dataprotection\\resource-manager\\readme.md --use=@autorest/[email protected] --generate-sample=true",
"autorest_command": "autorest --version=3.9.7 --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/dataprotection/resource-manager/readme.md --use=@autorest/typescript@^6.0.12",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/[email protected]",
"use": "@autorest/[email protected]"
"use": "@autorest/typescript@^6.0.12"
}
19 changes: 5 additions & 14 deletions sdk/dataprotection/arm-dataprotection/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 DataProtectionClient.",
"version": "2.0.1",
"version": "2.1.0",
"engines": {
"node": ">=18.0.0"
},
Expand All @@ -12,8 +12,8 @@
"@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.12.0",
"@azure/core-auth": "^1.6.0",
"@azure/core-rest-pipeline": "^1.14.0",
"tslib": "^2.2.0"
},
"keywords": [
Expand Down Expand Up @@ -78,7 +78,6 @@
"pack": "npm pack 2>&1",
"extract-api": "api-extractor run --local",
"lint": "echo skipped",
"audit": "echo skipped",
"clean": "rimraf --glob dist dist-browser dist-esm test-dist temp types *.tgz *.log",
"build:node": "echo skipped",
"build:browser": "echo skipped",
Expand Down Expand Up @@ -107,13 +106,5 @@
]
},
"autoPublish": true,
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/dataprotection/arm-dataprotection",
"//sampleConfiguration": {
"productName": "",
"productSlugs": [
"azure"
],
"disableDocsMs": true,
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-dataprotection?view=azure-node-preview"
}
}
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/dataprotection/arm-dataprotection"
}
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,7 @@ export interface BackupSchedule {

// @public
export interface BackupVault {
readonly bcdrSecurityLevel?: BcdrSecurityLevel;
featureSettings?: FeatureSettings;
readonly isVaultProtectedByResourceGuard?: boolean;
monitoringSettings?: MonitoringSettings;
Expand Down Expand Up @@ -777,6 +778,9 @@ export interface BaseResourceProperties {
// @public (undocumented)
export type BaseResourcePropertiesUnion = BaseResourceProperties | DefaultResourceProperties;

// @public
export type BcdrSecurityLevel = string;

// @public
export interface BlobBackupDatasourceParameters extends BackupDatasourceParameters {
containersList: string[];
Expand Down Expand Up @@ -841,6 +845,17 @@ export interface CloudError {
error?: ErrorModel;
}

// @public
export interface CmkKekIdentity {
identityId?: string;
identityType?: IdentityType;
}

// @public
export interface CmkKeyVaultProperties {
keyUri?: string;
}

// @public
export interface CopyOnExpiryOption extends CopyOption {
objectType: "CopyOnExpiryOption";
Expand Down Expand Up @@ -1269,6 +1284,17 @@ export interface DppWorkerRequest {
uri?: string;
}

// @public
export interface EncryptionSettings {
infrastructureEncryption?: InfrastructureEncryptionState;
kekIdentity?: CmkKekIdentity;
keyVaultProperties?: CmkKeyVaultProperties;
state?: EncryptionState;
}

// @public
export type EncryptionState = string;

// @public
export interface ErrorAdditionalInfo {
readonly info?: Record<string, unknown>;
Expand Down Expand Up @@ -1453,6 +1479,9 @@ export interface IdentityDetails {
useSystemAssignedIdentity?: boolean;
}

// @public
export type IdentityType = string;

// @public
export interface ImmediateCopyOption extends CopyOption {
objectType: "ImmediateCopyOption";
Expand All @@ -1466,6 +1495,9 @@ export interface ImmutabilitySettings {
// @public
export type ImmutabilityState = string;

// @public
export type InfrastructureEncryptionState = string;

// @public
export interface InnerError {
additionalInfo?: {
Expand Down Expand Up @@ -1567,6 +1599,15 @@ export enum KnownAlertsState {
Enabled = "Enabled"
}

// @public
export enum KnownBcdrSecurityLevel {
Excellent = "Excellent",
Fair = "Fair",
Good = "Good",
NotSupported = "NotSupported",
Poor = "Poor"
}

// @public
export enum KnownCreatedByType {
Application = "Application",
Expand Down Expand Up @@ -1622,6 +1663,13 @@ export enum KnownDayOfWeek {
Wednesday = "Wednesday"
}

// @public
export enum KnownEncryptionState {
Disabled = "Disabled",
Enabled = "Enabled",
Inconsistent = "Inconsistent"
}

// @public
export enum KnownExistingResourcePolicy {
Patch = "Patch",
Expand All @@ -1644,13 +1692,25 @@ export enum KnownFeatureType {
Invalid = "Invalid"
}

// @public
export enum KnownIdentityType {
SystemAssigned = "SystemAssigned",
UserAssigned = "UserAssigned"
}

// @public
export enum KnownImmutabilityState {
Disabled = "Disabled",
Locked = "Locked",
Unlocked = "Unlocked"
}

// @public
export enum KnownInfrastructureEncryptionState {
Disabled = "Disabled",
Enabled = "Enabled"
}

// @public
export enum KnownMonth {
April = "April",
Expand Down Expand Up @@ -1844,6 +1904,7 @@ export interface KubernetesClusterRestoreCriteria extends ItemLevelRestoreCriter
};
objectType: "KubernetesClusterRestoreCriteria";
persistentVolumeRestoreMode?: PersistentVolumeRestoreMode;
resourceModifierReference?: NamespacedNameResource;
restoreHookReferences?: NamespacedNameResource[];
}

Expand All @@ -1861,6 +1922,7 @@ export interface KubernetesClusterVaultTierRestoreCriteria extends ItemLevelRest
};
objectType: "KubernetesClusterVaultTierRestoreCriteria";
persistentVolumeRestoreMode?: PersistentVolumeRestoreMode;
resourceModifierReference?: NamespacedNameResource;
restoreHookReferences?: NamespacedNameResource[];
stagingResourceGroupId?: string;
stagingStorageAccountId?: string;
Expand Down Expand Up @@ -2484,6 +2546,7 @@ export type SecureScoreLevel = string;

// @public
export interface SecuritySettings {
encryptionSettings?: EncryptionSettings;
immutabilitySettings?: ImmutabilitySettings;
softDeleteSettings?: SoftDeleteSettings;
}
Expand Down
Loading