Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.appengine/v1.App
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates an App Engine application for a Google Cloud Platform project. Required fields: id - The ID of the target Cloud Platform project. location - The region (https://cloud.google.com/appengine/docs/locations) where you want the App Engine application located.For more information about App Engine applications, see Managing Projects, Applications, and Billing (https://cloud.google.com/appengine/docs/standard/python/console/). Auto-naming is currently not supported for this resource. Note - this resource’s API doesn’t support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.
Create App Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new App(name: string, args?: AppArgs, opts?: CustomResourceOptions);
@overload
def App(resource_name: str,
args: Optional[AppArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def App(resource_name: str,
opts: Optional[ResourceOptions] = None,
auth_domain: Optional[str] = None,
database_type: Optional[AppDatabaseType] = None,
default_cookie_expiration: Optional[str] = None,
dispatch_rules: Optional[Sequence[UrlDispatchRuleArgs]] = None,
feature_settings: Optional[FeatureSettingsArgs] = None,
generated_customer_metadata: Optional[Mapping[str, str]] = None,
iap: Optional[IdentityAwareProxyArgs] = None,
id: Optional[str] = None,
location: Optional[str] = None,
service_account: Optional[str] = None,
serving_status: Optional[AppServingStatus] = None)
func NewApp(ctx *Context, name string, args *AppArgs, opts ...ResourceOption) (*App, error)
public App(string name, AppArgs? args = null, CustomResourceOptions? opts = null)
type: google-native:appengine/v1:App
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var appResource = new GoogleNative.AppEngine.V1.App("appResource", new()
{
AuthDomain = "string",
DatabaseType = GoogleNative.AppEngine.V1.AppDatabaseType.DatabaseTypeUnspecified,
DefaultCookieExpiration = "string",
DispatchRules = new[]
{
new GoogleNative.AppEngine.V1.Inputs.UrlDispatchRuleArgs
{
Domain = "string",
Path = "string",
Service = "string",
},
},
FeatureSettings = new GoogleNative.AppEngine.V1.Inputs.FeatureSettingsArgs
{
SplitHealthChecks = false,
UseContainerOptimizedOs = false,
},
GeneratedCustomerMetadata =
{
{ "string", "string" },
},
Iap = new GoogleNative.AppEngine.V1.Inputs.IdentityAwareProxyArgs
{
Enabled = false,
Oauth2ClientId = "string",
Oauth2ClientSecret = "string",
},
Id = "string",
Location = "string",
ServiceAccount = "string",
ServingStatus = GoogleNative.AppEngine.V1.AppServingStatus.Unspecified,
});
example, err := appengine.NewApp(ctx, "appResource", &appengine.AppArgs{
AuthDomain: pulumi.String("string"),
DatabaseType: appengine.AppDatabaseTypeDatabaseTypeUnspecified,
DefaultCookieExpiration: pulumi.String("string"),
DispatchRules: appengine.UrlDispatchRuleArray{
&appengine.UrlDispatchRuleArgs{
Domain: pulumi.String("string"),
Path: pulumi.String("string"),
Service: pulumi.String("string"),
},
},
FeatureSettings: &appengine.FeatureSettingsArgs{
SplitHealthChecks: pulumi.Bool(false),
UseContainerOptimizedOs: pulumi.Bool(false),
},
GeneratedCustomerMetadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
Iap: &appengine.IdentityAwareProxyArgs{
Enabled: pulumi.Bool(false),
Oauth2ClientId: pulumi.String("string"),
Oauth2ClientSecret: pulumi.String("string"),
},
Id: pulumi.String("string"),
Location: pulumi.String("string"),
ServiceAccount: pulumi.String("string"),
ServingStatus: appengine.AppServingStatusUnspecified,
})
var appResource = new App("appResource", AppArgs.builder()
.authDomain("string")
.databaseType("DATABASE_TYPE_UNSPECIFIED")
.defaultCookieExpiration("string")
.dispatchRules(UrlDispatchRuleArgs.builder()
.domain("string")
.path("string")
.service("string")
.build())
.featureSettings(FeatureSettingsArgs.builder()
.splitHealthChecks(false)
.useContainerOptimizedOs(false)
.build())
.generatedCustomerMetadata(Map.of("string", "string"))
.iap(IdentityAwareProxyArgs.builder()
.enabled(false)
.oauth2ClientId("string")
.oauth2ClientSecret("string")
.build())
.id("string")
.location("string")
.serviceAccount("string")
.servingStatus("UNSPECIFIED")
.build());
app_resource = google_native.appengine.v1.App("appResource",
auth_domain="string",
database_type=google_native.appengine.v1.AppDatabaseType.DATABASE_TYPE_UNSPECIFIED,
default_cookie_expiration="string",
dispatch_rules=[google_native.appengine.v1.UrlDispatchRuleArgs(
domain="string",
path="string",
service="string",
)],
feature_settings=google_native.appengine.v1.FeatureSettingsArgs(
split_health_checks=False,
use_container_optimized_os=False,
),
generated_customer_metadata={
"string": "string",
},
iap=google_native.appengine.v1.IdentityAwareProxyArgs(
enabled=False,
oauth2_client_id="string",
oauth2_client_secret="string",
),
id="string",
location="string",
service_account="string",
serving_status=google_native.appengine.v1.AppServingStatus.UNSPECIFIED)
const appResource = new google_native.appengine.v1.App("appResource", {
authDomain: "string",
databaseType: google_native.appengine.v1.AppDatabaseType.DatabaseTypeUnspecified,
defaultCookieExpiration: "string",
dispatchRules: [{
domain: "string",
path: "string",
service: "string",
}],
featureSettings: {
splitHealthChecks: false,
useContainerOptimizedOs: false,
},
generatedCustomerMetadata: {
string: "string",
},
iap: {
enabled: false,
oauth2ClientId: "string",
oauth2ClientSecret: "string",
},
id: "string",
location: "string",
serviceAccount: "string",
servingStatus: google_native.appengine.v1.AppServingStatus.Unspecified,
});
type: google-native:appengine/v1:App
properties:
authDomain: string
databaseType: DATABASE_TYPE_UNSPECIFIED
defaultCookieExpiration: string
dispatchRules:
- domain: string
path: string
service: string
featureSettings:
splitHealthChecks: false
useContainerOptimizedOs: false
generatedCustomerMetadata:
string: string
iap:
enabled: false
oauth2ClientId: string
oauth2ClientSecret: string
id: string
location: string
serviceAccount: string
servingStatus: UNSPECIFIED
App Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The App resource accepts the following input properties:
- Auth
Domain string - Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
- Database
Type Pulumi.Google Native. App Engine. V1. App Database Type - The type of the Cloud Firestore or Cloud Datastore database associated with this application.
- string
- Cookie expiration policy for this application.
- Dispatch
Rules List<Pulumi.Google Native. App Engine. V1. Inputs. Url Dispatch Rule> - HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
- Feature
Settings Pulumi.Google Native. App Engine. V1. Inputs. Feature Settings - The feature specific settings to be used in the application.
- Generated
Customer Dictionary<string, string>Metadata - Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest
- Iap
Pulumi.
Google Native. App Engine. V1. Inputs. Identity Aware Proxy - Id string
- Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
- Location string
- Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
- Service
Account string - The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
- Serving
Status Pulumi.Google Native. App Engine. V1. App Serving Status - Serving status of this application.
- Auth
Domain string - Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
- Database
Type AppDatabase Type - The type of the Cloud Firestore or Cloud Datastore database associated with this application.
- string
- Cookie expiration policy for this application.
- Dispatch
Rules []UrlDispatch Rule Args - HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
- Feature
Settings FeatureSettings Args - The feature specific settings to be used in the application.
- Generated
Customer map[string]stringMetadata - Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest
- Iap
Identity
Aware Proxy Args - Id string
- Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
- Location string
- Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
- Service
Account string - The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
- Serving
Status AppServing Status - Serving status of this application.
- auth
Domain String - Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
- database
Type AppDatabase Type - The type of the Cloud Firestore or Cloud Datastore database associated with this application.
- String
- Cookie expiration policy for this application.
- dispatch
Rules List<UrlDispatch Rule> - HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
- feature
Settings FeatureSettings - The feature specific settings to be used in the application.
- generated
Customer Map<String,String>Metadata - Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest
- iap
Identity
Aware Proxy - id String
- Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
- location String
- Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
- service
Account String - The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
- serving
Status AppServing Status - Serving status of this application.
- auth
Domain string - Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
- database
Type AppDatabase Type - The type of the Cloud Firestore or Cloud Datastore database associated with this application.
- string
- Cookie expiration policy for this application.
- dispatch
Rules UrlDispatch Rule[] - HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
- feature
Settings FeatureSettings - The feature specific settings to be used in the application.
- generated
Customer {[key: string]: string}Metadata - Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest
- iap
Identity
Aware Proxy - id string
- Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
- location string
- Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
- service
Account string - The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
- serving
Status AppServing Status - Serving status of this application.
- auth_
domain str - Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
- database_
type AppDatabase Type - The type of the Cloud Firestore or Cloud Datastore database associated with this application.
- str
- Cookie expiration policy for this application.
- dispatch_
rules Sequence[UrlDispatch Rule Args] - HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
- feature_
settings FeatureSettings Args - The feature specific settings to be used in the application.
- generated_
customer_ Mapping[str, str]metadata - Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest
- iap
Identity
Aware Proxy Args - id str
- Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
- location str
- Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
- service_
account str - The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
- serving_
status AppServing Status - Serving status of this application.
- auth
Domain String - Google Apps authentication domain that controls which users can access this application.Defaults to open access for any Google Account.
- database
Type "DATABASE_TYPE_UNSPECIFIED" | "CLOUD_DATASTORE" | "CLOUD_FIRESTORE" | "CLOUD_DATASTORE_COMPATIBILITY" - The type of the Cloud Firestore or Cloud Datastore database associated with this application.
- String
- Cookie expiration policy for this application.
- dispatch
Rules List<Property Map> - HTTP path dispatch rules for requests to the application that do not explicitly target a service or version. Rules are order-dependent. Up to 20 dispatch rules can be supported.
- feature
Settings Property Map - The feature specific settings to be used in the application.
- generated
Customer Map<String>Metadata - Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest
- iap Property Map
- id String
- Identifier of the Application resource. This identifier is equivalent to the project ID of the Google Cloud Platform project where you want to deploy your application. Example: myapp.
- location String
- Location from which this application runs. Application instances run out of the data centers in the specified location, which is also where all of the application's end user content is stored.Defaults to us-central.View the list of supported locations (https://cloud.google.com/appengine/docs/locations).
- service
Account String - The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
- serving
Status "UNSPECIFIED" | "SERVING" | "USER_DISABLED" | "SYSTEM_DISABLED" - Serving status of this application.
Outputs
All input properties are implicitly available as output properties. Additionally, the App resource produces the following output properties:
- Code
Bucket string - Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.
- Default
Bucket string - Google Cloud Storage bucket that can be used by this application to store content.
- Default
Hostname string - Hostname used to reach this application, as resolved by App Engine.
- Gcr
Domain string - The Google Container Registry domain used for storing managed build docker images for this application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Full path to the Application resource in the API. Example: apps/myapp.
- Code
Bucket string - Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.
- Default
Bucket string - Google Cloud Storage bucket that can be used by this application to store content.
- Default
Hostname string - Hostname used to reach this application, as resolved by App Engine.
- Gcr
Domain string - The Google Container Registry domain used for storing managed build docker images for this application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Full path to the Application resource in the API. Example: apps/myapp.
- code
Bucket String - Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.
- default
Bucket String - Google Cloud Storage bucket that can be used by this application to store content.
- default
Hostname String - Hostname used to reach this application, as resolved by App Engine.
- gcr
Domain String - The Google Container Registry domain used for storing managed build docker images for this application.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Full path to the Application resource in the API. Example: apps/myapp.
- code
Bucket string - Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.
- default
Bucket string - Google Cloud Storage bucket that can be used by this application to store content.
- default
Hostname string - Hostname used to reach this application, as resolved by App Engine.
- gcr
Domain string - The Google Container Registry domain used for storing managed build docker images for this application.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Full path to the Application resource in the API. Example: apps/myapp.
- code_
bucket str - Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.
- default_
bucket str - Google Cloud Storage bucket that can be used by this application to store content.
- default_
hostname str - Hostname used to reach this application, as resolved by App Engine.
- gcr_
domain str - The Google Container Registry domain used for storing managed build docker images for this application.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Full path to the Application resource in the API. Example: apps/myapp.
- code
Bucket String - Google Cloud Storage bucket that can be used for storing files associated with this application. This bucket is associated with the application and can be used by the gcloud deployment commands.
- default
Bucket String - Google Cloud Storage bucket that can be used by this application to store content.
- default
Hostname String - Hostname used to reach this application, as resolved by App Engine.
- gcr
Domain String - The Google Container Registry domain used for storing managed build docker images for this application.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Full path to the Application resource in the API. Example: apps/myapp.
Supporting Types
AppDatabaseType, AppDatabaseTypeArgs
- Database
Type Unspecified - DATABASE_TYPE_UNSPECIFIEDDatabase type is unspecified.
- Cloud
Datastore - CLOUD_DATASTORECloud Datastore
- Cloud
Firestore - CLOUD_FIRESTORECloud Firestore Native
- Cloud
Datastore Compatibility - CLOUD_DATASTORE_COMPATIBILITYCloud Firestore in Datastore Mode
- App
Database Type Database Type Unspecified - DATABASE_TYPE_UNSPECIFIEDDatabase type is unspecified.
- App
Database Type Cloud Datastore - CLOUD_DATASTORECloud Datastore
- App
Database Type Cloud Firestore - CLOUD_FIRESTORECloud Firestore Native
- App
Database Type Cloud Datastore Compatibility - CLOUD_DATASTORE_COMPATIBILITYCloud Firestore in Datastore Mode
- Database
Type Unspecified - DATABASE_TYPE_UNSPECIFIEDDatabase type is unspecified.
- Cloud
Datastore - CLOUD_DATASTORECloud Datastore
- Cloud
Firestore - CLOUD_FIRESTORECloud Firestore Native
- Cloud
Datastore Compatibility - CLOUD_DATASTORE_COMPATIBILITYCloud Firestore in Datastore Mode
- Database
Type Unspecified - DATABASE_TYPE_UNSPECIFIEDDatabase type is unspecified.
- Cloud
Datastore - CLOUD_DATASTORECloud Datastore
- Cloud
Firestore - CLOUD_FIRESTORECloud Firestore Native
- Cloud
Datastore Compatibility - CLOUD_DATASTORE_COMPATIBILITYCloud Firestore in Datastore Mode
- DATABASE_TYPE_UNSPECIFIED
- DATABASE_TYPE_UNSPECIFIEDDatabase type is unspecified.
- CLOUD_DATASTORE
- CLOUD_DATASTORECloud Datastore
- CLOUD_FIRESTORE
- CLOUD_FIRESTORECloud Firestore Native
- CLOUD_DATASTORE_COMPATIBILITY
- CLOUD_DATASTORE_COMPATIBILITYCloud Firestore in Datastore Mode
- "DATABASE_TYPE_UNSPECIFIED"
- DATABASE_TYPE_UNSPECIFIEDDatabase type is unspecified.
- "CLOUD_DATASTORE"
- CLOUD_DATASTORECloud Datastore
- "CLOUD_FIRESTORE"
- CLOUD_FIRESTORECloud Firestore Native
- "CLOUD_DATASTORE_COMPATIBILITY"
- CLOUD_DATASTORE_COMPATIBILITYCloud Firestore in Datastore Mode
AppServingStatus, AppServingStatusArgs
- Unspecified
- UNSPECIFIEDServing status is unspecified.
- Serving
- SERVINGApplication is serving.
- User
Disabled - USER_DISABLEDApplication has been disabled by the user.
- System
Disabled - SYSTEM_DISABLEDApplication has been disabled by the system.
- App
Serving Status Unspecified - UNSPECIFIEDServing status is unspecified.
- App
Serving Status Serving - SERVINGApplication is serving.
- App
Serving Status User Disabled - USER_DISABLEDApplication has been disabled by the user.
- App
Serving Status System Disabled - SYSTEM_DISABLEDApplication has been disabled by the system.
- Unspecified
- UNSPECIFIEDServing status is unspecified.
- Serving
- SERVINGApplication is serving.
- User
Disabled - USER_DISABLEDApplication has been disabled by the user.
- System
Disabled - SYSTEM_DISABLEDApplication has been disabled by the system.
- Unspecified
- UNSPECIFIEDServing status is unspecified.
- Serving
- SERVINGApplication is serving.
- User
Disabled - USER_DISABLEDApplication has been disabled by the user.
- System
Disabled - SYSTEM_DISABLEDApplication has been disabled by the system.
- UNSPECIFIED
- UNSPECIFIEDServing status is unspecified.
- SERVING
- SERVINGApplication is serving.
- USER_DISABLED
- USER_DISABLEDApplication has been disabled by the user.
- SYSTEM_DISABLED
- SYSTEM_DISABLEDApplication has been disabled by the system.
- "UNSPECIFIED"
- UNSPECIFIEDServing status is unspecified.
- "SERVING"
- SERVINGApplication is serving.
- "USER_DISABLED"
- USER_DISABLEDApplication has been disabled by the user.
- "SYSTEM_DISABLED"
- SYSTEM_DISABLEDApplication has been disabled by the system.
FeatureSettings, FeatureSettingsArgs
- Split
Health boolChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- Use
Container boolOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- Split
Health boolChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- Use
Container boolOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split
Health BooleanChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use
Container BooleanOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split
Health booleanChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use
Container booleanOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split_
health_ boolchecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use_
container_ booloptimized_ os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split
Health BooleanChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use
Container BooleanOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
FeatureSettingsResponse, FeatureSettingsResponseArgs
- Split
Health boolChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- Use
Container boolOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- Split
Health boolChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- Use
Container boolOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split
Health BooleanChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use
Container BooleanOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split
Health booleanChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use
Container booleanOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split_
health_ boolchecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use_
container_ booloptimized_ os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
- split
Health BooleanChecks - Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.
- use
Container BooleanOptimized Os - If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
IdentityAwareProxy, IdentityAwareProxyArgs
- Enabled bool
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- Oauth2Client
Id string - OAuth2 client ID to use for the authentication flow.
- Oauth2Client
Secret string - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- Enabled bool
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- Oauth2Client
Id string - OAuth2 client ID to use for the authentication flow.
- Oauth2Client
Secret string - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- enabled Boolean
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2Client
Id String - OAuth2 client ID to use for the authentication flow.
- oauth2Client
Secret String - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- enabled boolean
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2Client
Id string - OAuth2 client ID to use for the authentication flow.
- oauth2Client
Secret string - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- enabled bool
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2_
client_ strid - OAuth2 client ID to use for the authentication flow.
- oauth2_
client_ strsecret - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- enabled Boolean
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2Client
Id String - OAuth2 client ID to use for the authentication flow.
- oauth2Client
Secret String - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
IdentityAwareProxyResponse, IdentityAwareProxyResponseArgs
- Enabled bool
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- Oauth2Client
Id string - OAuth2 client ID to use for the authentication flow.
- Oauth2Client
Secret string - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- Oauth2Client
Secret stringSha256 - Hex-encoded SHA-256 hash of the client secret.
- Enabled bool
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- Oauth2Client
Id string - OAuth2 client ID to use for the authentication flow.
- Oauth2Client
Secret string - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- Oauth2Client
Secret stringSha256 - Hex-encoded SHA-256 hash of the client secret.
- enabled Boolean
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2Client
Id String - OAuth2 client ID to use for the authentication flow.
- oauth2Client
Secret String - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- oauth2Client
Secret StringSha256 - Hex-encoded SHA-256 hash of the client secret.
- enabled boolean
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2Client
Id string - OAuth2 client ID to use for the authentication flow.
- oauth2Client
Secret string - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- oauth2Client
Secret stringSha256 - Hex-encoded SHA-256 hash of the client secret.
- enabled bool
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2_
client_ strid - OAuth2 client ID to use for the authentication flow.
- oauth2_
client_ strsecret - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- oauth2_
client_ strsecret_ sha256 - Hex-encoded SHA-256 hash of the client secret.
- enabled Boolean
- Whether the serving infrastructure will authenticate and authorize all incoming requests.If true, the oauth2_client_id and oauth2_client_secret fields must be non-empty.
- oauth2Client
Id String - OAuth2 client ID to use for the authentication flow.
- oauth2Client
Secret String - OAuth2 client secret to use for the authentication flow.For security reasons, this value cannot be retrieved via the API. Instead, the SHA-256 hash of the value is returned in the oauth2_client_secret_sha256 field.@InputOnly
- oauth2Client
Secret StringSha256 - Hex-encoded SHA-256 hash of the client secret.
UrlDispatchRule, UrlDispatchRuleArgs
- Domain string
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- Path string
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- Service string
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- Domain string
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- Path string
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- Service string
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain String
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path String
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service String
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain string
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path string
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service string
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain str
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path str
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service str
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain String
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path String
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service String
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
UrlDispatchRuleResponse, UrlDispatchRuleResponseArgs
- Domain string
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- Path string
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- Service string
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- Domain string
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- Path string
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- Service string
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain String
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path String
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service String
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain string
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path string
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service string
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain str
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path str
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service str
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
- domain String
- Domain name to match against. The wildcard "" is supported if specified before a period: ".".Defaults to matching all domains: "*".
- path String
- Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path.The sum of the lengths of the domain and path may not exceed 100 characters.
- service String
- Resource ID of a service in this application that should serve the matched request. The service must already exist. Example: default.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.