@gradientedge/cdk-utils 9.42.1 → 9.43.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,6 +27,7 @@ export declare class CommonAzureStack extends TerraformStack {
27
27
  domainName: any;
28
28
  extraContexts: any;
29
29
  features: any;
30
+ location: any;
30
31
  name: any;
31
32
  resourceGroupName: any;
32
33
  skipStageForARecords: any;
@@ -43,6 +43,7 @@ class CommonAzureStack extends cdktf_1.TerraformStack {
43
43
  domainName: this.node.tryGetContext('domainName'),
44
44
  extraContexts: this.node.tryGetContext('extraContexts'),
45
45
  features: this.node.tryGetContext('features'),
46
+ location: this.node.tryGetContext('location'),
46
47
  name: this.node.tryGetContext('resourceGroupName'),
47
48
  resourceGroupName: this.node.tryGetContext('resourceGroupName'),
48
49
  skipStageForARecords: this.node.tryGetContext('skipStageForARecords'),
@@ -14,6 +14,7 @@ export interface CommonAzureStackProps extends BaseProps, AzurermProviderConfig
14
14
  resourceNameOptions?: {
15
15
  [key: string]: AzureResourceNameFormatterProps;
16
16
  };
17
+ location?: string;
17
18
  }
18
19
  export interface AzureRemoteBackendProps extends AzurermBackendConfig {
19
20
  type: AzureRemoteBackend;
@@ -6,6 +6,7 @@ import { ApiManagementApiOperationPolicyConfig } from '@cdktf/provider-azurerm/l
6
6
  export interface ApiManagementProps extends ApiManagementConfig {
7
7
  }
8
8
  export interface ApiManagementBackendProps extends ApiManagementBackendConfig {
9
+ backendUrlPath?: string;
9
10
  }
10
11
  export interface ApiManagementApiProps extends ApiManagementApiConfig {
11
12
  operations: ApiManagementApiOperationConfig[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.42.1",
3
+ "version": "9.43.1",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -47,6 +47,7 @@ export class CommonAzureStack extends TerraformStack {
47
47
  domainName: this.node.tryGetContext('domainName'),
48
48
  extraContexts: this.node.tryGetContext('extraContexts'),
49
49
  features: this.node.tryGetContext('features'),
50
+ location: this.node.tryGetContext('location'),
50
51
  name: this.node.tryGetContext('resourceGroupName'),
51
52
  resourceGroupName: this.node.tryGetContext('resourceGroupName'),
52
53
  skipStageForARecords: this.node.tryGetContext('skipStageForARecords'),
@@ -13,6 +13,7 @@ export interface CommonAzureStackProps extends BaseProps, AzurermProviderConfig
13
13
  resourcePrefix?: string
14
14
  resourceSuffix?: string
15
15
  resourceNameOptions?: { [key: string]: AzureResourceNameFormatterProps }
16
+ location?: string
16
17
  }
17
18
 
18
19
  export interface AzureRemoteBackendProps extends AzurermBackendConfig {
@@ -6,7 +6,9 @@ import { ApiManagementApiOperationPolicyConfig } from '@cdktf/provider-azurerm/l
6
6
 
7
7
  export interface ApiManagementProps extends ApiManagementConfig {}
8
8
 
9
- export interface ApiManagementBackendProps extends ApiManagementBackendConfig {}
9
+ export interface ApiManagementBackendProps extends ApiManagementBackendConfig {
10
+ backendUrlPath?: string
11
+ }
10
12
 
11
13
  export interface ApiManagementApiProps extends ApiManagementApiConfig {
12
14
  operations: ApiManagementApiOperationConfig[]