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
2 changes: 1 addition & 1 deletion sdk/appconfiguration/arm-appconfiguration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/arm-appconfiguration",
"author": "Microsoft Corporation",
"description": "AppConfigurationManagementClient Library with typescript type definitions for node.js and browser.",
"version": "1.1.0",
"version": "1.2.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.0.1",
"@azure/ms-rest-js": "^2.0.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";

const packageName = "@azure/arm-appconfiguration";
const packageVersion = "1.1.0";
const packageVersion = "1.2.0";

export class AppConfigurationManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand Down
5 changes: 5 additions & 0 deletions sdk/appconfiguration/arm-appconfiguration/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@ export interface ConfigurationStoreUpdateParameters {
* The encryption settings of the configuration store.
*/
encryption?: EncryptionProperties;
/**
* Control permission for data plane traffic coming from public networks while private endpoint
* is enabled. Possible values include: 'Enabled', 'Disabled'
*/
publicNetworkAccess?: PublicNetworkAccess;
/**
* The managed identity information for the configuration store.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,12 @@ export const ConfigurationStoreUpdateParameters: msRest.CompositeMapper = {
className: "EncryptionProperties"
}
},
publicNetworkAccess: {
serializedName: "properties.publicNetworkAccess",
type: {
name: "String"
}
},
identity: {
serializedName: "identity",
type: {
Expand Down