
src.appengine.v1beta.AppArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.appengine.v1beta
final case class AppArgs private(
authDomain: besom.types.Output[scala.Option[String]],
databaseType: besom.types.Output[scala.Option[besom.api.googlenative.appengine.v1beta.enums.AppDatabaseType]],
defaultCookieExpiration: besom.types.Output[scala.Option[String]],
dispatchRules: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.googlenative.appengine.v1beta.inputs.UrlDispatchRuleArgs]]],
featureSettings: besom.types.Output[scala.Option[besom.api.googlenative.appengine.v1beta.inputs.FeatureSettingsArgs]],
generatedCustomerMetadata: besom.types.Output[scala.Option[scala.Predef.Map[String, String]]],
iap: besom.types.Output[scala.Option[besom.api.googlenative.appengine.v1beta.inputs.IdentityAwareProxyArgs]],
id: besom.types.Output[scala.Option[String]],
location: besom.types.Output[scala.Option[String]],
serviceAccount: besom.types.Output[scala.Option[String]],
servingStatus: besom.types.Output[scala.Option[besom.api.googlenative.appengine.v1beta.enums.AppServingStatus]]
)
object AppArgs:
def apply(
authDomain: besom.types.Input.Optional[String] = scala.None,
databaseType: besom.types.Input.Optional[besom.api.googlenative.appengine.v1beta.enums.AppDatabaseType] = scala.None,
defaultCookieExpiration: besom.types.Input.Optional[String] = scala.None,
dispatchRules: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.googlenative.appengine.v1beta.inputs.UrlDispatchRuleArgs]]] = scala.None,
featureSettings: besom.types.Input.Optional[besom.api.googlenative.appengine.v1beta.inputs.FeatureSettingsArgs] = scala.None,
generatedCustomerMetadata: besom.types.Input.Optional[scala.Predef.Map[String, besom.types.Input[String]]] = scala.None,
iap: besom.types.Input.Optional[besom.api.googlenative.appengine.v1beta.inputs.IdentityAwareProxyArgs] = scala.None,
id: besom.types.Input.Optional[String] = scala.None,
location: besom.types.Input.Optional[String] = scala.None,
serviceAccount: besom.types.Input.Optional[String] = scala.None,
servingStatus: besom.types.Input.Optional[besom.api.googlenative.appengine.v1beta.enums.AppServingStatus] = scala.None
)(using besom.types.Context): AppArgs =
new AppArgs(
authDomain = authDomain.asOptionOutput(isSecret = false),
databaseType = databaseType.asOptionOutput(isSecret = false),
defaultCookieExpiration = defaultCookieExpiration.asOptionOutput(isSecret = false),
dispatchRules = dispatchRules.asOptionOutput(isSecret = false),
featureSettings = featureSettings.asOptionOutput(isSecret = false),
generatedCustomerMetadata = generatedCustomerMetadata.asOptionOutput(isSecret = false),
iap = iap.asOptionOutput(isSecret = false),
id = id.asOptionOutput(isSecret = false),
location = location.asOptionOutput(isSecret = false),
serviceAccount = serviceAccount.asOptionOutput(isSecret = false),
servingStatus = servingStatus.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[AppArgs] =
besom.internal.Encoder.derived[AppArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[AppArgs] =
besom.internal.ArgsEncoder.derived[AppArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy