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/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Microsoft
Copyright (c) 2020 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
2 changes: 1 addition & 1 deletion sdk/appconfiguration/arm-appconfiguration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to

- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)

![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fsdk%2Fappconfiguration%2Farm-appconfiguration%2FREADME.png)
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/appconfiguration/arm-appconfiguration/README.png)
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class AppConfigurationManagementClient extends AppConfigurationManagementClientC
// Operation groups
configurationStores: operations.ConfigurationStores;
operations: operations.Operations;
privateEndpointConnections: operations.PrivateEndpointConnections;
privateLinkResources: operations.PrivateLinkResources;

/**
* Initializes a new instance of the AppConfigurationManagementClient class.
Expand All @@ -30,6 +32,8 @@ class AppConfigurationManagementClient extends AppConfigurationManagementClientC
super(credentials, subscriptionId, options);
this.configurationStores = new operations.ConfigurationStores(this);
this.operations = new operations.Operations(this);
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
this.privateLinkResources = new operations.PrivateLinkResources(this);
}
}

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.0.0";
const packageVersion = "1.1.0";

export class AppConfigurationManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand Down Expand Up @@ -44,7 +44,7 @@ export class AppConfigurationManagementClientContext extends msRestAzure.AzureSe

super(credentials, options);

this.apiVersion = '2019-02-01-preview';
this.apiVersion = '2019-11-01-preview';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,17 @@ export {
ConfigurationStore,
ConfigurationStoreListResult,
ConfigurationStoreUpdateParameters,
EncryptionProperties,
ErrorModel,
KeyValue,
KeyVaultProperties,
ListKeyValueParameters,
PrivateEndpoint,
PrivateEndpointConnection,
PrivateLinkServiceConnectionState,
RegenerateKeyParameters,
Resource
Resource,
ResourceIdentity,
Sku,
UserIdentity
} from "../models/mappers";
Loading