@cdktf/provider-azurerm
Version:
Prebuilt azurerm Provider for Terraform CDK (cdktf)
234 lines (233 loc) • 11.9 kB
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface SpringCloudApiPortalConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#api_try_out_enabled SpringCloudApiPortal#api_try_out_enabled}
*/
readonly apiTryOutEnabled?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#gateway_ids SpringCloudApiPortal#gateway_ids}
*/
readonly gatewayIds?: string[];
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#https_only_enabled SpringCloudApiPortal#https_only_enabled}
*/
readonly httpsOnlyEnabled?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#id SpringCloudApiPortal#id}
*
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
* If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
*/
readonly id?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#instance_count SpringCloudApiPortal#instance_count}
*/
readonly instanceCount?: number;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#name SpringCloudApiPortal#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#public_network_access_enabled SpringCloudApiPortal#public_network_access_enabled}
*/
readonly publicNetworkAccessEnabled?: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#spring_cloud_service_id SpringCloudApiPortal#spring_cloud_service_id}
*/
readonly springCloudServiceId: string;
/**
* sso block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#sso SpringCloudApiPortal#sso}
*/
readonly sso?: SpringCloudApiPortalSso;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#timeouts SpringCloudApiPortal#timeouts}
*/
readonly timeouts?: SpringCloudApiPortalTimeouts;
}
export interface SpringCloudApiPortalSso {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#client_id SpringCloudApiPortal#client_id}
*/
readonly clientId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#client_secret SpringCloudApiPortal#client_secret}
*/
readonly clientSecret?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#issuer_uri SpringCloudApiPortal#issuer_uri}
*/
readonly issuerUri?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#scope SpringCloudApiPortal#scope}
*/
readonly scope?: string[];
}
export declare function springCloudApiPortalSsoToTerraform(struct?: SpringCloudApiPortalSsoOutputReference | SpringCloudApiPortalSso): any;
export declare function springCloudApiPortalSsoToHclTerraform(struct?: SpringCloudApiPortalSsoOutputReference | SpringCloudApiPortalSso): any;
export declare class SpringCloudApiPortalSsoOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
get internalValue(): SpringCloudApiPortalSso | undefined;
set internalValue(value: SpringCloudApiPortalSso | undefined);
private _clientId?;
get clientId(): string;
set clientId(value: string);
resetClientId(): void;
get clientIdInput(): string | undefined;
private _clientSecret?;
get clientSecret(): string;
set clientSecret(value: string);
resetClientSecret(): void;
get clientSecretInput(): string | undefined;
private _issuerUri?;
get issuerUri(): string;
set issuerUri(value: string);
resetIssuerUri(): void;
get issuerUriInput(): string | undefined;
private _scope?;
get scope(): string[];
set scope(value: string[]);
resetScope(): void;
get scopeInput(): string[] | undefined;
}
export interface SpringCloudApiPortalTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#create SpringCloudApiPortal#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#delete SpringCloudApiPortal#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#read SpringCloudApiPortal#read}
*/
readonly read?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#update SpringCloudApiPortal#update}
*/
readonly update?: string;
}
export declare function springCloudApiPortalTimeoutsToTerraform(struct?: SpringCloudApiPortalTimeouts | cdktf.IResolvable): any;
export declare function springCloudApiPortalTimeoutsToHclTerraform(struct?: SpringCloudApiPortalTimeouts | cdktf.IResolvable): any;
export declare class SpringCloudApiPortalTimeoutsOutputReference extends cdktf.ComplexObject {
private isEmptyObject;
private resolvableValue?;
/**
* @param terraformResource The parent resource
* @param terraformAttribute The attribute on the parent resource this class is referencing
*/
constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
get internalValue(): SpringCloudApiPortalTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: SpringCloudApiPortalTimeouts | cdktf.IResolvable | undefined);
private _create?;
get create(): string;
set create(value: string);
resetCreate(): void;
get createInput(): string | undefined;
private _delete?;
get delete(): string;
set delete(value: string);
resetDelete(): void;
get deleteInput(): string | undefined;
private _read?;
get read(): string;
set read(value: string);
resetRead(): void;
get readInput(): string | undefined;
private _update?;
get update(): string;
set update(value: string);
resetUpdate(): void;
get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal azurerm_spring_cloud_api_portal}
*/
export declare class SpringCloudApiPortal extends cdktf.TerraformResource {
static readonly tfResourceType = "azurerm_spring_cloud_api_portal";
/**
* Generates CDKTF code for importing a SpringCloudApiPortal 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 SpringCloudApiPortal to import
* @param importFromId The id of the existing SpringCloudApiPortal that should be imported. Refer to the {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the SpringCloudApiPortal to import is found
*/
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
/**
* Create a new {@link https://registry.terraform.io/providers/hashicorp/azurerm/3.116.0/docs/resources/spring_cloud_api_portal azurerm_spring_cloud_api_portal} 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 SpringCloudApiPortalConfig
*/
constructor(scope: Construct, id: string, config: SpringCloudApiPortalConfig);
private _apiTryOutEnabled?;
get apiTryOutEnabled(): boolean | cdktf.IResolvable;
set apiTryOutEnabled(value: boolean | cdktf.IResolvable);
resetApiTryOutEnabled(): void;
get apiTryOutEnabledInput(): boolean | cdktf.IResolvable | undefined;
private _gatewayIds?;
get gatewayIds(): string[];
set gatewayIds(value: string[]);
resetGatewayIds(): void;
get gatewayIdsInput(): string[] | undefined;
private _httpsOnlyEnabled?;
get httpsOnlyEnabled(): boolean | cdktf.IResolvable;
set httpsOnlyEnabled(value: boolean | cdktf.IResolvable);
resetHttpsOnlyEnabled(): void;
get httpsOnlyEnabledInput(): boolean | cdktf.IResolvable | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _instanceCount?;
get instanceCount(): number;
set instanceCount(value: number);
resetInstanceCount(): void;
get instanceCountInput(): number | undefined;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _publicNetworkAccessEnabled?;
get publicNetworkAccessEnabled(): boolean | cdktf.IResolvable;
set publicNetworkAccessEnabled(value: boolean | cdktf.IResolvable);
resetPublicNetworkAccessEnabled(): void;
get publicNetworkAccessEnabledInput(): boolean | cdktf.IResolvable | undefined;
private _springCloudServiceId?;
get springCloudServiceId(): string;
set springCloudServiceId(value: string);
get springCloudServiceIdInput(): string | undefined;
get url(): string;
private _sso;
get sso(): SpringCloudApiPortalSsoOutputReference;
putSso(value: SpringCloudApiPortalSso): void;
resetSso(): void;
get ssoInput(): SpringCloudApiPortalSso | undefined;
private _timeouts;
get timeouts(): SpringCloudApiPortalTimeoutsOutputReference;
putTimeouts(value: SpringCloudApiPortalTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | SpringCloudApiPortalTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}