Package-level declarations

Types

Link copied to clipboard
data class AuditConfigResponse(val auditLogConfigs: List<AuditLogConfigResponse>, val service: String)

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
data class AuditLogConfigResponse(val exemptedMembers: List<String>, val logType: String)

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
data class BindingResponse(val condition: ExprResponse, val members: List<String>, val role: String)

Associates members, or principals, with a role.

Link copied to clipboard
data class ConsumerResponse(val endpointUri: String, val subnetwork: String)

Contains information of the customer's network configurations.

Link copied to clipboard
data class DatabaseDumpResponse(val databaseType: String, val gcsUri: String, val sourceDatabase: String, val type: String)

A specification of the location of and metadata about a database dump from a relational database management system.

Link copied to clipboard
data class DataCatalogConfigResponse(val enabled: Boolean)

Specifies how metastore metadata should be integrated with the Data Catalog service.

Link copied to clipboard
data class DataplexConfigResponse(val lakeResources: Map<String, String>)

Specifies how metastore metadata should be integrated with the Dataplex service.

Link copied to clipboard
data class EncryptionConfigResponse(val kmsKey: String)

Encryption settings for the service.

Link copied to clipboard
data class ExprResponse(val description: String, val expression: String, val location: String, val title: String)

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
data class GetBackupResult(val createTime: String, val description: String, val endTime: String, val name: String, val restoringServices: List<String>, val serviceRevision: ServiceResponse, val state: String)
Link copied to clipboard
data class GetFederationIamPolicyResult(val auditConfigs: List<AuditConfigResponse>, val bindings: List<BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetFederationResult(val backendMetastores: Map<String, String>, val createTime: String, val endpointUri: String, val labels: Map<String, String>, val name: String, val state: String, val stateMessage: String, val uid: String, val updateTime: String, val version: String)
Link copied to clipboard
data class GetMetadataImportResult(val createTime: String, val databaseDump: DatabaseDumpResponse, val description: String, val endTime: String, val name: String, val state: String, val updateTime: String)
Link copied to clipboard
data class GetServiceBackupIamPolicyResult(val auditConfigs: List<AuditConfigResponse>, val bindings: List<BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetServiceDatabaseIamPolicyResult(val auditConfigs: List<AuditConfigResponse>, val bindings: List<BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetServiceDatabaseTableIamPolicyResult(val auditConfigs: List<AuditConfigResponse>, val bindings: List<BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetServiceIamPolicyResult(val auditConfigs: List<AuditConfigResponse>, val bindings: List<BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetServiceResult(val artifactGcsUri: String, val createTime: String, val databaseType: String, val encryptionConfig: EncryptionConfigResponse, val endpointUri: String, val hiveMetastoreConfig: HiveMetastoreConfigResponse, val labels: Map<String, String>, val maintenanceWindow: MaintenanceWindowResponse, val metadataIntegration: MetadataIntegrationResponse, val metadataManagementActivity: MetadataManagementActivityResponse, val name: String, val network: String, val networkConfig: NetworkConfigResponse, val port: Int, val releaseChannel: String, val scalingConfig: ScalingConfigResponse, val state: String, val stateMessage: String, val telemetryConfig: TelemetryConfigResponse, val tier: String, val uid: String, val updateTime: String)
Link copied to clipboard
data class HiveMetastoreConfigResponse(val auxiliaryVersions: Map<String, String>, val configOverrides: Map<String, String>, val endpointProtocol: String, val kerberosConfig: KerberosConfigResponse, val version: String)

Specifies configuration information specific to running Hive metastore software as the metastore service.

Link copied to clipboard
data class KerberosConfigResponse(val keytab: SecretResponse, val krb5ConfigGcsUri: String, val principal: String)

Configuration information for a Kerberos principal.

Link copied to clipboard
data class MaintenanceWindowResponse(val dayOfWeek: String, val hourOfDay: Int)

Maintenance window. This specifies when Dataproc Metastore may perform system maintenance operation to the service.

Link copied to clipboard
data class MetadataExportResponse(val databaseDumpType: String, val destinationGcsUri: String, val endTime: String, val startTime: String, val state: String)

The details of a metadata export operation.

Link copied to clipboard
data class MetadataIntegrationResponse(val dataCatalogConfig: DataCatalogConfigResponse, val dataplexConfig: DataplexConfigResponse)

Specifies how metastore metadata should be integrated with external services.

Link copied to clipboard
data class MetadataManagementActivityResponse(val metadataExports: List<MetadataExportResponse>, val restores: List<RestoreResponse>)

The metadata management activities of the metastore service.

Link copied to clipboard
data class NetworkConfigResponse(val consumers: List<ConsumerResponse>, val customRoutesEnabled: Boolean)

Network configuration for the Dataproc Metastore service.

Link copied to clipboard
data class RestoreResponse(val backup: String, val details: String, val endTime: String, val startTime: String, val state: String, val type: String)

The details of a metadata restore operation.

Link copied to clipboard
data class ScalingConfigResponse(val instanceSize: String, val scalingFactor: Double)

Represents the scaling configuration of a metastore service.

Link copied to clipboard
data class SecretResponse(val cloudSecret: String)

A securely stored value.

Link copied to clipboard
data class ServiceResponse(val artifactGcsUri: String, val createTime: String, val databaseType: String, val encryptionConfig: EncryptionConfigResponse, val endpointUri: String, val hiveMetastoreConfig: HiveMetastoreConfigResponse, val labels: Map<String, String>, val maintenanceWindow: MaintenanceWindowResponse, val metadataIntegration: MetadataIntegrationResponse, val metadataManagementActivity: MetadataManagementActivityResponse, val name: String, val network: String, val networkConfig: NetworkConfigResponse, val port: Int, val releaseChannel: String, val scalingConfig: ScalingConfigResponse, val state: String, val stateMessage: String, val telemetryConfig: TelemetryConfigResponse, val tier: String, val uid: String, val updateTime: String)

A managed metastore service that serves metadata queries.

Link copied to clipboard
data class TelemetryConfigResponse(val logFormat: String)

Telemetry Configuration for the Dataproc Metastore service.