@cdktf/provider-azurerm
Version:
Prebuilt azurerm Provider for Terraform CDK (cdktf)
1,128 lines • 154 kB
JavaScript
"use strict";
var _a, _b, _c, _d, _e, _f, _g;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SpringCloudApp = exports.SpringCloudAppTimeoutsOutputReference = exports.springCloudAppTimeoutsToHclTerraform = exports.springCloudAppTimeoutsToTerraform = exports.SpringCloudAppPersistentDiskOutputReference = exports.springCloudAppPersistentDiskToHclTerraform = exports.springCloudAppPersistentDiskToTerraform = exports.SpringCloudAppIngressSettingsOutputReference = exports.springCloudAppIngressSettingsToHclTerraform = exports.springCloudAppIngressSettingsToTerraform = exports.SpringCloudAppIdentityOutputReference = exports.springCloudAppIdentityToHclTerraform = exports.springCloudAppIdentityToTerraform = exports.SpringCloudAppCustomPersistentDiskList = exports.SpringCloudAppCustomPersistentDiskOutputReference = exports.springCloudAppCustomPersistentDiskToHclTerraform = exports.springCloudAppCustomPersistentDiskToTerraform = void 0;
const JSII_RTTI_SYMBOL_1 = Symbol.for("jsii.rtti");
const cdktf = require("cdktf");
function springCloudAppCustomPersistentDiskToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
mount_options: cdktf.listMapper(cdktf.stringToTerraform, false)(struct.mountOptions),
mount_path: cdktf.stringToTerraform(struct.mountPath),
read_only_enabled: cdktf.booleanToTerraform(struct.readOnlyEnabled),
share_name: cdktf.stringToTerraform(struct.shareName),
storage_name: cdktf.stringToTerraform(struct.storageName),
};
}
exports.springCloudAppCustomPersistentDiskToTerraform = springCloudAppCustomPersistentDiskToTerraform;
function springCloudAppCustomPersistentDiskToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
mount_options: {
value: cdktf.listMapperHcl(cdktf.stringToHclTerraform, false)(struct.mountOptions),
isBlock: false,
type: "set",
storageClassType: "stringList",
},
mount_path: {
value: cdktf.stringToHclTerraform(struct.mountPath),
isBlock: false,
type: "simple",
storageClassType: "string",
},
read_only_enabled: {
value: cdktf.booleanToHclTerraform(struct.readOnlyEnabled),
isBlock: false,
type: "simple",
storageClassType: "boolean",
},
share_name: {
value: cdktf.stringToHclTerraform(struct.shareName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
storage_name: {
value: cdktf.stringToHclTerraform(struct.storageName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
exports.springCloudAppCustomPersistentDiskToHclTerraform = springCloudAppCustomPersistentDiskToHclTerraform;
class SpringCloudAppCustomPersistentDiskOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param complexObjectIndex the index of this item in the list
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource, terraformAttribute, complexObjectIndex, complexObjectIsFromSet) {
super(terraformResource, terraformAttribute, complexObjectIsFromSet, complexObjectIndex);
this.isEmptyObject = false;
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._mountOptions !== undefined) {
hasAnyValues = true;
internalValueResult.mountOptions = this._mountOptions;
}
if (this._mountPath !== undefined) {
hasAnyValues = true;
internalValueResult.mountPath = this._mountPath;
}
if (this._readOnlyEnabled !== undefined) {
hasAnyValues = true;
internalValueResult.readOnlyEnabled = this._readOnlyEnabled;
}
if (this._shareName !== undefined) {
hasAnyValues = true;
internalValueResult.shareName = this._shareName;
}
if (this._storageName !== undefined) {
hasAnyValues = true;
internalValueResult.storageName = this._storageName;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._mountOptions = undefined;
this._mountPath = undefined;
this._readOnlyEnabled = undefined;
this._shareName = undefined;
this._storageName = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._mountOptions = value.mountOptions;
this._mountPath = value.mountPath;
this._readOnlyEnabled = value.readOnlyEnabled;
this._shareName = value.shareName;
this._storageName = value.storageName;
}
}
get mountOptions() {
return cdktf.Fn.tolist(this.getListAttribute('mount_options'));
}
set mountOptions(value) {
this._mountOptions = value;
}
resetMountOptions() {
this._mountOptions = undefined;
}
// Temporarily expose input value. Use with caution.
get mountOptionsInput() {
return this._mountOptions;
}
get mountPath() {
return this.getStringAttribute('mount_path');
}
set mountPath(value) {
this._mountPath = value;
}
// Temporarily expose input value. Use with caution.
get mountPathInput() {
return this._mountPath;
}
get readOnlyEnabled() {
return this.getBooleanAttribute('read_only_enabled');
}
set readOnlyEnabled(value) {
this._readOnlyEnabled = value;
}
resetReadOnlyEnabled() {
this._readOnlyEnabled = undefined;
}
// Temporarily expose input value. Use with caution.
get readOnlyEnabledInput() {
return this._readOnlyEnabled;
}
get shareName() {
return this.getStringAttribute('share_name');
}
set shareName(value) {
this._shareName = value;
}
// Temporarily expose input value. Use with caution.
get shareNameInput() {
return this._shareName;
}
get storageName() {
return this.getStringAttribute('storage_name');
}
set storageName(value) {
this._storageName = value;
}
// Temporarily expose input value. Use with caution.
get storageNameInput() {
return this._storageName;
}
}
exports.SpringCloudAppCustomPersistentDiskOutputReference = SpringCloudAppCustomPersistentDiskOutputReference;
_a = JSII_RTTI_SYMBOL_1;
SpringCloudAppCustomPersistentDiskOutputReference[_a] = { fqn: "@cdktf/provider-azurerm.springCloudApp.SpringCloudAppCustomPersistentDiskOutputReference", version: "12.27.0" };
class SpringCloudAppCustomPersistentDiskList extends cdktf.ComplexList {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
*/
constructor(terraformResource, terraformAttribute, wrapsSet) {
super(terraformResource, terraformAttribute, wrapsSet);
this.terraformResource = terraformResource;
this.terraformAttribute = terraformAttribute;
this.wrapsSet = wrapsSet;
}
/**
* @param index the index of the item to return
*/
get(index) {
return new SpringCloudAppCustomPersistentDiskOutputReference(this.terraformResource, this.terraformAttribute, index, this.wrapsSet);
}
}
exports.SpringCloudAppCustomPersistentDiskList = SpringCloudAppCustomPersistentDiskList;
_b = JSII_RTTI_SYMBOL_1;
SpringCloudAppCustomPersistentDiskList[_b] = { fqn: "@cdktf/provider-azurerm.springCloudApp.SpringCloudAppCustomPersistentDiskList", version: "12.27.0" };
function springCloudAppIdentityToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
identity_ids: cdktf.listMapper(cdktf.stringToTerraform, false)(struct.identityIds),
type: cdktf.stringToTerraform(struct.type),
};
}
exports.springCloudAppIdentityToTerraform = springCloudAppIdentityToTerraform;
function springCloudAppIdentityToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
identity_ids: {
value: cdktf.listMapperHcl(cdktf.stringToHclTerraform, false)(struct.identityIds),
isBlock: false,
type: "set",
storageClassType: "stringList",
},
type: {
value: cdktf.stringToHclTerraform(struct.type),
isBlock: false,
type: "simple",
storageClassType: "string",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
exports.springCloudAppIdentityToHclTerraform = springCloudAppIdentityToHclTerraform;
class SpringCloudAppIdentityOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource, terraformAttribute) {
super(terraformResource, terraformAttribute, false, 0);
this.isEmptyObject = false;
}
get internalValue() {
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._identityIds !== undefined) {
hasAnyValues = true;
internalValueResult.identityIds = this._identityIds;
}
if (this._type !== undefined) {
hasAnyValues = true;
internalValueResult.type = this._type;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this._identityIds = undefined;
this._type = undefined;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this._identityIds = value.identityIds;
this._type = value.type;
}
}
get identityIds() {
return cdktf.Fn.tolist(this.getListAttribute('identity_ids'));
}
set identityIds(value) {
this._identityIds = value;
}
resetIdentityIds() {
this._identityIds = undefined;
}
// Temporarily expose input value. Use with caution.
get identityIdsInput() {
return this._identityIds;
}
// principal_id - computed: true, optional: false, required: false
get principalId() {
return this.getStringAttribute('principal_id');
}
// tenant_id - computed: true, optional: false, required: false
get tenantId() {
return this.getStringAttribute('tenant_id');
}
get type() {
return this.getStringAttribute('type');
}
set type(value) {
this._type = value;
}
// Temporarily expose input value. Use with caution.
get typeInput() {
return this._type;
}
}
exports.SpringCloudAppIdentityOutputReference = SpringCloudAppIdentityOutputReference;
_c = JSII_RTTI_SYMBOL_1;
SpringCloudAppIdentityOutputReference[_c] = { fqn: "@cdktf/provider-azurerm.springCloudApp.SpringCloudAppIdentityOutputReference", version: "12.27.0" };
function springCloudAppIngressSettingsToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
backend_protocol: cdktf.stringToTerraform(struct.backendProtocol),
read_timeout_in_seconds: cdktf.numberToTerraform(struct.readTimeoutInSeconds),
send_timeout_in_seconds: cdktf.numberToTerraform(struct.sendTimeoutInSeconds),
session_affinity: cdktf.stringToTerraform(struct.sessionAffinity),
session_cookie_max_age: cdktf.numberToTerraform(struct.sessionCookieMaxAge),
};
}
exports.springCloudAppIngressSettingsToTerraform = springCloudAppIngressSettingsToTerraform;
function springCloudAppIngressSettingsToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
backend_protocol: {
value: cdktf.stringToHclTerraform(struct.backendProtocol),
isBlock: false,
type: "simple",
storageClassType: "string",
},
read_timeout_in_seconds: {
value: cdktf.numberToHclTerraform(struct.readTimeoutInSeconds),
isBlock: false,
type: "simple",
storageClassType: "number",
},
send_timeout_in_seconds: {
value: cdktf.numberToHclTerraform(struct.sendTimeoutInSeconds),
isBlock: false,
type: "simple",
storageClassType: "number",
},
session_affinity: {
value: cdktf.stringToHclTerraform(struct.sessionAffinity),
isBlock: false,
type: "simple",
storageClassType: "string",
},
session_cookie_max_age: {
value: cdktf.numberToHclTerraform(struct.sessionCookieMaxAge),
isBlock: false,
type: "simple",
storageClassType: "number",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
exports.springCloudAppIngressSettingsToHclTerraform = springCloudAppIngressSettingsToHclTerraform;
class SpringCloudAppIngressSettingsOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource, terraformAttribute) {
super(terraformResource, terraformAttribute, false, 0);
this.isEmptyObject = false;
}
get internalValue() {
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._backendProtocol !== undefined) {
hasAnyValues = true;
internalValueResult.backendProtocol = this._backendProtocol;
}
if (this._readTimeoutInSeconds !== undefined) {
hasAnyValues = true;
internalValueResult.readTimeoutInSeconds = this._readTimeoutInSeconds;
}
if (this._sendTimeoutInSeconds !== undefined) {
hasAnyValues = true;
internalValueResult.sendTimeoutInSeconds = this._sendTimeoutInSeconds;
}
if (this._sessionAffinity !== undefined) {
hasAnyValues = true;
internalValueResult.sessionAffinity = this._sessionAffinity;
}
if (this._sessionCookieMaxAge !== undefined) {
hasAnyValues = true;
internalValueResult.sessionCookieMaxAge = this._sessionCookieMaxAge;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this._backendProtocol = undefined;
this._readTimeoutInSeconds = undefined;
this._sendTimeoutInSeconds = undefined;
this._sessionAffinity = undefined;
this._sessionCookieMaxAge = undefined;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this._backendProtocol = value.backendProtocol;
this._readTimeoutInSeconds = value.readTimeoutInSeconds;
this._sendTimeoutInSeconds = value.sendTimeoutInSeconds;
this._sessionAffinity = value.sessionAffinity;
this._sessionCookieMaxAge = value.sessionCookieMaxAge;
}
}
get backendProtocol() {
return this.getStringAttribute('backend_protocol');
}
set backendProtocol(value) {
this._backendProtocol = value;
}
resetBackendProtocol() {
this._backendProtocol = undefined;
}
// Temporarily expose input value. Use with caution.
get backendProtocolInput() {
return this._backendProtocol;
}
get readTimeoutInSeconds() {
return this.getNumberAttribute('read_timeout_in_seconds');
}
set readTimeoutInSeconds(value) {
this._readTimeoutInSeconds = value;
}
resetReadTimeoutInSeconds() {
this._readTimeoutInSeconds = undefined;
}
// Temporarily expose input value. Use with caution.
get readTimeoutInSecondsInput() {
return this._readTimeoutInSeconds;
}
get sendTimeoutInSeconds() {
return this.getNumberAttribute('send_timeout_in_seconds');
}
set sendTimeoutInSeconds(value) {
this._sendTimeoutInSeconds = value;
}
resetSendTimeoutInSeconds() {
this._sendTimeoutInSeconds = undefined;
}
// Temporarily expose input value. Use with caution.
get sendTimeoutInSecondsInput() {
return this._sendTimeoutInSeconds;
}
get sessionAffinity() {
return this.getStringAttribute('session_affinity');
}
set sessionAffinity(value) {
this._sessionAffinity = value;
}
resetSessionAffinity() {
this._sessionAffinity = undefined;
}
// Temporarily expose input value. Use with caution.
get sessionAffinityInput() {
return this._sessionAffinity;
}
get sessionCookieMaxAge() {
return this.getNumberAttribute('session_cookie_max_age');
}
set sessionCookieMaxAge(value) {
this._sessionCookieMaxAge = value;
}
resetSessionCookieMaxAge() {
this._sessionCookieMaxAge = undefined;
}
// Temporarily expose input value. Use with caution.
get sessionCookieMaxAgeInput() {
return this._sessionCookieMaxAge;
}
}
exports.SpringCloudAppIngressSettingsOutputReference = SpringCloudAppIngressSettingsOutputReference;
_d = JSII_RTTI_SYMBOL_1;
SpringCloudAppIngressSettingsOutputReference[_d] = { fqn: "@cdktf/provider-azurerm.springCloudApp.SpringCloudAppIngressSettingsOutputReference", version: "12.27.0" };
function springCloudAppPersistentDiskToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
mount_path: cdktf.stringToTerraform(struct.mountPath),
size_in_gb: cdktf.numberToTerraform(struct.sizeInGb),
};
}
exports.springCloudAppPersistentDiskToTerraform = springCloudAppPersistentDiskToTerraform;
function springCloudAppPersistentDiskToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
mount_path: {
value: cdktf.stringToHclTerraform(struct.mountPath),
isBlock: false,
type: "simple",
storageClassType: "string",
},
size_in_gb: {
value: cdktf.numberToHclTerraform(struct.sizeInGb),
isBlock: false,
type: "simple",
storageClassType: "number",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
exports.springCloudAppPersistentDiskToHclTerraform = springCloudAppPersistentDiskToHclTerraform;
class SpringCloudAppPersistentDiskOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource, terraformAttribute) {
super(terraformResource, terraformAttribute, false, 0);
this.isEmptyObject = false;
}
get internalValue() {
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._mountPath !== undefined) {
hasAnyValues = true;
internalValueResult.mountPath = this._mountPath;
}
if (this._sizeInGb !== undefined) {
hasAnyValues = true;
internalValueResult.sizeInGb = this._sizeInGb;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this._mountPath = undefined;
this._sizeInGb = undefined;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this._mountPath = value.mountPath;
this._sizeInGb = value.sizeInGb;
}
}
get mountPath() {
return this.getStringAttribute('mount_path');
}
set mountPath(value) {
this._mountPath = value;
}
resetMountPath() {
this._mountPath = undefined;
}
// Temporarily expose input value. Use with caution.
get mountPathInput() {
return this._mountPath;
}
get sizeInGb() {
return this.getNumberAttribute('size_in_gb');
}
set sizeInGb(value) {
this._sizeInGb = value;
}
// Temporarily expose input value. Use with caution.
get sizeInGbInput() {
return this._sizeInGb;
}
}
exports.SpringCloudAppPersistentDiskOutputReference = SpringCloudAppPersistentDiskOutputReference;
_e = JSII_RTTI_SYMBOL_1;
SpringCloudAppPersistentDiskOutputReference[_e] = { fqn: "@cdktf/provider-azurerm.springCloudApp.SpringCloudAppPersistentDiskOutputReference", version: "12.27.0" };
function springCloudAppTimeoutsToTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
return {
create: cdktf.stringToTerraform(struct.create),
delete: cdktf.stringToTerraform(struct.delete),
read: cdktf.stringToTerraform(struct.read),
update: cdktf.stringToTerraform(struct.update),
};
}
exports.springCloudAppTimeoutsToTerraform = springCloudAppTimeoutsToTerraform;
function springCloudAppTimeoutsToHclTerraform(struct) {
if (!cdktf.canInspect(struct) || cdktf.Tokenization.isResolvable(struct)) {
return struct;
}
if (cdktf.isComplexElement(struct)) {
throw new Error("A complex element was used as configuration, this is not supported: https://cdk.tf/complex-object-as-configuration");
}
const attrs = {
create: {
value: cdktf.stringToHclTerraform(struct.create),
isBlock: false,
type: "simple",
storageClassType: "string",
},
delete: {
value: cdktf.stringToHclTerraform(struct.delete),
isBlock: false,
type: "simple",
storageClassType: "string",
},
read: {
value: cdktf.stringToHclTerraform(struct.read),
isBlock: false,
type: "simple",
storageClassType: "string",
},
update: {
value: cdktf.stringToHclTerraform(struct.update),
isBlock: false,
type: "simple",
storageClassType: "string",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
exports.springCloudAppTimeoutsToHclTerraform = springCloudAppTimeoutsToHclTerraform;
class SpringCloudAppTimeoutsOutputReference extends cdktf.ComplexObject {
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource, terraformAttribute) {
super(terraformResource, terraformAttribute, false);
this.isEmptyObject = false;
}
get internalValue() {
if (this.resolvableValue) {
return this.resolvableValue;
}
let hasAnyValues = this.isEmptyObject;
const internalValueResult = {};
if (this._create !== undefined) {
hasAnyValues = true;
internalValueResult.create = this._create;
}
if (this._delete !== undefined) {
hasAnyValues = true;
internalValueResult.delete = this._delete;
}
if (this._read !== undefined) {
hasAnyValues = true;
internalValueResult.read = this._read;
}
if (this._update !== undefined) {
hasAnyValues = true;
internalValueResult.update = this._update;
}
return hasAnyValues ? internalValueResult : undefined;
}
set internalValue(value) {
if (value === undefined) {
this.isEmptyObject = false;
this.resolvableValue = undefined;
this._create = undefined;
this._delete = undefined;
this._read = undefined;
this._update = undefined;
}
else if (cdktf.Tokenization.isResolvable(value)) {
this.isEmptyObject = false;
this.resolvableValue = value;
}
else {
this.isEmptyObject = Object.keys(value).length === 0;
this.resolvableValue = undefined;
this._create = value.create;
this._delete = value.delete;
this._read = value.read;
this._update = value.update;
}
}
get create() {
return this.getStringAttribute('create');
}
set create(value) {
this._create = value;
}
resetCreate() {
this._create = undefined;
}
// Temporarily expose input value. Use with caution.
get createInput() {
return this._create;
}
get delete() {
return this.getStringAttribute('delete');
}
set delete(value) {
this._delete = value;
}
resetDelete() {
this._delete = undefined;
}
// Temporarily expose input value. Use with caution.
get deleteInput() {
return this._delete;
}
get read() {
return this.getStringAttribute('read');
}
set read(value) {
this._read = value;
}
resetRead() {
this._read = undefined;
}
// Temporarily expose input value. Use with caution.
get readInput() {
return this._read;
}
get update() {
return this.getStringAttribute('update');
}
set update(value) {
this._update = value;
}
resetUpdate() {
this._update = undefined;
}
// Temporarily expose input value. Use with caution.
get updateInput() {
return this._update;
}
}
exports.SpringCloudAppTimeoutsOutputReference = SpringCloudAppTimeoutsOutputReference;
_f = JSII_RTTI_SYMBOL_1;
SpringCloudAppTimeoutsOutputReference[_f] = { fqn: "@cdktf/provider-azurerm.springCloudApp.SpringCloudAppTimeoutsOutputReference", version: "12.27.0" };
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_app azurerm_spring_cloud_app}
*/
class SpringCloudApp extends cdktf.TerraformResource {
// ==============
// STATIC Methods
// ==============
/**
* Generates CDKTF code for importing a SpringCloudApp resource upon running "cdktf plan <stack-name>"
* @param scope The scope in which to define this construct
* @param importToId The construct id used in the generated config for the SpringCloudApp to import
* @param importFromId The id of the existing SpringCloudApp that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_app#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the SpringCloudApp to import is found
*/
static generateConfigForImport(scope, importToId, importFromId, provider) {
return new cdktf.ImportableResource(scope, importToId, { terraformResourceType: "azurerm_spring_cloud_app", importId: importFromId, provider });
}
// ===========
// INITIALIZER
// ===========
/**
* Create a new {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_app azurerm_spring_cloud_app} Resource
*
* @param scope The scope in which to define this construct
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
* @param options SpringCloudAppConfig
*/
constructor(scope, id, config) {
super(scope, id, {
terraformResourceType: 'azurerm_spring_cloud_app',
terraformGeneratorMetadata: {
providerName: 'azurerm',
providerVersion: '3.116.0',
providerVersionConstraint: '~> 3.10'
},
provider: config.provider,
dependsOn: config.dependsOn,
count: config.count,
lifecycle: config.lifecycle,
provisioners: config.provisioners,
connection: config.connection,
forEach: config.forEach
});
// custom_persistent_disk - computed: false, optional: true, required: false
this._customPersistentDisk = new SpringCloudAppCustomPersistentDiskList(this, "custom_persistent_disk", false);
// identity - computed: false, optional: true, required: false
this._identity = new SpringCloudAppIdentityOutputReference(this, "identity");
// ingress_settings - computed: false, optional: true, required: false
this._ingressSettings = new SpringCloudAppIngressSettingsOutputReference(this, "ingress_settings");
// persistent_disk - computed: false, optional: true, required: false
this._persistentDisk = new SpringCloudAppPersistentDiskOutputReference(this, "persistent_disk");
// timeouts - computed: false, optional: true, required: false
this._timeouts = new SpringCloudAppTimeoutsOutputReference(this, "timeouts");
this._addonJson = config.addonJson;
this._httpsOnly = config.httpsOnly;
this._id = config.id;
this._isPublic = config.isPublic;
this._name = config.name;
this._publicEndpointEnabled = config.publicEndpointEnabled;
this._resourceGroupName = config.resourceGroupName;
this._serviceName = config.serviceName;
this._tlsEnabled = config.tlsEnabled;
this._customPersistentDisk.internalValue = config.customPersistentDisk;
this._identity.internalValue = config.identity;
this._ingressSettings.internalValue = config.ingressSettings;
this._persistentDisk.internalValue = config.persistentDisk;
this._timeouts.internalValue = config.timeouts;
}
get addonJson() {
return this.getStringAttribute('addon_json');
}
set addonJson(value) {
this._addonJson = value;
}
resetAddonJson() {
this._addonJson = undefined;
}
// Temporarily expose input value. Use with caution.
get addonJsonInput() {
return this._addonJson;
}
// fqdn - computed: true, optional: false, required: false
get fqdn() {
return this.getStringAttribute('fqdn');
}
get httpsOnly() {
return this.getBooleanAttribute('https_only');
}
set httpsOnly(value) {
this._httpsOnly = value;
}
resetHttpsOnly() {
this._httpsOnly = undefined;
}
// Temporarily expose input value. Use with caution.
get httpsOnlyInput() {
return this._httpsOnly;
}
get id() {
return this.getStringAttribute('id');
}
set id(value) {
this._id = value;
}
resetId() {
this._id = undefined;
}
// Temporarily expose input value. Use with caution.
get idInput() {
return this._id;
}
get isPublic() {
return this.getBooleanAttribute('is_public');
}
set isPublic(value) {
this._isPublic = value;
}
resetIsPublic() {
this._isPublic = undefined;
}
// Temporarily expose input value. Use with caution.
get isPublicInput() {
return this._isPublic;
}
get name() {
return this.getStringAttribute('name');
}
set name(value) {
this._name = value;
}
// Temporarily expose input value. Use with caution.
get nameInput() {
return this._name;
}
get publicEndpointEnabled() {
return this.getBooleanAttribute('public_endpoint_enabled');
}
set publicEndpointEnabled(value) {
this._publicEndpointEnabled = value;
}
resetPublicEndpointEnabled() {
this._publicEndpointEnabled = undefined;
}
// Temporarily expose input value. Use with caution.
get publicEndpointEnabledInput() {
return this._publicEndpointEnabled;
}
get resourceGroupName() {
return this.getStringAttribute('resource_group_name');
}
set resourceGroupName(value) {
this._resourceGroupName = value;
}
// Temporarily expose input value. Use with caution.
get resourceGroupNameInput() {
return this._resourceGroupName;
}
get serviceName() {
return this.getStringAttribute('service_name');
}
set serviceName(value) {
this._serviceName = value;
}
// Temporarily expose input value. Use with caution.
get serviceNameInput() {
return this._serviceName;
}
get tlsEnabled() {
return this.getBooleanAttribute('tls_enabled');
}
set tlsEnabled(value) {
this._tlsEnabled = value;
}
resetTlsEnabled() {
this._tlsEnabled = undefined;
}
// Temporarily expose input value. Use with caution.
get tlsEnabledInput() {
return this._tlsEnabled;
}
// url - computed: true, optional: false, required: false
get url() {
return this.getStringAttribute('url');
}
get customPersistentDisk() {
return this._customPersistentDisk;
}
putCustomPersistentDisk(value) {
this._customPersistentDisk.internalValue = value;
}
resetCustomPersistentDisk() {
this._customPersistentDisk.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get customPersistentDiskInput() {
return this._customPersistentDisk.internalValue;
}
get identity() {
return this._identity;
}
putIdentity(value) {
this._identity.internalValue = value;
}
resetIdentity() {
this._identity.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get identityInput() {
return this._identity.internalValue;
}
get ingressSettings() {
return this._ingressSettings;
}
putIngressSettings(value) {
this._ingressSettings.internalValue = value;
}
resetIngressSettings() {
this._ingressSettings.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get ingressSettingsInput() {
return this._ingressSettings.internalValue;
}
get persistentDisk() {
return this._persistentDisk;
}
putPersistentDisk(value) {
this._persistentDisk.internalValue = value;
}
resetPersistentDisk() {
this._persistentDisk.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get persistentDiskInput() {
return this._persistentDisk.internalValue;
}
get timeouts() {
return this._timeouts;
}
putTimeouts(value) {
this._timeouts.internalValue = value;
}
resetTimeouts() {
this._timeouts.internalValue = undefined;
}
// Temporarily expose input value. Use with caution.
get timeoutsInput() {
return this._timeouts.internalValue;
}
// =========
// SYNTHESIS
// =========
synthesizeAttributes() {
return {
addon_json: cdktf.stringToTerraform(this._addonJson),
https_only: cdktf.booleanToTerraform(this._httpsOnly),
id: cdktf.stringToTerraform(this._id),
is_public: cdktf.booleanToTerraform(this._isPublic),
name: cdktf.stringToTerraform(this._name),
public_endpoint_enabled: cdktf.booleanToTerraform(this._publicEndpointEnabled),
resource_group_name: cdktf.stringToTerraform(this._resourceGroupName),
service_name: cdktf.stringToTerraform(this._serviceName),
tls_enabled: cdktf.booleanToTerraform(this._tlsEnabled),
custom_persistent_disk: cdktf.listMapper(springCloudAppCustomPersistentDiskToTerraform, true)(this._customPersistentDisk.internalValue),
identity: springCloudAppIdentityToTerraform(this._identity.internalValue),
ingress_settings: springCloudAppIngressSettingsToTerraform(this._ingressSettings.internalValue),
persistent_disk: springCloudAppPersistentDiskToTerraform(this._persistentDisk.internalValue),
timeouts: springCloudAppTimeoutsToTerraform(this._timeouts.internalValue),
};
}
synthesizeHclAttributes() {
const attrs = {
addon_json: {
value: cdktf.stringToHclTerraform(this._addonJson),
isBlock: false,
type: "simple",
storageClassType: "string",
},
https_only: {
value: cdktf.booleanToHclTerraform(this._httpsOnly),
isBlock: false,
type: "simple",
storageClassType: "boolean",
},
id: {
value: cdktf.stringToHclTerraform(this._id),
isBlock: false,
type: "simple",
storageClassType: "string",
},
is_public: {
value: cdktf.booleanToHclTerraform(this._isPublic),
isBlock: false,
type: "simple",
storageClassType: "boolean",
},
name: {
value: cdktf.stringToHclTerraform(this._name),
isBlock: false,
type: "simple",
storageClassType: "string",
},
public_endpoint_enabled: {
value: cdktf.booleanToHclTerraform(this._publicEndpointEnabled),
isBlock: false,
type: "simple",
storageClassType: "boolean",
},
resource_group_name: {
value: cdktf.stringToHclTerraform(this._resourceGroupName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
service_name: {
value: cdktf.stringToHclTerraform(this._serviceName),
isBlock: false,
type: "simple",
storageClassType: "string",
},
tls_enabled: {
value: cdktf.booleanToHclTerraform(this._tlsEnabled),
isBlock: false,
type: "simple",
storageClassType: "boolean",
},
custom_persistent_disk: {
value: cdktf.listMapperHcl(springCloudAppCustomPersistentDiskToHclTerraform, true)(this._customPersistentDisk.internalValue),
isBlock: true,
type: "list",
storageClassType: "SpringCloudAppCustomPersistentDiskList",
},
identity: {
value: springCloudAppIdentityToHclTerraform(this._identity.internalValue),
isBlock: true,
type: "list",
storageClassType: "SpringCloudAppIdentityList",
},
ingress_settings: {
value: springCloudAppIngressSettingsToHclTerraform(this._ingressSettings.internalValue),
isBlock: true,
type: "list",
storageClassType: "SpringCloudAppIngressSettingsList",
},
persistent_disk: {
value: springCloudAppPersistentDiskToHclTerraform(this._persistentDisk.internalValue),
isBlock: true,
type: "list",
storageClassType: "SpringCloudAppPersistentDiskList",
},
timeouts: {
value: springCloudAppTimeoutsToHclTerraform(this._timeouts.internalValue),
isBlock: true,
type: "struct",
storageClassType: "SpringCloudAppTimeouts",
},
};
// remove undefined attributes
return Object.fromEntries(Object.entries(attrs).filter(([_, value]) => value !== undefined && value.value !== undefined));
}
}
exports.SpringCloudApp = SpringCloudApp;
_g = JSII_RTTI_SYMBOL_1;
SpringCloudApp[_g] = { fqn: "@cdktf/provider-azurerm.springCloudApp.SpringCloudApp", version: "12.27.0" };
// =================
// STATIC PROPERTIES
// =================
SpringCloudApp.tfResourceType = "azurerm_spring_cloud_app";
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvc3ByaW5nLWNsb3VkLWFwcC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQVNBLCtCQUErQjtBQWtHL0IsU0FBZ0IsNkNBQTZDLENBQUMsTUFBK0Q7SUFDM0gsSUFBSSxDQUFDLEtBQUssQ0FBQyxVQUFVLENBQUMsTUFBTSxDQUFDLElBQUksS0FBSyxDQUFDLFlBQVksQ0FBQyxZQUFZLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQztRQUFDLE9BQU8sTUFBTSxDQUFDO0lBQUMsQ0FBQztJQUM1RixJQUFJLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDO1FBQ25DLE1BQU0sSUFBSSxLQUFLLENBQUMsb0hBQW9ILENBQUMsQ0FBQztJQUN4SSxDQUFDO0lBQ0QsT0FBTztRQUNMLGFBQWEsRUFBRSxLQUFLLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxpQkFBaUIsRUFBRSxLQUFLLENBQUMsQ0FBQyxNQUFPLENBQUMsWUFBWSxDQUFDO1FBQ3JGLFVBQVUsRUFBRSxLQUFLLENBQUMsaUJBQWlCLENBQUMsTUFBTyxDQUFDLFNBQVMsQ0FBQztRQUN0RCxpQkFBaUIsRUFBRSxLQUFLLENBQUMsa0JBQWtCLENBQUMsTUFBTyxDQUFDLGVBQWUsQ0FBQztRQUNwRSxVQUFVLEVBQUUsS0FBSyxDQUFDLGlCQUFpQixDQUFDLE1BQU8sQ0FBQyxTQUFTLENBQUM7UUFDdEQsWUFBWSxFQUFFLEtBQUssQ0FBQyxpQkFBaUIsQ0FBQyxNQUFPLENBQUMsV0FBVyxDQUFDO0tBQzNELENBQUE7QUFDSCxDQUFDO0FBWkQsc0dBWUM7QUFHRCxTQUFnQixnREFBZ0QsQ0FBQyxNQUErRDtJQUM5SCxJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsWUFBWSxDQUFDLFlBQVksQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDO1FBQUMsT0FBTyxNQUFNLENBQUM7SUFBQyxDQUFDO0lBQzVGLElBQUksS0FBSyxDQUFDLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUM7UUFDbkMsTUFBTSxJQUFJLEtBQUssQ0FBQyxvSEFBb0gsQ0FBQyxDQUFDO0lBQ3hJLENBQUM7SUFDRCxNQUFNLEtBQUssR0FBRztRQUNaLGFBQWEsRUFBRTtZQUNiLEtBQUssRUFBRSxLQUFLLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxvQkFBb0IsRUFBRSxLQUFLLENBQUMsQ0FBQyxNQUFPLENBQUMsWUFBWSxDQUFDO1lBQ25GLE9BQU8sRUFBRSxLQUFLO1lBQ2QsSUFBSSxFQUFFLEtBQUs7WUFDWCxnQkFBZ0IsRUFBRSxZQUFZO1NBQy9CO1FBQ0QsVUFBVSxFQUFFO1lBQ1YsS0FBSyxFQUFFLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxNQUFPLENBQUMsU0FBUyxDQUFDO1lBQ3BELE9BQU8sRUFBRSxLQUFLO1lBQ2QsSUFBSSxFQUFFLFFBQVE7WUFDZCxnQkFBZ0IsRUFBRSxRQUFRO1NBQzNCO1FBQ0QsaUJBQWlCLEVBQUU7WUFDakIsS0FBSyxFQUFFLEtBQUssQ0FBQyxxQkFBcUIsQ0FBQyxNQUFPLENBQUMsZUFBZSxDQUFDO1lBQzNELE9BQU8sRUFBRSxLQUFLO1lBQ2QsSUFBSSxFQUFFLFFBQVE7WUFDZCxnQkFBZ0IsRUFBRSxTQUFTO1NBQzVCO1FBQ0QsVUFBVSxFQUFFO1lBQ1YsS0FBSyxFQUFFLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxNQUFPLENBQUMsU0FBUyxDQUFDO1lBQ3BELE9BQU8sRUFBRSxLQUFLO1lBQ2QsSUFBSSxFQUFFLFFBQVE7WUFDZCxnQkFBZ0IsRUFBRSxRQUFRO1NBQzNCO1FBQ0QsWUFBWSxFQUFFO1lBQ1osS0FBSyxFQUFFLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxNQUFPLENBQUMsV0FBVyxDQUFDO1lBQ3RELE9BQU8sRUFBRSxLQUFLO1lBQ2QsSUFBSSxFQUFFLFFBQVE7WUFDZCxnQkFBZ0IsRUFBRSxRQUFRO1NBQzNCO0tBQ0YsQ0FBQztJQUVGLDhCQUE4QjtJQUM5QixPQUFPLE1BQU0sQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxLQUFLLENBQUMsRUFBRSxFQUFFLENBQUMsS0FBSyxLQUFLLFNBQVMsSUFBSSxLQUFLLENBQUMsS0FBSyxLQUFLLFNBQVMsQ0FBQyxDQUFDLENBQUM7QUFDNUgsQ0FBQztBQXhDRCw0R0F3Q0M7QUFFRCxNQUFhLGlEQUFrRCxTQUFRLEtBQUssQ0FBQyxhQUFhO0lBSXhGOzs7OztNQUtFO0lBQ0YsWUFBbUIsaUJBQTZDLEVBQUUsa0JBQTBCLEVBQUUsa0JBQTBCLEVBQUUsc0JBQStCO1FBQ3ZKLEtBQUssQ0FBQyxpQkFBaUIsRUFBRSxrQkFBa0IsRUFBRSxzQkFBc0IsRUFBRSxrQkFBa0IsQ0FBQyxDQUFDO1FBVm5GLGtCQUFhLEdBQUcsS0FBSyxDQUFDO0lBVzlCLENBQUM7SUFFRCxJQUFXLGFBQWE7UUFDdEIsSUFBSSxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7WUFDekIsT0FBTyxJQUFJLENBQUMsZUFBZSxDQUFDO1FBQzlCLENBQUM7UUFDRCxJQUFJLFlBQVksR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDO1FBQ3RDLE1BQU0sbUJBQW1CLEdBQVEsRUFBRSxDQUFDO1FBQ3BDLElBQUksSUFBSSxDQUFDLGFBQWEsS0FBSyxTQUFTLEVBQUUsQ0FBQztZQUNyQyxZQUFZLEdBQUcsSUFBSSxDQUFDO1lBQ3BCLG1CQUFtQixDQUFDLFlBQVksR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDO1FBQ3hELENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxVQUFVLEtBQUssU0FBUyxFQUFFLENBQUM7WUFDbEMsWUFBWSxHQUFHLElBQUksQ0FBQztZQUNwQixtQkFBbUIsQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQztRQUNsRCxDQUFDO1FBQ0QsSUFBSSxJQUFJLENBQUMsZ0JBQWdCLEtBQUssU0FBUyxFQUFFLENBQUM7WUFDeEMsWUFBWSxHQUFHLElBQUksQ0FBQztZQUNwQixtQkFBbUIsQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDO1FBQzlELENBQUM7UUFDRCxJQUFJLElBQUksQ0FBQyxVQUFVLEtBQUssU0FBUyxFQUFFLENBQUM7WUFDbEMsWUFBWSxHQUFHLElBQUksQ0FBQztZQUNwQixtQkFBbUIsQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQztRQUNsRCxDQUFDO1FBQ0QsSUFBSSxJQUFJLENBQUMsWUFBWSxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQ3BDLFlBQVksR0FBRyxJQUFJLENBQUM7WUFDcEIsbUJBQW1CLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUM7UUFDdEQsQ0FBQztRQUNELE9BQU8sWUFBWSxDQUFDLENBQUMsQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO0lBQ3hELENBQUM7SUFFRCxJQUFXLGFBQWEsQ0FBQyxLQUF5RTtRQUNoRyxJQUFJLEtBQUssS0FBSyxTQUFTLEVBQUUsQ0FBQztZQUN4QixJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQztZQUMzQixJQUFJLENBQUMsZUFBZSxHQUFHLFNBQVMsQ0FBQztZQUNqQyxJQUFJLENBQUMsYUFBYSxHQUFHLFNBQVMsQ0FBQztZQUMvQixJQUFJLENBQUMsVUFBVSxHQUFHLFNBQVMsQ0FBQztZQUM1QixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsU0FBUyxDQUFDO1lBQ2xDLElBQUksQ0FBQyxVQUFVLEdBQUcsU0FBUyxDQUFDO1lBQzVCLElBQUksQ0FBQyxZQUFZLEdBQUcsU0FBUyxDQUFDO1FBQ2hDLENBQUM7YUFDSSxJQUFJLEtBQUssQ0FBQyxZQUFZLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUM7WUFDaEQsSUFBSSxDQUFDLGFBQWEsR0FBRyxLQUFLLENBQUM7WUFDM0IsSUFBSSxDQUFDLGVBQWUsR0FBRyxLQUFLLENBQUM7UUFDL0IsQ0FBQzthQUNJLENBQUM7WUFDSixJQUFJLENBQUMsYUFBYSxHQUFHLE1BQU0sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsTUFBTSxLQUFLLENBQUMsQ0FBQztZQUNyRCxJQUFJLENBQUMsZUFBZSxHQUFHLFNBQVMsQ0FBQztZQUNqQyxJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQyxZQUFZLENBQUM7WUFDeEMsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUMsU0FBUyxDQUFDO1lBQ2xDLElBQUksQ0FBQyxnQkFBZ0IsR0FBRyxLQUFLLENBQUMsZUFBZSxDQUFDO1lBQzlDLElBQUksQ0FBQyxVQUFVLEdBQUcsS0FBSyxDQUFDLFNBQVMsQ0FBQztZQUNsQyxJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQyxXQUFXLENBQUM7UUFDeEMsQ0FBQztJQUNILENBQUM7SUFJRCxJQUFXLFlBQVk7UUFDckIsT0FBTyxLQUFLLENBQUMsRUFBRSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsZUFBZSxDQUFDLENBQUMsQ0FBQztJQUNqRSxDQUFDO0lBQ0QsSUFBVyxZQUFZLENBQUMsS0FBZTtRQUNyQyxJQUFJLENBQUMsYUFBYSxHQUFHLEtBQUssQ0FBQztJQUM3QixDQUFDO0lBQ00saUJBQWlCO1FBQ3RCLElBQUksQ0FBQyxhQUFhLEdBQUcsU0FBUyxDQUFDO0lBQ2pDLENBQUM7SUFDRCxvREFBb0Q7SUFDcEQsSUFBVyxpQkFBaUI7UUFDMUIsT0FBTyxJQUFJLENBQUMsYUFBYSxDQUFDO0lBQzVCLENBQUM7SUFJRCxJQUFXLFNBQVM7UUFDbEIsT0FBTyxJQUFJLENBQUMsa0JBQWtCLENBQUMsWUFBWSxDQUFDLENBQUM7SUFDL0MsQ0FBQztJQUNELElBQVcsU0FBUyxDQUFDLEtBQWE7UUFDaEMsSUFBSSxDQUFDLFVBQVUsR0FBRyxLQUFLLENBQUM7SUFDMUIsQ0F