import * as enums from "./enums"; import * as pulumi from "@pulumi/pulumi"; /** * Configuration for action */ export interface ActionConfigurationArgs { /** * The access level of the action */ accessLevel?: pulumi.Input; /** * The identity used by the action */ identity?: pulumi.Input; /** * The mode of the action */ mode?: pulumi.Input; } /** * Agent Connector Properties */ export interface AgentConnectorPropertiesArgs { /** * The type of the data connector */ dataConnectorType?: pulumi.Input; /** * Data source connection string or endpoint */ dataSource?: pulumi.Input; /** * Endpoint of the connector */ endpoint?: pulumi.Input; /** * Additional properties for the data connector which can be used to store custom key-value pairs */ extendedProperties?: any | undefined; /** * Identity used to access the data source */ identity?: pulumi.Input; } /** * Agent identity configuration */ export interface AgentIdentityArgs { /** * Initial sponsor group ID (required for agent identity) */ initialSponsorGroupId: pulumi.Input; } /** * Properties of the Agent */ export interface AgentPropertiesArgs { /** * Configuration for action */ actionConfiguration?: pulumi.Input; /** * Agent identity configuration for accessing resources */ agentIdentity?: pulumi.Input; /** * The agent space ID referenced by the agent */ agentSpaceId?: pulumi.Input; /** * Default AI model configuration for the agent */ defaultModel?: pulumi.Input; /** * Incident management configurations */ incidentManagementConfiguration?: pulumi.Input; /** * Knowledge graph configuration for agent */ knowledgeGraphConfiguration?: pulumi.Input; /** * Log configurations */ logConfiguration?: pulumi.Input; /** * The upgrade channel of the agent */ upgradeChannel?: pulumi.Input; } /** * Agent Space Connector Properties */ export interface AgentSpaceConnectorPropertiesArgs { /** * The type of the data connector */ dataConnectorType?: pulumi.Input; /** * Data source connection string or endpoint */ dataSource?: pulumi.Input; /** * Endpoint of the connector */ endpoint?: pulumi.Input; /** * Additional properties for the data connector which can be used to store custom key-value pairs */ extendedProperties?: any | undefined; /** * Identity used to access the data source */ identity?: pulumi.Input; } /** * Policy configurations for an Agent Space */ export interface AgentSpacePoliciesArgs { /** * Configuration for Geneva Actions policy */ genevaActionsConfiguration?: pulumi.Input; } /** * Agent Space specific properties */ export interface AgentSpacePropertiesArgs { /** * Description of the Agent Space */ description?: pulumi.Input; /** * Maximum number of agents allowed in the Agent Space */ maxAgentCount?: pulumi.Input; /** * Policy configurations for the Agent Space */ policies?: pulumi.Input; /** * Universal unique ID (UUID) of the Service Tree associated with this Agent Space */ serviceTreeId?: pulumi.Input; } /** * The configuration settings of the Allowed Audiences validation flow. */ export interface AllowedAudiencesValidationArgs { /** * The configuration settings of the allowed list of audiences from which to validate the JWT token. */ allowedAudiences?: pulumi.Input[] | undefined>; } /** * The configuration settings of the Azure Active Directory allowed principals. */ export interface AllowedPrincipalsArgs { /** * The list of the allowed groups. */ groups?: pulumi.Input[] | undefined>; /** * The list of the allowed identities. */ identities?: pulumi.Input[] | undefined>; } /** * Configuration of Application Insights */ export interface AppInsightsConfigurationArgs { /** * Application Insights connection string */ connectionString?: pulumi.Input; } /** * Configuration of application logs */ export interface AppLogsConfigurationArgs { /** * Logs destination, can be 'log-analytics', 'azure-monitor' or 'none' */ destination?: pulumi.Input; /** * Log Analytics configuration, must only be provided when destination is configured as 'log-analytics' */ logAnalyticsConfiguration?: pulumi.Input; } /** * The configuration settings of the app registration for providers that have app ids and app secrets */ export interface AppRegistrationArgs { /** * The App ID of the app used for login. */ appId?: pulumi.Input; /** * The app setting name that contains the app secret. */ appSecretSettingName?: pulumi.Input; } /** * The configuration settings of the Apple provider. */ export interface AppleArgs { /** * false if the Apple provider should not be enabled despite the set registration; otherwise, true. */ enabled?: pulumi.Input; /** * The configuration settings of the login flow. */ login?: pulumi.Input; /** * The configuration settings of the Apple registration. */ registration?: pulumi.Input; } /** * The configuration settings of the registration for the Apple provider */ export interface AppleRegistrationArgs { /** * The Client ID of the app used for login. */ clientId?: pulumi.Input; /** * The app setting name that contains the client secret. */ clientSecretSettingName?: pulumi.Input; } /** * Application Insights Configuration */ export interface ApplicationInsightsConfigurationArgs { /** * The Application ID for the Application Insights resource */ appId?: pulumi.Input; /** * The connection string for the Application Insights resource */ connectionString?: pulumi.Input; } /** * The configuration settings of the platform of ContainerApp Service Authentication/Authorization. */ export interface AuthPlatformArgs { /** * true if the Authentication / Authorization feature is enabled for the current app; otherwise, false. */ enabled?: pulumi.Input; /** * The RuntimeVersion of the Authentication / Authorization feature in use for the current app. * The setting in this value can control the behavior of certain features in the Authentication / Authorization module. */ runtimeVersion?: pulumi.Input; } /** * The configuration settings of the Azure Active directory provider. */ export interface AzureActiveDirectoryArgs { /** * false if the Azure Active Directory provider should not be enabled despite the set registration; otherwise, true. */ enabled?: pulumi.Input; /** * Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling. * This is an internal flag primarily intended to support the Azure Management Portal. Users should not * read or write to this property. */ isAutoProvisioned?: pulumi.Input; /** * The configuration settings of the Azure Active Directory login flow. */ login?: pulumi.Input; /** * The configuration settings of the Azure Active Directory app registration. */ registration?: pulumi.Input; /** * The configuration settings of the Azure Active Directory token validation flow. */ validation?: pulumi.Input; } /** * The configuration settings of the Azure Active Directory login flow. */ export interface AzureActiveDirectoryLoginArgs { /** * true if the www-authenticate provider should be omitted from the request; otherwise, false. */ disableWWWAuthenticate?: pulumi.Input; /** * Login parameters to send to the OpenID Connect authorization endpoint when * a user logs in. Each parameter must be in the form "key=value". */ loginParameters?: pulumi.Input[] | undefined>; } /** * The configuration settings of the Azure Active Directory app registration. */ export interface AzureActiveDirectoryRegistrationArgs { /** * The Client ID of this relying party application, known as the client_id. * This setting is required for enabling OpenID Connection authentication with Azure Active Directory or * other 3rd party OpenID Connect providers. * More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html */ clientId?: pulumi.Input; /** * An alternative to the client secret thumbprint, that is the issuer of a certificate used for signing purposes. This property acts as * a replacement for the Client Secret Certificate Thumbprint. It is also optional. */ clientSecretCertificateIssuer?: pulumi.Input; /** * An alternative to the client secret thumbprint, that is the subject alternative name of a certificate used for signing purposes. This property acts as * a replacement for the Client Secret Certificate Thumbprint. It is also optional. */ clientSecretCertificateSubjectAlternativeName?: pulumi.Input; /** * An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as * a replacement for the Client Secret. It is also optional. */ clientSecretCertificateThumbprint?: pulumi.Input; /** * The app setting name that contains the client secret of the relying party application. */ clientSecretSettingName?: pulumi.Input; /** * The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application. * When using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://login.microsoftonline.com/v2.0/{tenant-guid}/. * This URI is a case-sensitive identifier for the token issuer. * More information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html */ openIdIssuer?: pulumi.Input; } /** * The configuration settings of the Azure Active Directory token validation flow. */ export interface AzureActiveDirectoryValidationArgs { /** * The list of audiences that can make successful authentication/authorization requests. */ allowedAudiences?: pulumi.Input[] | undefined>; /** * The configuration settings of the default authorization policy. */ defaultAuthorizationPolicy?: pulumi.Input; /** * The configuration settings of the checks that should be made while validating the JWT Claims. */ jwtClaimChecks?: pulumi.Input; } /** * Container App credentials. */ export interface AzureCredentialsArgs { /** * Client Id. */ clientId?: pulumi.Input; /** * Client Secret. */ clientSecret?: pulumi.Input; /** * Kind of auth github does for deploying the template */ kind?: pulumi.Input; /** * Subscription Id. */ subscriptionId?: pulumi.Input; /** * Tenant Id. */ tenantId?: pulumi.Input; } /** * Azure File Properties. */ export interface AzureFilePropertiesArgs { /** * Access mode for storage */ accessMode?: pulumi.Input; /** * Storage account key for azure file. */ accountKey?: pulumi.Input; /** * Storage account key stored as an Azure Key Vault secret. */ accountKeyVaultProperties?: pulumi.Input; /** * Storage account name for azure file. */ accountName?: pulumi.Input; /** * Azure file share name. */ shareName?: pulumi.Input; } /** * The configuration settings of the Azure Static Web Apps provider. */ export interface AzureStaticWebAppsArgs { /** * false if the Azure Static Web Apps provider should not be enabled despite the set registration; otherwise, true. */ enabled?: pulumi.Input; /** * The configuration settings of the Azure Static Web Apps registration. */ registration?: pulumi.Input; } /** * The configuration settings of the registration for the Azure Static Web Apps provider */ export interface AzureStaticWebAppsRegistrationArgs { /** * The Client ID of the app used for login. */ clientId?: pulumi.Input; } /** * The configuration settings of the storage of the tokens if blob storage is used. */ export interface BlobStorageTokenStoreArgs { /** * The URI of the blob storage containing the tokens. Should not be used along with sasUrlSettingName. */ blobContainerUri?: pulumi.Input; /** * The Client ID of a User-Assigned Managed Identity. Should not be used along with managedIdentityResourceId. */ clientId?: pulumi.Input; /** * The Resource ID of a User-Assigned Managed Identity. Should not be used along with clientId. */ managedIdentityResourceId?: pulumi.Input; /** * The name of the app secrets containing the SAS URL of the blob storage containing the tokens. Should not be used along with blobContainerUri. */ sasUrlSettingName?: pulumi.Input; } /** * Configuration of the build. */ export interface BuildConfigurationArgs { /** * Base OS used to build and run the app. */ baseOs?: pulumi.Input; /** * List of environment variables to be passed to the build, secrets should not be used in environment variable. */ environmentVariables?: pulumi.Input[] | undefined>; /** * Platform to be used to build and run the app. */ platform?: pulumi.Input; /** * Platform version to be used to build and run the app. */ platformVersion?: pulumi.Input; /** * List of steps to perform before the build. */ preBuildSteps?: pulumi.Input[] | undefined>; } /** * Properties for a certificate stored in a Key Vault. */ export interface CertificateKeyVaultPropertiesArgs { /** * Resource ID of a managed identity to authenticate with Azure Key Vault, or System to use a system-assigned identity. */ identity?: pulumi.Input; /** * URL pointing to the Azure Key Vault secret that holds the certificate. */ keyVaultUrl?: pulumi.Input; } /** * Certificate resource specific properties */ export interface CertificatePropertiesArgs { /** * Properties for a certificate stored in a Key Vault. */ certificateKeyVaultProperties?: pulumi.Input; /** * The type of the certificate. Allowed values are `ServerSSLCertificate` and `ImagePullTrustedCA` */ certificateType?: pulumi.Input; /** * Certificate password. */ password?: pulumi.Input; /** * PFX or PEM blob */ value?: pulumi.Input; } /** * Policy that defines circuit breaker conditions */ export interface CircuitBreakerPolicyArgs { /** * Number of consecutive errors before the circuit breaker opens */ consecutiveErrors?: pulumi.Input; /** * The time interval, in seconds, between endpoint checks. This can result in opening the circuit breaker if the check fails as well as closing the circuit breaker if the check succeeds. Defaults to 10s. */ intervalInSeconds?: pulumi.Input; /** * Maximum percentage of hosts that will be ejected after failure threshold has been met */ maxEjectionPercent?: pulumi.Input; } /** * The configuration settings of the app registration for providers that have client ids and client secrets */ export interface ClientRegistrationArgs { /** * The Client ID of the app used for login. */ clientId?: pulumi.Input; /** * The app setting name that contains the client secret. */ clientSecretSettingName?: pulumi.Input; } /** * Non versioned Container App configuration properties that define the mutable settings of a Container app */ export interface ConfigurationArgs { /** * ActiveRevisionsMode controls how active revisions are handled for the Container app: * Single: Only one revision can be active at a time. Traffic weights cannot be used. This is the default.Multiple: Multiple revisions can be active, including optional traffic weights and labels.Labels: Only revisions with labels are active. Traffic weights can be applied to labels. */ activeRevisionsMode?: pulumi.Input; /** * Dapr configuration for the Container App. */ dapr?: pulumi.Input; /** * Optional settings for Managed Identities that are assigned to the Container App. If a Managed Identity is not specified here, default settings will be used. */ identitySettings?: pulumi.Input[] | undefined>; /** * Ingress configurations. */ ingress?: pulumi.Input; /** * Optional. Max inactive revisions a Container App can have. */ maxInactiveRevisions?: pulumi.Input; /** * Collection of private container registry credentials for containers used by the Container app */ registries?: pulumi.Input[] | undefined>; /** * Optional. The percent of the total number of replicas that must be brought up before revision transition occurs. Defaults to 100 when none is given. Value must be greater than 0 and less than or equal to 100. */ revisionTransitionThreshold?: pulumi.Input; /** * App runtime configuration for the Container App. */ runtime?: pulumi.Input; /** * Collection of secrets used by a Container app */ secrets?: pulumi.Input[] | undefined>; /** * Container App to be a dev Container App Service */ service?: pulumi.Input; /** * Required in labels revisions mode. Label to apply to newly created revision. */ targetLabel?: pulumi.Input; } /** * configurationArgsProvideDefaults sets the appropriate defaults for ConfigurationArgs */ export declare function configurationArgsProvideDefaults(val: ConfigurationArgs): ConfigurationArgs; /** * Storage properties */ export interface ConnectedEnvironmentStoragePropertiesArgs { /** * Azure file properties */ azureFile?: pulumi.Input; /** * SMB storage properties */ smb?: pulumi.Input; } /** * Container App container definition */ export interface ContainerArgs { /** * Container start command arguments. */ args?: pulumi.Input[] | undefined>; /** * Container start command. */ command?: pulumi.Input[] | undefined>; /** * Container environment variables. */ env?: pulumi.Input[] | undefined>; /** * Container image tag. */ image?: pulumi.Input; /** * The type of the image. Set to CloudBuild to let the system manages the image, where user will not be able to update image through image field. Set to ContainerImage for user provided image. */ imageType?: pulumi.Input; /** * Custom container name. */ name?: pulumi.Input; /** * List of probes for the container. */ probes?: pulumi.Input[] | undefined>; /** * Container resource requirements. */ resources?: pulumi.Input; /** * Container volume mounts. */ volumeMounts?: pulumi.Input[] | undefined>; } /** * Container App auto patch configuration. */ export interface ContainerAppPatchingConfigurationArgs { /** * Patching mode for the container app. Null or default in this field will be interpreted as Automatic by RP. Automatic mode will automatically apply available patches. Manual mode will require the user to manually apply patches. Disabled mode will stop patch detection and auto patching. */ patchingMode?: pulumi.Input; } /** * Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic. */ export interface ContainerAppProbeArgs { /** * Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10. */ failureThreshold?: pulumi.Input; /** * HTTPGet specifies the http request to perform. */ httpGet?: pulumi.Input; /** * Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60. */ initialDelaySeconds?: pulumi.Input; /** * How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240. */ periodSeconds?: pulumi.Input; /** * Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10. */ successThreshold?: pulumi.Input; /** * TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported. */ tcpSocket?: pulumi.Input; /** * Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour) */ terminationGracePeriodSeconds?: pulumi.Input; /** * Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240. */ timeoutSeconds?: pulumi.Input; /** * The type of probe. */ type?: pulumi.Input; } /** * HTTPGet specifies the http request to perform. */ export interface ContainerAppProbeHttpGetArgs { /** * Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. */ host?: pulumi.Input; /** * Custom headers to set in the request. HTTP allows repeated headers. */ httpHeaders?: pulumi.Input[] | undefined>; /** * Path to access on the HTTP server. */ path?: pulumi.Input; /** * Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. */ port: pulumi.Input; /** * Scheme to use for connecting to the host. Defaults to HTTP. */ scheme?: pulumi.Input; } /** * HTTPHeader describes a custom header to be used in HTTP probes */ export interface ContainerAppProbeHttpHeadersArgs { /** * The header field name */ name: pulumi.Input; /** * The header field value */ value: pulumi.Input; } /** * TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported. */ export interface ContainerAppProbeTcpSocketArgs { /** * Optional: Host name to connect to, defaults to the pod IP. */ host?: pulumi.Input; /** * Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. */ port: pulumi.Input; } /** * Model representing a mapping from a container registry to the identity used to connect to it. */ export interface ContainerRegistryArgs { /** * Login server of the container registry. */ containerRegistryServer: pulumi.Input; /** * Resource ID of the managed identity. */ identityResourceId: pulumi.Input; } /** * Container registry that the final image will be uploaded to. */ export interface ContainerRegistryWithCustomImageArgs { /** * Full name that the final image should be uploaded as, including both image name and tag. */ image?: pulumi.Input; /** * Login server of the container registry that the final image should be uploaded to. Builder resource needs to have this container registry defined along with an identity to use to access it. */ server: pulumi.Input; } /** * Container App container resource requirements. */ export interface ContainerResourcesArgs { /** * Required CPU in cores, e.g. 0.5 */ cpu?: pulumi.Input; /** * Required GPU in cores for GPU based app, e.g. 1.0 */ gpu?: pulumi.Input; /** * Required memory, e.g. "250Mb" */ memory?: pulumi.Input; } /** * The configuration settings of the session cookie's expiration. */ export interface CookieExpirationArgs { /** * The convention used when determining the session cookie's expiration. */ convention?: pulumi.Input; /** * The time after the request is made when the session cookie should expire. */ timeToExpiration?: pulumi.Input; } /** * Cross-Origin-Resource-Sharing policy */ export interface CorsPolicyArgs { /** * Specifies whether the resource allows credentials */ allowCredentials?: pulumi.Input; /** * Specifies the content for the access-control-allow-headers header */ allowedHeaders?: pulumi.Input[] | undefined>; /** * Specifies the content for the access-control-allow-methods header */ allowedMethods?: pulumi.Input[] | undefined>; /** * Specifies the content for the access-control-allow-origins header */ allowedOrigins: pulumi.Input[]>; /** * Specifies the content for the access-control-expose-headers header */ exposeHeaders?: pulumi.Input[] | undefined>; /** * Specifies the content for the access-control-max-age header */ maxAge?: pulumi.Input; } /** * Custom container configuration. */ export interface CustomContainerTemplateArgs { /** * List of container definitions for the sessions of the session pool. */ containers?: pulumi.Input[] | undefined>; /** * Session pool ingress configuration. */ ingress?: pulumi.Input; /** * Private container registry credentials for containers used by the sessions of the session pool. */ registryCredentials?: pulumi.Input; } /** * Custom Domain of a Container App */ export interface CustomDomainArgs { /** * Custom Domain binding type. */ bindingType?: pulumi.Input; /** * Resource Id of the Certificate to be bound to this hostname. Must exist in the Managed Environment. */ certificateId?: pulumi.Input; /** * Hostname. */ name: pulumi.Input; } /** * Configuration properties for apps environment custom domain */ export interface CustomDomainConfigurationArgs { /** * Certificate stored in Azure Key Vault. */ certificateKeyVaultProperties?: pulumi.Input; /** * Certificate password */ certificatePassword?: pulumi.Input; /** * PFX or PEM blob */ certificateValue?: pulumi.Input; /** * Dns suffix for the environment domain */ dnsSuffix?: pulumi.Input; } /** * The configuration settings of the custom Open ID Connect provider. */ export interface CustomOpenIdConnectProviderArgs { /** * false if the custom Open ID provider provider should not be enabled; otherwise, true. */ enabled?: pulumi.Input; /** * The configuration settings of the login flow of the custom Open ID Connect provider. */ login?: pulumi.Input; /** * The configuration settings of the app registration for the custom Open ID Connect provider. */ registration?: pulumi.Input; } /** * Container App container Custom scaling rule. */ export interface CustomScaleRuleArgs { /** * Authentication secrets for the custom scale rule. */ auth?: pulumi.Input[] | undefined>; /** * The resource ID of a user-assigned managed identity that is assigned to the Container App, or 'system' for system-assigned identity. */ identity?: pulumi.Input; /** * Metadata properties to describe custom scale rule. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Type of the custom scale rule * eg: azure-servicebus, redis etc. */ type?: pulumi.Input; } /** * Container App Dapr configuration. */ export interface DaprArgs { /** * Dapr application health check configuration */ appHealth?: pulumi.Input; /** * Dapr application identifier */ appId?: pulumi.Input; /** * Tells Dapr which port your application is listening on */ appPort?: pulumi.Input; /** * Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http */ appProtocol?: pulumi.Input; /** * Enables API logging for the Dapr sidecar */ enableApiLogging?: pulumi.Input; /** * Boolean indicating if the Dapr side car is enabled */ enabled?: pulumi.Input; /** * Increasing max size of request body http and grpc servers parameter in MB to handle uploading of big files. Default is 4 MB. */ httpMaxRequestSize?: pulumi.Input; /** * Dapr max size of http header read buffer in KB to handle when sending multi-KB headers. Default is 65KB. */ httpReadBufferSize?: pulumi.Input; /** * Sets the log level for the Dapr sidecar. Allowed values are debug, info, warn, error. Default is info. */ logLevel?: pulumi.Input; /** * Maximum number of concurrent requests, events handled by the Dapr sidecar */ maxConcurrency?: pulumi.Input; } /** * daprArgsProvideDefaults sets the appropriate defaults for DaprArgs */ export declare function daprArgsProvideDefaults(val: DaprArgs): DaprArgs; /** * Dapr application health check configuration */ export interface DaprAppHealthArgs { /** * Boolean indicating if the health probe is enabled */ enabled?: pulumi.Input; /** * Path for the health probe */ path?: pulumi.Input; /** * Interval for the health probe in seconds */ probeIntervalSeconds?: pulumi.Input; /** * Timeout for the health probe in milliseconds */ probeTimeoutMilliseconds?: pulumi.Input; /** * Threshold for the health probe */ threshold?: pulumi.Input; } /** * Dapr Component Resiliency Policy Circuit Breaker Policy Configuration. */ export interface DaprComponentResiliencyPolicyCircuitBreakerPolicyConfigurationArgs { /** * The number of consecutive errors before the circuit is opened. */ consecutiveErrors?: pulumi.Input; /** * The optional interval in seconds after which the error count resets to 0. An interval of 0 will never reset. If not specified, the timeoutInSeconds value will be used. */ intervalInSeconds?: pulumi.Input; /** * The interval in seconds until a retry attempt is made after the circuit is opened. */ timeoutInSeconds?: pulumi.Input; } /** * Dapr Component Resiliency Policy Configuration. */ export interface DaprComponentResiliencyPolicyConfigurationArgs { /** * The optional circuit breaker policy configuration */ circuitBreakerPolicy?: pulumi.Input; /** * The optional HTTP retry policy configuration */ httpRetryPolicy?: pulumi.Input; /** * The optional timeout policy configuration */ timeoutPolicy?: pulumi.Input; } /** * Dapr Component Resiliency Policy HTTP Retry Backoff Configuration. */ export interface DaprComponentResiliencyPolicyHttpRetryBackOffConfigurationArgs { /** * The optional initial delay in milliseconds before an operation is retried */ initialDelayInMilliseconds?: pulumi.Input; /** * The optional maximum time interval in milliseconds between retry attempts */ maxIntervalInMilliseconds?: pulumi.Input; } /** * Dapr Component Resiliency Policy HTTP Retry Policy Configuration. */ export interface DaprComponentResiliencyPolicyHttpRetryPolicyConfigurationArgs { /** * The optional maximum number of retries */ maxRetries?: pulumi.Input; /** * The optional retry backoff configuration */ retryBackOff?: pulumi.Input; } /** * Dapr Component Resiliency Policy Timeout Policy Configuration. */ export interface DaprComponentResiliencyPolicyTimeoutPolicyConfigurationArgs { /** * The optional response timeout in seconds */ responseTimeoutInSeconds?: pulumi.Input; } /** * Configuration to bind a Dapr Component to a dev ContainerApp Service */ export interface DaprComponentServiceBindingArgs { /** * Service bind metadata */ metadata?: pulumi.Input; /** * Name of the service bind */ name?: pulumi.Input; /** * Resource id of the target service */ serviceId?: pulumi.Input; } /** * Dapr component metadata. */ export interface DaprMetadataArgs { /** * Metadata property name. */ name?: pulumi.Input; /** * Name of the Dapr Component secret from which to pull the metadata property value. */ secretRef?: pulumi.Input; /** * Metadata property value. */ value?: pulumi.Input; } /** * Dapr component metadata. */ export interface DaprServiceBindMetadataArgs { /** * Service bind metadata property name. */ name?: pulumi.Input; /** * Service bind metadata property value. */ value?: pulumi.Input; } /** * Dapr PubSub Bulk Subscription Options. */ export interface DaprSubscriptionBulkSubscribeOptionsArgs { /** * Enable bulk subscription */ enabled?: pulumi.Input; /** * Maximum duration in milliseconds to wait before a bulk message is sent to the app. */ maxAwaitDurationMs?: pulumi.Input; /** * Maximum number of messages to deliver in a bulk message. */ maxMessagesCount?: pulumi.Input; } /** * daprSubscriptionBulkSubscribeOptionsArgsProvideDefaults sets the appropriate defaults for DaprSubscriptionBulkSubscribeOptionsArgs */ export declare function daprSubscriptionBulkSubscribeOptionsArgsProvideDefaults(val: DaprSubscriptionBulkSubscribeOptionsArgs): DaprSubscriptionBulkSubscribeOptionsArgs; /** * Dapr Pubsub Event Subscription Route Rule is used to specify the condition for sending a message to a specific path. */ export interface DaprSubscriptionRouteRuleArgs { /** * The optional CEL expression used to match the event. If the match is not specified, then the route is considered the default. The rules are tested in the order specified, so they should be define from most-to-least specific. The default route should appear last in the list. */ match?: pulumi.Input; /** * The path for events that match this rule */ path?: pulumi.Input; } /** * Dapr PubSub Event Subscription Routes configuration. */ export interface DaprSubscriptionRoutesArgs { /** * The default path to deliver events that do not match any of the rules. */ default?: pulumi.Input; /** * The list of Dapr PubSub Event Subscription Route Rules. */ rules?: pulumi.Input[] | undefined>; } /** * Configuration of datadog */ export interface DataDogConfigurationArgs { /** * The data dog api key */ key?: pulumi.Input; /** * The data dog site */ site?: pulumi.Input; } /** * The configuration settings of the Azure Active Directory default authorization policy. */ export interface DefaultAuthorizationPolicyArgs { /** * The configuration settings of the Azure Active Directory allowed applications. */ allowedApplications?: pulumi.Input[] | undefined>; /** * The configuration settings of the Azure Active Directory allowed principals. */ allowedPrincipals?: pulumi.Input; } /** * Default AI model configuration */ export interface DefaultModelArgs { /** * Model name (e.g., gpt-5, claude-opus-4-5, claude-sonnet-4-5) */ name?: pulumi.Input; /** * AI provider name (e.g., MicrosoftFoundry, Anthropic) */ provider?: pulumi.Input; } /** * Configuration of Open Telemetry destinations */ export interface DestinationsConfigurationArgs { /** * Open telemetry datadog destination configuration */ dataDogConfiguration?: pulumi.Input; /** * Open telemetry otlp configurations */ otlpConfigurations?: pulumi.Input[] | undefined>; } /** * Configuration properties for disk encryption */ export interface DiskEncryptionConfigurationArgs { /** * The Key Vault that contains your key to use for disk encryption. The Key Vault must be in the same region as the Managed Environment. */ keyVaultConfiguration?: pulumi.Input; } /** * Configuration properties for the authentication to the Key Vault */ export interface DiskEncryptionConfigurationAuthArgs { /** * Resource ID of a user-assigned managed identity to authenticate to the Key Vault. The identity must be assigned to the managed environment, in the same tenant as the Key Vault, and it must have the following key permissions on the Key Vault: wrapkey, unwrapkey, get. */ identity?: pulumi.Input; } /** * The Key Vault that contains your key to use for disk encryption. The Key Vault must be in the same region as the Managed Environment. */ export interface DiskEncryptionConfigurationKeyVaultConfigurationArgs { /** * Configuration properties for the authentication to the Key Vault */ auth?: pulumi.Input; /** * Key URL pointing to a key in KeyVault. Version segment of the Url is required. */ keyUrl?: pulumi.Input; } /** * Configuration properties for a .NET Component */ export interface DotNetComponentConfigurationPropertyArgs { /** * The name of the property */ propertyName?: pulumi.Input; /** * The value of the property */ value?: pulumi.Input; } /** * Configuration to bind a .NET Component to another .NET Component */ export interface DotNetComponentServiceBindArgs { /** * Name of the service bind */ name?: pulumi.Input; /** * Resource id of the target service */ serviceId?: pulumi.Input; } /** * Dynamic pool configuration. */ export interface DynamicPoolConfigurationArgs { /** * The lifecycle configuration of a session in the dynamic session pool */ lifecycleConfiguration?: pulumi.Input; } /** * The configuration settings of the secrets references of encryption key and signing key for ContainerApp Service Authentication/Authorization. */ export interface EncryptionSettingsArgs { /** * The secret name which is referenced for EncryptionKey. */ containerAppAuthEncryptionSecretName?: pulumi.Input; /** * The secret name which is referenced for SigningKey. */ containerAppAuthSigningSecretName?: pulumi.Input; } /** * Container App container environment variable. */ export interface EnvironmentVarArgs { /** * Environment variable name. */ name?: pulumi.Input; /** * Name of the Container App secret from which to pull the environment variable value. */ secretRef?: pulumi.Input; /** * Non-secret environment variable value. */ value?: pulumi.Input; } /** * Model representing an environment variable. */ export interface EnvironmentVariableArgs { /** * Environment variable name. */ name: pulumi.Input; /** * Environment variable value. */ value: pulumi.Input; } /** * The complex type of the extended location. */ export interface ExtendedLocationArgs { /** * The name of the extended location. */ name?: pulumi.Input; /** * The type of the extended location. */ type?: pulumi.Input; } /** * The configuration settings of the Facebook provider. */ export interface FacebookArgs { /** * false if the Facebook provider should not be enabled despite the set registration; otherwise, true. */ enabled?: pulumi.Input; /** * The version of the Facebook api to be used while logging in. */ graphApiVersion?: pulumi.Input; /** * The configuration settings of the login flow. */ login?: pulumi.Input; /** * The configuration settings of the app registration for the Facebook provider. */ registration?: pulumi.Input; } /** * The configuration settings of a forward proxy used to make the requests. */ export interface ForwardProxyArgs { /** * The convention used to determine the url of the request made. */ convention?: pulumi.Input; /** * The name of the header containing the host of the request. */ customHostHeaderName?: pulumi.Input; /** * The name of the header containing the scheme of the request. */ customProtoHeaderName?: pulumi.Input; } /** * Configuration for a Geneva action */ export interface GenevaActionConfigArgs { /** * Name of the Geneva action */ actionName?: pulumi.Input; /** * Parameters for the Geneva action */ actionParameters?: pulumi.Input[] | undefined>; /** * Indicates whether approval is required for this action */ approvalRequired?: pulumi.Input; /** * Extension associated with the action */ extension?: pulumi.Input; } /** * Parameter for a Geneva action */ export interface GenevaActionParameterArgs { /** * Name of the parameter */ name?: pulumi.Input; /** * Type of the parameter */ type?: pulumi.Input; } /** * Geneva Actions policy configuration for Agent Space */ export interface GenevaActionsPolicyArgs { /** * ACIS (Azure Container Instance Service) endpoint URL */ acisEndpoint?: pulumi.Input; /** * Collection of allowed Geneva actions */ allowedActions?: pulumi.Input[] | undefined>; /** * Authentication mode for Geneva Actions */ authenticationMode?: pulumi.Input; /** * Subject name of the certificate used for authentication */ certificateSubjectName?: pulumi.Input; /** * Client ID for authentication */ clientId?: pulumi.Input; /** * Name of the Geneva extension */ extensionName: pulumi.Input; } /** * The configuration settings of the GitHub provider. */ export interface GitHubArgs { /** * false if the GitHub provider should not be enabled despite the set registration; otherwise, true. */ enabled?: pulumi.Input; /** * The configuration settings of the login flow. */ login?: pulumi.Input; /** * The configuration settings of the app registration for the GitHub provider. */ registration?: pulumi.Input; } /** * Configuration properties that define the mutable settings of a Container App SourceControl */ export interface GithubActionConfigurationArgs { /** * AzureCredentials configurations. */ azureCredentials?: pulumi.Input; /** * List of environment variables to be passed to the build. */ buildEnvironmentVariables?: pulumi.Input[] | undefined>; /** * Context path */ contextPath?: pulumi.Input; /** * Dockerfile path */ dockerfilePath?: pulumi.Input; /** * One time Github PAT to configure github environment */ githubPersonalAccessToken?: pulumi.Input; /** * Image name */ image?: pulumi.Input; /** * Operation system */ os?: pulumi.Input; /** * Code or Image */ publishType?: pulumi.Input; /** * Registry configurations. */ registryInfo?: pulumi.Input; /** * Runtime stack */ runtimeStack?: pulumi.Input; /** * Runtime version */ runtimeVersion?: pulumi.Input; } /** * The configuration settings that determines the validation flow of users using ContainerApp Service Authentication/Authorization. */ export interface GlobalValidationArgs { /** * The paths for which unauthenticated flow would not be redirected to the login page. */ excludedPaths?: pulumi.Input[] | undefined>; /** * The default authentication provider to use when multiple providers are configured. * This setting is only needed if multiple providers are configured and the unauthenticated client * action is set to "RedirectToLoginPage". */ redirectToProvider?: pulumi.Input; /** * The action to take when an unauthenticated client attempts to access the app. */ unauthenticatedClientAction?: pulumi.Input; } /** * The configuration settings of the Google provider. */ export interface GoogleArgs { /** * false if the Google provider should not be enabled despite the set registration; otherwise, true. */ enabled?: pulumi.Input; /** * The configuration settings of the login flow. */ login?: pulumi.Input; /** * The configuration settings of the app registration for the Google provider. */ registration?: pulumi.Input; /** * The configuration settings of the Azure Active Directory token validation flow. */ validation?: pulumi.Input; } /** * Header of otlp configuration */ export interface HeaderArgs { /** * The key of otlp configuration header */ key?: pulumi.Input; /** * The value of otlp configuration header */ value?: pulumi.Input; } /** * Conditions required to match a header */ export interface HeaderMatchArgs { /** * Exact value of the header */ exactMatch?: pulumi.Input; /** * Name of the header */ header?: pulumi.Input; /** * Prefix value of the header */ prefixMatch?: pulumi.Input; /** * Regex value of the header */ regexMatch?: pulumi.Input; /** * Suffix value of the header */ suffixMatch?: pulumi.Input; } /** * Defines parameters for http connection pooling */ export interface HttpConnectionPoolArgs { /** * Maximum number of pending http1 requests allowed */ http1MaxPendingRequests?: pulumi.Input; /** * Maximum number of http2 requests allowed */ http2MaxRequests?: pulumi.Input; } /** * Model representing a http get request. */ export interface HttpGetArgs { /** * Name of the file that the request should be saved to. */ fileName?: pulumi.Input; /** * List of headers to send with the request. */ headers?: pulumi.Input[] | undefined>; /** * URL to make HTTP GET request against. */ url: pulumi.Input; } /** * Policy that defines http request retry conditions */ export interface HttpRetryPolicyArgs { /** * Errors that can trigger a retry */ errors?: pulumi.Input[] | undefined>; /** * Headers that must be present for a request to be retried */ headers?: pulumi.Input[] | undefined>; /** * Additional http status codes that can trigger a retry */ httpStatusCodes?: pulumi.Input[] | undefined>; /** * Initial delay, in milliseconds, before retrying a request */ initialDelayInMilliseconds?: pulumi.Input; /** * Maximum interval, in milliseconds, between retries */ maxIntervalInMilliseconds?: pulumi.Input; /** * Maximum number of times a request will retry */ maxRetries?: pulumi.Input; } /** * Http Routes configuration, including paths to match on and whether or not rewrites are to be done. */ export interface HttpRouteArgs { /** * Once route is matched, what is the desired action */ action?: pulumi.Input; /** * Conditions route will match on */ match?: pulumi.Input; } /** * Action to perform once matching of routes is done */ export interface HttpRouteActionArgs { /** * Rewrite prefix, default is no rewrites */ prefixRewrite?: pulumi.Input; } /** * Http Route Config properties */ export interface HttpRouteConfigPropertiesArgs { /** * Custom domain bindings for http Routes' hostnames. */ customDomains?: pulumi.Input[] | undefined>; /** * Routing Rules for http route resource. */ rules?: pulumi.Input[] | undefined>; } /** * Criteria to match on */ export interface HttpRouteMatchArgs { /** * path case sensitive, default is true */ caseSensitive?: pulumi.Input; /** * match on exact path */ path?: pulumi.Input; /** * match on all prefix's. Not exact */ pathSeparatedPrefix?: pulumi.Input; /** * match on all prefix's. Not exact */ prefix?: pulumi.Input; } /** * Http Route rule. */ export interface HttpRouteRuleArgs { /** * Description of rule. Optional. */ description?: pulumi.Input; /** * Routing configuration that will allow matches on specific paths/headers. */ routes?: pulumi.Input[] | undefined>; /** * Targets- container apps, revisions, labels */ targets?: pulumi.Input[] | undefined>; } /** * Targets - Container App Names, Revision Names, Labels. */ export interface HttpRouteTargetArgs { /** * Container App Name to route requests to */ containerApp: pulumi.Input; /** * Label/Revision to route requests to */ label?: pulumi.Input; /** * Revision to route requests to */ revision?: pulumi.Input; /** * Weighted routing */ weight?: pulumi.Input; } /** * Container App container Http scaling rule. */ export interface HttpScaleRuleArgs { /** * Authentication secrets for the custom scale rule. */ auth?: pulumi.Input[] | undefined>; /** * The resource ID of a user-assigned managed identity that is assigned to the Container App, or 'system' for system-assigned identity. */ identity?: pulumi.Input; /** * Metadata properties to describe http scale rule. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } /** * The configuration settings of the HTTP requests for authentication and authorization requests made against ContainerApp Service Authentication/Authorization. */ export interface HttpSettingsArgs { /** * The configuration settings of a forward proxy used to make the requests. */ forwardProxy?: pulumi.Input; /** * false if the authentication/authorization responses not having the HTTPS scheme are permissible; otherwise, true. */ requireHttps?: pulumi.Input; /** * The configuration settings of the paths HTTP requests. */ routes?: pulumi.Input; } /** * The configuration settings of the paths HTTP requests. */ export interface HttpSettingsRoutesArgs { /** * The prefix that should precede all the authentication/authorization paths. */ apiPrefix?: pulumi.Input; } /** * The configuration settings of each of the identity providers used to configure ContainerApp Service Authentication/Authorization. */ export interface IdentityProvidersArgs { /** * The configuration settings of the Apple provider. */ apple?: pulumi.Input; /** * The configuration settings of the Azure Active directory provider. */ azureActiveDirectory?: pulumi.Input; /** * The configuration settings of the Azure Static Web Apps provider. */ azureStaticWebApps?: pulumi.Input; /** * The map of the name of the alias of each custom Open ID Connect provider to the * configuration settings of the custom Open ID Connect provider. */ customOpenIdConnectProviders?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The configuration settings of the Facebook provider. */ facebook?: pulumi.Input; /** * The configuration settings of the GitHub provider. */ gitHub?: pulumi.Input; /** * The configuration settings of the Google provider. */ google?: pulumi.Input; /** * The configuration settings of the Twitter provider. */ twitter?: pulumi.Input; } /** * Optional settings for a Managed Identity that is assigned to the Container App. */ export interface IdentitySettingsArgs { /** * The resource ID of a user-assigned managed identity that is assigned to the Container App, or 'system' for system-assigned identity. */ identity: pulumi.Input; /** * Use to select the lifecycle stages of a Container App during which the Managed Identity should be available. */ lifecycle?: pulumi.Input; } /** * identitySettingsArgsProvideDefaults sets the appropriate defaults for IdentitySettingsArgs */ export declare function identitySettingsArgsProvideDefaults(val: IdentitySettingsArgs): IdentitySettingsArgs; /** * Incident Management Configurations */ export interface IncidentManagementConfigurationArgs { /** * The key for the connection */ connectionKey?: pulumi.Input; /** * The name of the connection */ connectionName?: pulumi.Input; /** * The URL of the connection */ connectionUrl?: pulumi.Input; /** * The user for the connection */ oboUser?: pulumi.Input; /** * The type of incident management system */ type?: pulumi.Input; } /** * Container App Ingress configuration. */ export interface IngressArgs { /** * Settings to expose additional ports on container app */ additionalPortMappings?: pulumi.Input[] | undefined>; /** * Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections */ allowInsecure?: pulumi.Input; /** * Client certificate mode for mTLS authentication. Ignore indicates server drops client certificate on forwarding. Accept indicates server forwards client certificate but does not require a client certificate. Require indicates server requires a client certificate. */ clientCertificateMode?: pulumi.Input; /** * CORS policy for container app */ corsPolicy?: pulumi.Input; /** * custom domain bindings for Container Apps' hostnames. */ customDomains?: pulumi.Input[] | undefined>; /** * Exposed Port in containers for TCP traffic from ingress */ exposedPort?: pulumi.Input; /** * Bool indicating if app exposes an external http endpoint */ external?: pulumi.Input; /** * Rules to restrict incoming IP address. */ ipSecurityRestrictions?: pulumi.Input[] | undefined>; /** * Sticky Sessions for Single Revision Mode */ stickySessions?: pulumi.Input; /** * Target Port in containers for traffic from ingress */ targetPort?: pulumi.Input; /** * Whether an http app listens on http or https */ targetPortHttpScheme?: pulumi.Input; /** * Traffic weights for app's revisions */ traffic?: pulumi.Input[] | undefined>; /** * Ingress transport protocol */ transport?: pulumi.Input; } /** * ingressArgsProvideDefaults sets the appropriate defaults for IngressArgs */ export declare function ingressArgsProvideDefaults(val: IngressArgs): IngressArgs; /** * Settings for the ingress component, including workload profile, scaling, and connection handling. */ export interface IngressConfigurationArgs { /** * Maximum number of headers per request allowed by the ingress. Must be at least 1. Defaults to 100. */ headerCountLimit?: pulumi.Input; /** * Duration (in minutes) before idle requests are timed out. Must be at least 1 minute. Defaults to 4 minutes. */ requestIdleTimeout?: pulumi.Input; /** * Scaling configuration for the ingress component. Required. */ scale?: pulumi.Input; /** * Time (in seconds) to allow active connections to complete on termination. Must be between 0 and 3600. Defaults to 480 seconds. */ terminationGracePeriodSeconds?: pulumi.Input; /** * Name of the workload profile used by the ingress component. Required. */ workloadProfileName?: pulumi.Input; } /** * Scaling configuration for the ingress component. Required. */ export interface IngressConfigurationScaleArgs { /** * Maximum number of ingress replicas. Must be greater than or equal to minReplicas. */ maxReplicas?: pulumi.Input; /** * Minimum number of ingress replicas. Must be at least 2. Required. */ minReplicas?: pulumi.Input; } /** * Port mappings of container app ingress */ export interface IngressPortMappingArgs { /** * Specifies the exposed port for the target port. If not specified, it defaults to target port */ exposedPort?: pulumi.Input; /** * Specifies whether the app port is accessible outside of the environment */ external: pulumi.Input; /** * Specifies the port user's container listens on */ targetPort: pulumi.Input; } /** * Sticky Sessions for Single Revision Mode */ export interface IngressStickySessionsArgs { /** * Sticky Session Affinity */ affinity?: pulumi.Input; } /** * Container App init container definition */ export interface InitContainerArgs { /** * Container start command arguments. */ args?: pulumi.Input[] | undefined>; /** * Container start command. */ command?: pulumi.Input[] | undefined>; /** * Container environment variables. */ env?: pulumi.Input[] | undefined>; /** * Container image tag. */ image?: pulumi.Input; /** * The type of the image. Set to CloudBuild to let the system manages the image, where user will not be able to update image through image field. Set to ContainerImage for user provided image. */ imageType?: pulumi.Input; /** * Custom container name. */ name?: pulumi.Input; /** * Container resource requirements. */ resources?: pulumi.Input; /** * Container volume mounts. */ volumeMounts?: pulumi.Input[] | undefined>; } /** * Rule to restrict incoming IP address. */ export interface IpSecurityRestrictionRuleArgs { /** * Allow or Deny rules to determine for incoming IP. Note: Rules can only consist of ALL Allow or ALL Deny */ action: pulumi.Input; /** * Describe the IP restriction rule that is being sent to the container-app. This is an optional field. */ description?: pulumi.Input; /** * CIDR notation to match incoming IP address */ ipAddressRange: pulumi.Input; /** * Name for the IP restriction rule. */ name: pulumi.Input; } /** * Configuration properties for a Java Component */ export interface JavaComponentConfigurationPropertyArgs { /** * The name of the property */ propertyName?: pulumi.Input; /** * The value of the property */ value?: pulumi.Input; } /** * Java component scaling configurations */ export interface JavaComponentPropertiesScaleArgs { /** * Optional. Maximum number of Java component replicas */ maxReplicas?: pulumi.Input; /** * Optional. Minimum number of Java component replicas. Defaults to 1 if not set */ minReplicas?: pulumi.Input; } /** * Configuration to bind a Java Component to another Java Component */ export interface JavaComponentServiceBindArgs { /** * Name of the service bind */ name?: pulumi.Input; /** * Resource id of the target service */ serviceId?: pulumi.Input; } /** * Non versioned Container Apps Job configuration properties */ export interface JobConfigurationArgs { /** * Trigger configuration of an event driven job. */ eventTriggerConfig?: pulumi.Input; /** * Optional settings for Managed Identities that are assigned to the Container App Job. If a Managed Identity is not specified here, default settings will be used. */ identitySettings?: pulumi.Input[] | undefined>; /** * Manual trigger configuration for a single execution job. Properties replicaCompletionCount and parallelism would be set to 1 by default */ manualTriggerConfig?: pulumi.Input; /** * Collection of private container registry credentials used by a Container apps job */ registries?: pulumi.Input[] | undefined>; /** * Maximum number of retries before failing the job. */ replicaRetryLimit?: pulumi.Input; /** * Maximum number of seconds a replica is allowed to run. */ replicaTimeout: pulumi.Input; /** * Cron formatted repeating trigger schedule ("* * * * *") for cronjobs. Properties completions and parallelism would be set to 1 by default */ scheduleTriggerConfig?: pulumi.Input; /** * Collection of secrets used by a Container Apps Job */ secrets?: pulumi.Input[] | undefined>; /** * Trigger type of the job */ triggerType: pulumi.Input; } /** * jobConfigurationArgsProvideDefaults sets the appropriate defaults for JobConfigurationArgs */ export declare function jobConfigurationArgsProvideDefaults(val: JobConfigurationArgs): JobConfigurationArgs; /** * Trigger configuration of an event driven job. */ export interface JobConfigurationEventTriggerConfigArgs { /** * Number of parallel replicas of a job that can run at a given time. */ parallelism?: pulumi.Input; /** * Minimum number of successful replica completions before overall job completion. */ replicaCompletionCount?: pulumi.Input; /** * Scaling configurations for event driven jobs. */ scale?: pulumi.Input; } /** * jobConfigurationEventTriggerConfigArgsProvideDefaults sets the appropriate defaults for JobConfigurationEventTriggerConfigArgs */ export declare function jobConfigurationEventTriggerConfigArgsProvideDefaults(val: JobConfigurationEventTriggerConfigArgs): JobConfigurationEventTriggerConfigArgs; /** * Manual trigger configuration for a single execution job. Properties replicaCompletionCount and parallelism would be set to 1 by default */ export interface JobConfigurationManualTriggerConfigArgs { /** * Number of parallel replicas of a job that can run at a given time. */ parallelism?: pulumi.Input; /** * Minimum number of successful replica completions before overall job completion. */ replicaCompletionCount?: pulumi.Input; } /** * Cron formatted repeating trigger schedule ("* * * * *") for cronjobs. Properties completions and parallelism would be set to 1 by default */ export interface JobConfigurationScheduleTriggerConfigArgs { /** * Cron formatted repeating schedule ("* * * * *") of a Cron Job. */ cronExpression: pulumi.Input; /** * Number of parallel replicas of a job that can run at a given time. */ parallelism?: pulumi.Input; /** * Minimum number of successful replica completions before overall job completion. */ replicaCompletionCount?: pulumi.Input; } /** * Scaling configurations for event driven jobs. */ export interface JobScaleArgs { /** * Maximum number of job executions that are created for a trigger, default 100. */ maxExecutions?: pulumi.Input; /** * Minimum number of job executions that are created for a trigger, default 0 */ minExecutions?: pulumi.Input; /** * Interval to check each event source in seconds. Defaults to 30s */ pollingInterval?: pulumi.Input; /** * Scaling rules. */ rules?: pulumi.Input[] | undefined>; } /** * jobScaleArgsProvideDefaults sets the appropriate defaults for JobScaleArgs */ export declare function jobScaleArgsProvideDefaults(val: JobScaleArgs): JobScaleArgs; /** * Scaling rule. */ export interface JobScaleRuleArgs { /** * Authentication secrets for the scale rule. */ auth?: pulumi.Input[] | undefined>; /** * The resource ID of a user-assigned managed identity that is assigned to the job, or 'system' for system-assigned identity. */ identity?: pulumi.Input; /** * Metadata properties to describe the scale rule. */ metadata?: any | undefined; /** * Scale Rule Name */ name?: pulumi.Input; /** * Type of the scale rule * eg: azure-servicebus, redis etc. */ type?: pulumi.Input; } /** * Container Apps Job versioned application definition. Defines the desired state of an immutable revision. Any changes to this section Will result in a new revision being created */ export interface JobTemplateArgs { /** * List of container definitions for the Container App. */ containers?: pulumi.Input[] | undefined>; /** * List of specialized containers that run before app containers. */ initContainers?: pulumi.Input[] | undefined>; /** * List of volume definitions for the Container App. */ volumes?: pulumi.Input[] | undefined>; } /** * The configuration settings of the checks that should be made while validating the JWT Claims. */ export interface JwtClaimChecksArgs { /** * The list of the allowed client applications. */ allowedClientApplications?: pulumi.Input[] | undefined>; /** * The list of the allowed groups. */ allowedGroups?: pulumi.Input[] | undefined>; } /** * Knowledge graph configuration for agent */ export interface KnowledgeGraphConfigurationArgs { /** * The identity used to access the knowledge graph */ identity?: pulumi.Input; /** * The list of resources managed by agent */ managedResources?: pulumi.Input[] | undefined>; } /** * The lifecycle configuration properties of a session in the dynamic session pool */ export interface LifecycleConfigurationArgs { /** * The cooldown period of a session in seconds when the lifecycle type is 'Timed'. */ cooldownPeriodInSeconds?: pulumi.Input; /** * The lifecycle type of the session pool. */ lifecycleType?: pulumi.Input; /** * The maximum alive period of a session in seconds when the lifecycle type is 'OnContainerExit'. */ maxAlivePeriodInSeconds?: pulumi.Input; } /** * Log Analytics configuration, must only be provided when destination is configured as 'log-analytics' */ export interface LogAnalyticsConfigurationArgs { /** * Log analytics customer id */ customerId?: pulumi.Input; /** * Boolean indicating whether to parse json string log into dynamic json columns */ dynamicJsonColumns?: pulumi.Input; /** * Log analytics customer key */ sharedKey?: pulumi.Input; } /** * Log Configurations */ export interface LogConfigurationArgs { /** * Application Insights Configuration */ applicationInsightsConfiguration?: pulumi.Input; } /** * Logger settings for java workloads. */ export interface LoggerSettingArgs { /** * The specified logger's log level. */ level: pulumi.Input; /** * Logger name. */ logger: pulumi.Input; } /** * The configuration settings of the login flow of users using ContainerApp Service Authentication/Authorization. */ export interface LoginArgs { /** * External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored. * This is an advanced setting typically only needed by Windows Store application backends. * Note that URLs within the current domain are always implicitly allowed. */ allowedExternalRedirectUrls?: pulumi.Input[] | undefined>; /** * The configuration settings of the session cookie's expiration. */ cookieExpiration?: pulumi.Input; /** * The configuration settings of the nonce used in the login flow. */ nonce?: pulumi.Input; /** * true if the fragments from the request are preserved after the login request is made; otherwise, false. */ preserveUrlFragmentsForLogins?: pulumi.Input; /** * The routes that specify the endpoints used for login and logout requests. */ routes?: pulumi.Input; /** * The configuration settings of the token store. */ tokenStore?: pulumi.Input; } /** * The routes that specify the endpoints used for login and logout requests. */ export interface LoginRoutesArgs { /** * The endpoint at which a logout request should be made. */ logoutEndpoint?: pulumi.Input; } /** * The configuration settings of the login flow, including the scopes that should be requested. */ export interface LoginScopesArgs { /** * A list of the scopes that should be requested while authenticating. */ scopes?: pulumi.Input[] | undefined>; } /** * Configuration of Open Telemetry logs */ export interface LogsConfigurationArgs { /** * Open telemetry logs destinations */ destinations?: pulumi.Input[] | undefined>; } /** * Certificate resource specific properties */ export interface ManagedCertificatePropertiesArgs { /** * Selected type of domain control validation for managed certificates. */ domainControlValidation?: pulumi.Input; /** * Subject name of the certificate. */ subjectName?: pulumi.Input; } /** * Peer traffic encryption settings for the Managed Environment */ export interface ManagedEnvironmentEncryptionArgs { /** * Boolean indicating whether the peer traffic encryption is enabled */ enabled?: pulumi.Input; } /** * Peer authentication settings for the Managed Environment */ export interface ManagedEnvironmentPeerAuthenticationArgs { /** * Mutual TLS authentication settings for the Managed Environment */ mtls?: pulumi.Input; } /** * Peer traffic settings for the Managed Environment */ export interface ManagedEnvironmentPeerTrafficConfigurationArgs { /** * Peer traffic encryption settings for the Managed Environment */ encryption?: pulumi.Input; } /** * Storage properties */ export interface ManagedEnvironmentStoragePropertiesArgs { /** * Azure file properties */ azureFile?: pulumi.Input; /** * NFS Azure file properties */ nfsAzureFile?: pulumi.Input; } /** * Optional settings for a Managed Identity that is assigned to the Session pool. */ export interface ManagedIdentitySettingArgs { /** * The resource ID of a user-assigned managed identity that is assigned to the Session Pool, or 'system' for system-assigned identity. */ identity: pulumi.Input; /** * Use to select the lifecycle stages of a Session Pool during which the Managed Identity should be available. */ lifecycle?: pulumi.Input; } /** * managedIdentitySettingArgsProvideDefaults sets the appropriate defaults for ManagedIdentitySettingArgs */ export declare function managedIdentitySettingArgsProvideDefaults(val: ManagedIdentitySettingArgs): ManagedIdentitySettingArgs; /** * Managed service identity (system assigned and/or user assigned identities) */ export interface ManagedServiceIdentityArgs { /** * Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). */ type: pulumi.Input; /** * The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests. */ userAssignedIdentities?: pulumi.Input[] | undefined>; } /** * Configuration of Open Telemetry metrics */ export interface MetricsConfigurationArgs { /** * Open telemetry metrics destinations */ destinations?: pulumi.Input[] | undefined>; /** * Boolean indicating if including keda metrics */ includeKeda?: pulumi.Input; } /** * Configuration properties for mutual TLS authentication */ export interface MtlsArgs { /** * Boolean indicating whether the mutual TLS authentication is enabled */ enabled?: pulumi.Input; } /** * Nacos properties. */ export interface NacosComponentArgs { /** * Type of the Java Component. * Expected value is 'Nacos'. */ componentType: pulumi.Input<"Nacos">; /** * List of Java Components configuration properties */ configurations?: pulumi.Input[] | undefined>; /** * Java component scaling configurations */ scale?: pulumi.Input; /** * List of Java Components that are bound to the Java component */ serviceBinds?: pulumi.Input[] | undefined>; } /** * NFS Azure File Properties. */ export interface NfsAzureFilePropertiesArgs { /** * Access mode for storage */ accessMode?: pulumi.Input; /** * Server for NFS azure file. */ server?: pulumi.Input; /** * NFS Azure file share name. */ shareName?: pulumi.Input; } /** * The configuration settings of the nonce used in the login flow. */ export interface NonceArgs { /** * The time after the request is made when the nonce should expire. */ nonceExpirationInterval?: pulumi.Input; /** * false if the nonce should not be validated while completing the login flow; otherwise, true. */ validateNonce?: pulumi.Input; } /** * The authentication client credentials of the custom Open ID Connect provider. */ export interface OpenIdConnectClientCredentialArgs { /** * The app setting that contains the client secret for the custom Open ID Connect provider. */ clientSecretSettingName?: pulumi.Input; /** * The method that should be used to authenticate the user. */ method?: pulumi.Input; } /** * The configuration settings of the endpoints used for the custom Open ID Connect provider. */ export interface OpenIdConnectConfigArgs { /** * The endpoint to be used to make an authorization request. */ authorizationEndpoint?: pulumi.Input; /** * The endpoint that provides the keys necessary to validate the token. */ certificationUri?: pulumi.Input; /** * The endpoint that issues the token. */ issuer?: pulumi.Input; /** * The endpoint to be used to request a token. */ tokenEndpoint?: pulumi.Input; /** * The endpoint that contains all the configuration endpoints for the provider. */ wellKnownOpenIdConfiguration?: pulumi.Input; } /** * The configuration settings of the login flow of the custom Open ID Connect provider. */ export interface OpenIdConnectLoginArgs { /** * The name of the claim that contains the users name. */ nameClaimType?: pulumi.Input; /** * A list of the scopes that should be requested while authenticating. */ scopes?: pulumi.Input[] | undefined>; } /** * The configuration settings of the app registration for the custom Open ID Connect provider. */ export interface OpenIdConnectRegistrationArgs { /** * The authentication credentials of the custom Open ID Connect provider. */ clientCredential?: pulumi.Input; /** * The client id of the custom Open ID Connect provider. */ clientId?: pulumi.Input; /** * The configuration settings of the endpoints used for the custom Open ID Connect provider. */ openIdConnectConfiguration?: pulumi.Input; } /** * Configuration of Open Telemetry */ export interface OpenTelemetryConfigurationArgs { /** * Open telemetry destinations configuration */ destinationsConfiguration?: pulumi.Input; /** * Open telemetry logs configuration */ logsConfiguration?: pulumi.Input; /** * Open telemetry metrics configuration */ metricsConfiguration?: pulumi.Input; /** * Open telemetry trace configuration */ tracesConfiguration?: pulumi.Input; } /** * Configuration of otlp */ export interface OtlpConfigurationArgs { /** * The endpoint of otlp configuration */ endpoint?: pulumi.Input; /** * Headers of otlp configurations */ headers?: pulumi.Input[] | undefined>; /** * Boolean indicating if otlp configuration is insecure */ insecure?: pulumi.Input; /** * The name of otlp configuration */ name?: pulumi.Input; } /** * Model representing a pre-build step. */ export interface PreBuildStepArgs { /** * Description of the pre-build step. */ description?: pulumi.Input; /** * Http get request to send before the build. */ httpGet?: pulumi.Input; /** * List of custom commands to run. */ scripts?: pulumi.Input[] | undefined>; } /** * A collection of information about the state of the connection between service consumer and provider. */ export interface PrivateLinkServiceConnectionStateArgs { /** * A message indicating if changes on the service provider require any updates on the consumer. */ actionsRequired?: pulumi.Input; /** * The reason for approval/rejection of the connection. */ description?: pulumi.Input; /** * Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service. */ status?: pulumi.Input; } /** * Container App container Azure Queue based scaling rule. */ export interface QueueScaleRuleArgs { /** * Storage account name. required if using managed identity to authenticate */ accountName?: pulumi.Input; /** * Authentication secrets for the queue scale rule. */ auth?: pulumi.Input[] | undefined>; /** * The resource ID of a user-assigned managed identity that is assigned to the Container App, or 'system' for system-assigned identity. */ identity?: pulumi.Input; /** * Queue length. */ queueLength?: pulumi.Input; /** * Queue name. */ queueName?: pulumi.Input; } /** * Container App Private Registry */ export interface RegistryCredentialsArgs { /** * A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system' */ identity?: pulumi.Input; /** * The name of the Secret that contains the registry login password */ passwordSecretRef?: pulumi.Input; /** * Container Registry Server */ server?: pulumi.Input; /** * Container Registry Username */ username?: pulumi.Input; } /** * Container App registry information. */ export interface RegistryInfoArgs { /** * registry secret. */ registryPassword?: pulumi.Input; /** * registry server Url. */ registryUrl?: pulumi.Input; /** * registry username. */ registryUserName?: pulumi.Input; } /** * Container App Runtime configuration. */ export interface RuntimeArgs { /** * .NET app configuration */ dotnet?: pulumi.Input; /** * Java app configuration */ java?: pulumi.Input; } /** * .NET app configuration */ export interface RuntimeDotnetArgs { /** * Auto configure the ASP.NET Core Data Protection feature */ autoConfigureDataProtection?: pulumi.Input; } /** * Java app configuration */ export interface RuntimeJavaArgs { /** * Enable jmx core metrics for the java app */ enableMetrics?: pulumi.Input; /** * Diagnostic capabilities achieved by java agent */ javaAgent?: pulumi.Input; } /** * Diagnostic capabilities achieved by java agent */ export interface RuntimeJavaAgentArgs { /** * Enable java agent injection for the java app. */ enabled?: pulumi.Input; /** * Capabilities on the java logging scenario. */ logging?: pulumi.Input; } /** * Capabilities on the java logging scenario. */ export interface RuntimeLoggingArgs { /** * Settings of the logger for the java app. */ loggerSettings?: pulumi.Input[] | undefined>; } /** * Container App scaling configurations. */ export interface ScaleArgs { /** * Optional. KEDA Cooldown Period. Defaults to 300 seconds if not set. */ cooldownPeriod?: pulumi.Input; /** * Optional. Maximum number of container replicas. Defaults to 10 if not set. */ maxReplicas?: pulumi.Input; /** * Optional. Minimum number of container replicas. */ minReplicas?: pulumi.Input; /** * Optional. KEDA Polling Interval. Defaults to 30 seconds if not set. */ pollingInterval?: pulumi.Input; /** * Scaling rules. */ rules?: pulumi.Input[] | undefined>; } /** * scaleArgsProvideDefaults sets the appropriate defaults for ScaleArgs */ export declare function scaleArgsProvideDefaults(val: ScaleArgs): ScaleArgs; /** * Scale configuration. */ export interface ScaleConfigurationArgs { /** * The maximum count of sessions at the same time. */ maxConcurrentSessions?: pulumi.Input; /** * The minimum count of ready session instances. */ readySessionInstances?: pulumi.Input; } /** * Container App container scaling rule. */ export interface ScaleRuleArgs { /** * Azure Queue based scaling. */ azureQueue?: pulumi.Input; /** * Custom scale rule. */ custom?: pulumi.Input; /** * HTTP requests based scaling. */ http?: pulumi.Input; /** * Scale Rule Name */ name?: pulumi.Input; /** * Tcp requests based scaling. */ tcp?: pulumi.Input; } /** * Auth Secrets for Scale Rule */ export interface ScaleRuleAuthArgs { /** * Name of the secret from which to pull the auth params. */ secretRef?: pulumi.Input; /** * Trigger Parameter that uses the secret */ triggerParameter?: pulumi.Input; } /** * Spring Cloud Gateway route definition */ export interface ScgRouteArgs { /** * Filters of the route */ filters?: pulumi.Input[] | undefined>; /** * Id of the route */ id: pulumi.Input; /** * Order of the route */ order?: pulumi.Input; /** * Predicates of the route */ predicates?: pulumi.Input[] | undefined>; /** * Uri of the route */ uri: pulumi.Input; } /** * Maintenance schedule entry for a managed environment. */ export interface ScheduledEntryArgs { /** * Length of maintenance window range from 8 to 24 hours. */ durationHours: pulumi.Input; /** * Start hour after which managed environment maintenance can start from 0 to 23 hour. */ startHourUtc: pulumi.Input; /** * Day of the week when a managed environment can be patched. */ weekDay: pulumi.Input; } /** * Secret definition. */ export interface SecretArgs { /** * Resource ID of a managed identity to authenticate with Azure Key Vault, or System to use a system-assigned identity. */ identity?: pulumi.Input; /** * Azure Key Vault URL pointing to the secret referenced by the container app. */ keyVaultUrl?: pulumi.Input; /** * Secret Name. */ name?: pulumi.Input; /** * Secret Value. */ value?: pulumi.Input; } /** * Properties for a secret stored in a Key Vault. */ export interface SecretKeyVaultPropertiesArgs { /** * Resource ID of a managed identity to authenticate with Azure Key Vault, or System to use a system-assigned identity. */ identity?: pulumi.Input; /** * URL pointing to the Azure Key Vault secret. */ keyVaultUrl?: pulumi.Input; } /** * Secret to be added to volume. */ export interface SecretVolumeItemArgs { /** * Path to project secret to. If no path is provided, path defaults to name of secret listed in secretRef. */ path?: pulumi.Input; /** * Name of the Container App secret from which to pull the secret value. */ secretRef?: pulumi.Input; } /** * Container App to be a dev service */ export interface ServiceArgs { /** * Dev ContainerApp service type */ type: pulumi.Input; } /** * Configuration to bind a ContainerApp to a dev ContainerApp Service */ export interface ServiceBindArgs { /** * Type of the client to be used to connect to the service */ clientType?: pulumi.Input; /** * Customized keys for customizing injected values to the app */ customizedKeys?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Name of the service bind */ name?: pulumi.Input; /** * Resource id of the target service */ serviceId?: pulumi.Input; } /** * Container definitions for the sessions of the session pool. */ export interface SessionContainerArgs { /** * Container start command arguments. */ args?: pulumi.Input[] | undefined>; /** * Container start command. */ command?: pulumi.Input[] | undefined>; /** * Container environment variables. */ env?: pulumi.Input[] | undefined>; /** * Container image tag. */ image?: pulumi.Input; /** * Custom container name. */ name?: pulumi.Input; /** * List of probes for the container. */ probes?: pulumi.Input[] | undefined>; /** * Container resource requirements. */ resources?: pulumi.Input; } /** * Container resource requirements for sessions of the session pool. */ export interface SessionContainerResourcesArgs { /** * Required CPU in cores, e.g. 0.5 */ cpu?: pulumi.Input; /** * Required memory, e.g. "250Mb" */ memory?: pulumi.Input; } /** * Session pool ingress configuration. */ export interface SessionIngressArgs { /** * Target port in containers for traffic from ingress */ targetPort?: pulumi.Input; } /** * Session network configuration. */ export interface SessionNetworkConfigurationArgs { /** * Network status for the sessions. */ status?: pulumi.Input; } /** * Secret definition. */ export interface SessionPoolSecretArgs { /** * Secret Name. */ name?: pulumi.Input; /** * Secret Value. */ value?: pulumi.Input; } /** * Session probe configuration. */ export interface SessionProbeArgs { /** * Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10. */ failureThreshold?: pulumi.Input; /** * HTTPGet specifies the http request to perform. */ httpGet?: pulumi.Input; /** * Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60. */ initialDelaySeconds?: pulumi.Input; /** * How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240. */ periodSeconds?: pulumi.Input; /** * Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10. */ successThreshold?: pulumi.Input; /** * TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported. */ tcpSocket?: pulumi.Input; /** * Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour) */ terminationGracePeriodSeconds?: pulumi.Input; /** * Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240. */ timeoutSeconds?: pulumi.Input; /** * Denotes the type of probe. Can be Liveness or Startup, Readiness probe is not supported in sessions. Type must be unique for each probe within the context of a list of probes (SessionProbes). */ type?: pulumi.Input; } /** * HTTPGet specifies the http request to perform. */ export interface SessionProbeHttpGetArgs { /** * Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. */ host?: pulumi.Input; /** * Custom headers to set in the request. HTTP allows repeated headers. */ httpHeaders?: pulumi.Input[] | undefined>; /** * Path to access on the HTTP server. */ path?: pulumi.Input; /** * Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. */ port: pulumi.Input; /** * Scheme to use for connecting to the host. Defaults to HTTP. */ scheme?: pulumi.Input; } /** * HTTPHeader describes a custom header to be used in HTTP probes */ export interface SessionProbeHttpHeadersArgs { /** * The header field name */ name: pulumi.Input; /** * The header field value */ value: pulumi.Input; } /** * TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported. */ export interface SessionProbeTcpSocketArgs { /** * Optional: Host name to connect to, defaults to the pod IP. */ host?: pulumi.Input; /** * Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. */ port: pulumi.Input; } /** * Session pool private registry credentials. */ export interface SessionRegistryCredentialsArgs { /** * A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system' */ identity?: pulumi.Input; /** * The name of the secret that contains the registry login password */ passwordSecretRef?: pulumi.Input; /** * Container registry server. */ server?: pulumi.Input; /** * Container registry username. */ username?: pulumi.Input; } /** * SMB storage properties */ export interface SmbStorageArgs { /** * Access mode for storage */ accessMode?: pulumi.Input; /** * The domain name for the user. */ domain?: pulumi.Input; /** * The host name or IP address of the SMB server. */ host?: pulumi.Input; /** * The password for the user. */ password?: pulumi.Input; /** * The path to the SMB shared folder. */ shareName?: pulumi.Input; /** * The user to log on to the SMB server. */ username?: pulumi.Input; } /** * Spring Boot Admin properties. */ export interface SpringBootAdminComponentArgs { /** * Type of the Java Component. * Expected value is 'SpringBootAdmin'. */ componentType: pulumi.Input<"SpringBootAdmin">; /** * List of Java Components configuration properties */ configurations?: pulumi.Input[] | undefined>; /** * Java component scaling configurations */ scale?: pulumi.Input; /** * List of Java Components that are bound to the Java component */ serviceBinds?: pulumi.Input[] | undefined>; } /** * Spring Cloud Config properties. */ export interface SpringCloudConfigComponentArgs { /** * Type of the Java Component. * Expected value is 'SpringCloudConfig'. */ componentType: pulumi.Input<"SpringCloudConfig">; /** * List of Java Components configuration properties */ configurations?: pulumi.Input[] | undefined>; /** * Java component scaling configurations */ scale?: pulumi.Input; /** * List of Java Components that are bound to the Java component */ serviceBinds?: pulumi.Input[] | undefined>; } /** * Spring Cloud Eureka properties. */ export interface SpringCloudEurekaComponentArgs { /** * Type of the Java Component. * Expected value is 'SpringCloudEureka'. */ componentType: pulumi.Input<"SpringCloudEureka">; /** * List of Java Components configuration properties */ configurations?: pulumi.Input[] | undefined>; /** * Java component scaling configurations */ scale?: pulumi.Input; /** * List of Java Components that are bound to the Java component */ serviceBinds?: pulumi.Input[] | undefined>; } /** * Spring Cloud Gateway properties. */ export interface SpringCloudGatewayComponentArgs { /** * Type of the Java Component. * Expected value is 'SpringCloudGateway'. */ componentType: pulumi.Input<"SpringCloudGateway">; /** * List of Java Components configuration properties */ configurations?: pulumi.Input[] | undefined>; /** * Java component scaling configurations */ scale?: pulumi.Input; /** * List of Java Components that are bound to the Java component */ serviceBinds?: pulumi.Input[] | undefined>; /** * Gateway route definition */ springCloudGatewayRoutes?: pulumi.Input[] | undefined>; } /** * Defines parameters for tcp connection pooling */ export interface TcpConnectionPoolArgs { /** * Maximum number of tcp connections allowed */ maxConnections?: pulumi.Input; } /** * Policy that defines tcp request retry conditions */ export interface TcpRetryPolicyArgs { /** * Maximum number of attempts to connect to the tcp service */ maxConnectAttempts?: pulumi.Input; } /** * Container App container Tcp scaling rule. */ export interface TcpScaleRuleArgs { /** * Authentication secrets for the tcp scale rule. */ auth?: pulumi.Input[] | undefined>; /** * The resource ID of a user-assigned managed identity that is assigned to the Container App, or 'system' for system-assigned identity. */ identity?: pulumi.Input; /** * Metadata properties to describe tcp scale rule. */ metadata?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } /** * Container App versioned application definition. * Defines the desired state of an immutable revision. * Any changes to this section Will result in a new revision being created */ export interface TemplateArgs { /** * List of container definitions for the Container App. */ containers?: pulumi.Input[] | undefined>; /** * List of specialized containers that run before app containers. */ initContainers?: pulumi.Input[] | undefined>; /** * User friendly suffix that is appended to the revision name */ revisionSuffix?: pulumi.Input; /** * Scaling properties for the Container App. */ scale?: pulumi.Input; /** * List of container app services bound to the app */ serviceBinds?: pulumi.Input[] | undefined>; /** * Optional duration in seconds the Container App Instance needs to terminate gracefully. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds. */ terminationGracePeriodSeconds?: pulumi.Input; /** * List of volume definitions for the Container App. */ volumes?: pulumi.Input[] | undefined>; } /** * templateArgsProvideDefaults sets the appropriate defaults for TemplateArgs */ export declare function templateArgsProvideDefaults(val: TemplateArgs): TemplateArgs; /** * Policy to set request timeouts */ export interface TimeoutPolicyArgs { /** * Timeout, in seconds, for a request to initiate a connection */ connectionTimeoutInSeconds?: pulumi.Input; /** * Timeout, in seconds, for a request to respond */ responseTimeoutInSeconds?: pulumi.Input; } /** * The configuration settings of the token store. */ export interface TokenStoreArgs { /** * The configuration settings of the storage of the tokens if blob storage is used. */ azureBlobStorage?: pulumi.Input; /** * true to durably store platform-specific security tokens that are obtained during login flows; otherwise, false. * The default is false. */ enabled?: pulumi.Input; /** * The number of hours after session token expiration that a session token can be used to * call the token refresh API. The default is 72 hours. */ tokenRefreshExtensionHours?: pulumi.Input; } /** * Configuration of Open Telemetry traces */ export interface TracesConfigurationArgs { /** * Open telemetry traces destinations */ destinations?: pulumi.Input[] | undefined>; /** * Boolean indicating if including dapr traces */ includeDapr?: pulumi.Input; } /** * Traffic weight assigned to a revision */ export interface TrafficWeightArgs { /** * Associates a traffic label with a revision */ label?: pulumi.Input; /** * Indicates that the traffic weight belongs to a latest stable revision */ latestRevision?: pulumi.Input; /** * Name of a revision */ revisionName?: pulumi.Input; /** * Traffic weight assigned to a revision */ weight?: pulumi.Input; } /** * trafficWeightArgsProvideDefaults sets the appropriate defaults for TrafficWeightArgs */ export declare function trafficWeightArgsProvideDefaults(val: TrafficWeightArgs): TrafficWeightArgs; /** * The configuration settings of the Twitter provider. */ export interface TwitterArgs { /** * false if the Twitter provider should not be enabled despite the set registration; otherwise, true. */ enabled?: pulumi.Input; /** * The configuration settings of the app registration for the Twitter provider. */ registration?: pulumi.Input; } /** * The configuration settings of the app registration for the Twitter provider. */ export interface TwitterRegistrationArgs { /** * The OAuth 1.0a consumer key of the Twitter application used for sign-in. * This setting is required for enabling Twitter Sign-In. * Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in */ consumerKey?: pulumi.Input; /** * The app setting name that contains the OAuth 1.0a consumer secret of the Twitter * application used for sign-in. */ consumerSecretSettingName?: pulumi.Input; } /** * Configuration properties for apps environment to join a Virtual Network */ export interface VnetConfigurationArgs { /** * CIDR notation IP range assigned to the Docker bridge, network. Must not overlap with any other provided IP ranges. */ dockerBridgeCidr?: pulumi.Input; /** * Resource ID of a subnet for infrastructure components. Must not overlap with any other provided IP ranges. */ infrastructureSubnetId?: pulumi.Input; /** * Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide infrastructureSubnetId if enabling this property */ internal?: pulumi.Input; /** * IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. Must not overlap with any other provided IP ranges. */ platformReservedCidr?: pulumi.Input; /** * An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server. */ platformReservedDnsIP?: pulumi.Input; } /** * Volume definitions for the Container App. */ export interface VolumeArgs { /** * Mount options used while mounting the Azure file share or NFS Azure file share. Must be a comma-separated string. */ mountOptions?: pulumi.Input; /** * Volume name. */ name?: pulumi.Input; /** * List of secrets to be added in volume. If no secrets are provided, all secrets in collection will be added to volume. */ secrets?: pulumi.Input[] | undefined>; /** * Name of storage resource. No need to provide for EmptyDir and Secret. */ storageName?: pulumi.Input; /** * Storage type for the volume. If not provided, use EmptyDir. */ storageType?: pulumi.Input; } /** * Volume mount for the Container App. */ export interface VolumeMountArgs { /** * Path within the container at which the volume should be mounted.Must not contain ':'. */ mountPath?: pulumi.Input; /** * Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). */ subPath?: pulumi.Input; /** * This must match the Name of a Volume. */ volumeName?: pulumi.Input; } /** * Workload profile to scope container app execution. */ export interface WorkloadProfileArgs { /** * Whether to use a FIPS-enabled OS. Supported only for dedicated workload profiles. */ enableFips?: pulumi.Input; /** * The maximum capacity. */ maximumCount?: pulumi.Input; /** * The minimum capacity. */ minimumCount?: pulumi.Input; /** * Workload profile type for the workloads to run on. */ name: pulumi.Input; /** * Workload profile type for the workloads to run on. */ workloadProfileType: pulumi.Input; } /** * workloadProfileArgsProvideDefaults sets the appropriate defaults for WorkloadProfileArgs */ export declare function workloadProfileArgsProvideDefaults(val: WorkloadProfileArgs): WorkloadProfileArgs;