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
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