
src.cloudsearch.v1.DataSource.scala Maven / Gradle / Ivy
package besom.api.googlenative.cloudsearch.v1
final case class DataSource private(
urn: besom.types.Output[besom.types.URN],
id: besom.types.Output[besom.types.ResourceId],
disableModifications: besom.types.Output[Boolean],
disableServing: besom.types.Output[Boolean],
displayName: besom.types.Output[String],
indexingServiceAccounts: besom.types.Output[scala.collection.immutable.List[String]],
itemsVisibility: besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.cloudsearch.v1.outputs.GSuitePrincipalResponse]],
name: besom.types.Output[String],
operationIds: besom.types.Output[scala.collection.immutable.List[String]],
returnThumbnailUrls: besom.types.Output[Boolean],
shortName: besom.types.Output[String]
) extends besom.CustomResource
object DataSource extends besom.ResourceCompanion[DataSource]:
/** Resource constructor for DataSource.
*
* @param name [[besom.util.NonEmptyString]] The unique (stack-wise) name of the resource in Pulumi state (not on provider's side).
* NonEmptyString is inferred automatically from non-empty string literals, even when interpolated. If you encounter any
* issues with this, please try using `: NonEmptyString` type annotation. If you need to convert a dynamically generated
* string to NonEmptyString, use `NonEmptyString.apply` method - `NonEmptyString(str): Option[NonEmptyString]`.
*
* @param args [[DataSourceArgs]] The configuration to use to create this resource.
*
* @param opts [[besom.CustomResourceOptions]] Resource options to use for this resource.
* Defaults to empty options. If you need to set some options, use [[besom.opts]] function to create them, for example:
*
* {{{
* val res = DataSource(
* "my-resource",
* DataSourceArgs(...), // your args
* opts(provider = myProvider)
* )
* }}}
*/
def apply(using ctx: besom.types.Context)(
name: besom.util.NonEmptyString,
args: DataSourceArgs,
opts: besom.ResourceOptsVariant.Custom ?=> besom.CustomResourceOptions = besom.CustomResourceOptions()
): besom.types.Output[DataSource] =
ctx.readOrRegisterResource[DataSource, DataSourceArgs]("google-native:cloudsearch/v1:DataSource", name, args, opts(using besom.ResourceOptsVariant.Custom))
private[besom] def typeToken: besom.types.ResourceType = "google-native:cloudsearch/v1:DataSource"
given resourceDecoder(using besom.types.Context): besom.types.ResourceDecoder[DataSource] =
besom.internal.ResourceDecoder.derived[DataSource]
given decoder(using besom.types.Context): besom.types.Decoder[DataSource] =
besom.internal.Decoder.customResourceDecoder[DataSource]
given outputOps: {} with
extension(output: besom.types.Output[DataSource])
def urn : besom.types.Output[besom.types.URN] = output.flatMap(_.urn)
def id : besom.types.Output[besom.types.ResourceId] = output.flatMap(_.id)
def disableModifications : besom.types.Output[Boolean] = output.flatMap(_.disableModifications)
def disableServing : besom.types.Output[Boolean] = output.flatMap(_.disableServing)
def displayName : besom.types.Output[String] = output.flatMap(_.displayName)
def indexingServiceAccounts : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.indexingServiceAccounts)
def itemsVisibility : besom.types.Output[scala.collection.immutable.List[besom.api.googlenative.cloudsearch.v1.outputs.GSuitePrincipalResponse]] = output.flatMap(_.itemsVisibility)
def name : besom.types.Output[String] = output.flatMap(_.name)
def operationIds : besom.types.Output[scala.collection.immutable.List[String]] = output.flatMap(_.operationIds)
def returnThumbnailUrls : besom.types.Output[Boolean] = output.flatMap(_.returnThumbnailUrls)
def shortName : besom.types.Output[String] = output.flatMap(_.shortName)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy