
src.apigeeregistry.v1.GetDeploymentArtifactArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.apigeeregistry.v1
final case class GetDeploymentArtifactArgs private(
apiId: besom.types.Output[String],
artifactId: besom.types.Output[String],
deploymentId: besom.types.Output[String],
location: besom.types.Output[String],
project: besom.types.Output[scala.Option[String]]
)
object GetDeploymentArtifactArgs:
def apply(
apiId: besom.types.Input[String],
artifactId: besom.types.Input[String],
deploymentId: besom.types.Input[String],
location: besom.types.Input[String],
project: besom.types.Input.Optional[String] = scala.None
)(using besom.types.Context): GetDeploymentArtifactArgs =
new GetDeploymentArtifactArgs(
apiId = apiId.asOutput(isSecret = false),
artifactId = artifactId.asOutput(isSecret = false),
deploymentId = deploymentId.asOutput(isSecret = false),
location = location.asOutput(isSecret = false),
project = project.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetDeploymentArtifactArgs] =
besom.internal.Encoder.derived[GetDeploymentArtifactArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetDeploymentArtifactArgs] =
besom.internal.ArgsEncoder.derived[GetDeploymentArtifactArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy