Package-level declarations

Types

Link copied to clipboard
data class AcceleratorArgs(val count: Output<Int>? = null, val type: Output<String>? = null) : ConvertibleToJava<AcceleratorArgs>

An accelerator card attached to the instance.

Link copied to clipboard
Link copied to clipboard
data class AuditConfigArgs(val auditLogConfigs: Output<List<AuditLogConfigArgs>>? = null, val service: Output<String>? = null) : ConvertibleToJava<AuditConfigArgs>

Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both allServices and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices", "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": "user:jose@example.com" }, { "log_type": "DATA_WRITE" }, { "log_type": "ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com", "audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type": "DATA_WRITE", "exempted_members": "user:aliya@example.com" } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts jose@example.com from DATA_READ logging, and aliya@example.com from DATA_WRITE logging.

Link copied to clipboard
Link copied to clipboard
data class AuditLogConfigArgs(val exemptedMembers: Output<List<String>>? = null, val logType: Output<AuditLogConfigLogType>? = null) : ConvertibleToJava<AuditLogConfigArgs>

Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": "user:jose@example.com" }, { "log_type": "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.com from DATA_READ logging.

Link copied to clipboard
Link copied to clipboard
data class BindingArgs(val condition: Output<ExprArgs>? = null, val members: Output<List<String>>? = null, val role: Output<String>? = null) : ConvertibleToJava<BindingArgs>

Associates members, or principals, with a role.

Link copied to clipboard
Link copied to clipboard
data class ContainerArgs(val args: Output<List<String>>? = null, val command: Output<List<String>>? = null, val env: Output<Map<String, String>>? = null, val image: Output<String>? = null, val runAsUser: Output<Int>? = null, val workingDir: Output<String>? = null) : ConvertibleToJava<ContainerArgs>

A Docker container.

Link copied to clipboard
Link copied to clipboard
data class CustomerEncryptionKeyArgs(val kmsKey: Output<String>? = null, val kmsKeyServiceAccount: Output<String>? = null) : ConvertibleToJava<CustomerEncryptionKeyArgs>

A customer-managed encryption key for the Compute Engine resources of this workstation configuration.

Link copied to clipboard
data class ExprArgs(val description: Output<String>? = null, val expression: Output<String>? = null, val location: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<ExprArgs>

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

Link copied to clipboard

Builder for ExprArgs.

Link copied to clipboard
data class GceConfidentialInstanceConfigArgs(val enableConfidentialCompute: Output<Boolean>? = null) : ConvertibleToJava<GceConfidentialInstanceConfigArgs>

A set of Compute Engine Confidential VM instance options.

Link copied to clipboard
data class GceInstanceArgs(val accelerators: Output<List<AcceleratorArgs>>? = null, val bootDiskSizeGb: Output<Int>? = null, val confidentialInstanceConfig: Output<GceConfidentialInstanceConfigArgs>? = null, val disablePublicIpAddresses: Output<Boolean>? = null, val machineType: Output<String>? = null, val poolSize: Output<Int>? = null, val serviceAccount: Output<String>? = null, val shieldedInstanceConfig: Output<GceShieldedInstanceConfigArgs>? = null, val tags: Output<List<String>>? = null) : ConvertibleToJava<GceInstanceArgs>

A runtime using a Compute Engine instance.

Link copied to clipboard
Link copied to clipboard
data class GceRegionalPersistentDiskArgs(val diskType: Output<String>? = null, val fsType: Output<String>? = null, val reclaimPolicy: Output<GceRegionalPersistentDiskReclaimPolicy>? = null, val sizeGb: Output<Int>? = null, val sourceSnapshot: Output<String>? = null) : ConvertibleToJava<GceRegionalPersistentDiskArgs>

A PersistentDirectory backed by a Compute Engine regional persistent disk.

Link copied to clipboard
data class GceShieldedInstanceConfigArgs(val enableIntegrityMonitoring: Output<Boolean>? = null, val enableSecureBoot: Output<Boolean>? = null, val enableVtpm: Output<Boolean>? = null) : ConvertibleToJava<GceShieldedInstanceConfigArgs>

A set of Compute Engine Shielded instance options.

Link copied to clipboard
data class GetWorkstationClusterPlainArgs(val location: String, val project: String? = null, val workstationClusterId: String) : ConvertibleToJava<GetWorkstationClusterPlainArgs>
data class GetWorkstationClusterWorkstationConfigIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val workstationClusterId: String, val workstationConfigId: String) : ConvertibleToJava<GetWorkstationClusterWorkstationConfigIamPolicyPlainArgs>
data class GetWorkstationClusterWorkstationConfigWorkstationIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val workstationClusterId: String, val workstationConfigId: String, val workstationId: String) : ConvertibleToJava<GetWorkstationClusterWorkstationConfigWorkstationIamPolicyPlainArgs>
Link copied to clipboard
data class GetWorkstationConfigPlainArgs(val location: String, val project: String? = null, val workstationClusterId: String, val workstationConfigId: String) : ConvertibleToJava<GetWorkstationConfigPlainArgs>
Link copied to clipboard
data class GetWorkstationPlainArgs(val location: String, val project: String? = null, val workstationClusterId: String, val workstationConfigId: String, val workstationId: String) : ConvertibleToJava<GetWorkstationPlainArgs>
Link copied to clipboard
data class HostArgs(val gceInstance: Output<GceInstanceArgs>? = null) : ConvertibleToJava<HostArgs>

Runtime host for a workstation.

Link copied to clipboard

Builder for HostArgs.

Link copied to clipboard
data class PersistentDirectoryArgs(val gcePd: Output<GceRegionalPersistentDiskArgs>? = null, val mountPath: Output<String>? = null) : ConvertibleToJava<PersistentDirectoryArgs>

A directory to persist across workstation sessions.

Link copied to clipboard
data class PrivateClusterConfigArgs(val allowedProjects: Output<List<String>>? = null, val enablePrivateEndpoint: Output<Boolean>? = null) : ConvertibleToJava<PrivateClusterConfigArgs>

Configuration options for private clusters.

Link copied to clipboard
data class ReadinessCheckArgs(val path: Output<String>? = null, val port: Output<Int>? = null) : ConvertibleToJava<ReadinessCheckArgs>

A readiness check to be performed on a workstation.

Link copied to clipboard