
src.apigee.v1.GetAliasArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.apigee.v1
final case class GetAliasArgs private(
aliasId: besom.types.Output[String],
environmentId: besom.types.Output[String],
keystoreId: besom.types.Output[String],
organizationId: besom.types.Output[String]
)
object GetAliasArgs:
def apply(
aliasId: besom.types.Input[String],
environmentId: besom.types.Input[String],
keystoreId: besom.types.Input[String],
organizationId: besom.types.Input[String]
)(using besom.types.Context): GetAliasArgs =
new GetAliasArgs(
aliasId = aliasId.asOutput(isSecret = false),
environmentId = environmentId.asOutput(isSecret = false),
keystoreId = keystoreId.asOutput(isSecret = false),
organizationId = organizationId.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetAliasArgs] =
besom.internal.Encoder.derived[GetAliasArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetAliasArgs] =
besom.internal.ArgsEncoder.derived[GetAliasArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy