Package-level declarations

Types

Link copied to clipboard
data class AnthosObservabilityFeatureSpecArgs(val defaultMembershipSpec: Output<AnthosObservabilityMembershipSpecArgs>? = null) : ConvertibleToJava<AnthosObservabilityFeatureSpecArgs>

Anthos Observability: Spec

Link copied to clipboard
data class AnthosObservabilityMembershipSpecArgs(val doNotOptimizeMetrics: Output<Boolean>? = null, val enableStackdriverOnApplications: Output<Boolean>? = null, val version: Output<String>? = null) : ConvertibleToJava<AnthosObservabilityMembershipSpecArgs>

Anthosobservability: Per-Membership Feature spec.

Link copied to clipboard
class AppDevExperienceFeatureSpecArgs : ConvertibleToJava<AppDevExperienceFeatureSpecArgs>

Spec for App Dev Experience Feature.

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 CommonFeatureSpecArgs(val anthosobservability: Output<AnthosObservabilityFeatureSpecArgs>? = null, val appdevexperience: Output<AppDevExperienceFeatureSpecArgs>? = null, val fleetobservability: Output<FleetObservabilityFeatureSpecArgs>? = null, val multiclusteringress: Output<MultiClusterIngressFeatureSpecArgs>? = null) : ConvertibleToJava<CommonFeatureSpecArgs>

CommonFeatureSpec contains Hub-wide configuration information

Link copied to clipboard
data class CommonFleetDefaultMemberConfigSpecArgs(val identityservice: Output<IdentityServiceMembershipSpecArgs>? = null) : ConvertibleToJava<CommonFleetDefaultMemberConfigSpecArgs>

CommonFleetDefaultMemberConfigSpec contains default configuration information for memberships of a fleet

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 FleetObservabilityFeatureSpecArgs(val loggingConfig: Output<FleetObservabilityLoggingConfigArgs>? = null) : ConvertibleToJava<FleetObservabilityFeatureSpecArgs>

Fleet Observability: The Hub-wide input for the FleetObservability feature.

Link copied to clipboard
data class FleetObservabilityLoggingConfigArgs(val defaultConfig: Output<FleetObservabilityRoutingConfigArgs>? = null, val fleetScopeLogsConfig: Output<FleetObservabilityRoutingConfigArgs>? = null) : ConvertibleToJava<FleetObservabilityLoggingConfigArgs>

LoggingConfig defines the configuration for different types of logs.

Link copied to clipboard
data class FleetObservabilityRoutingConfigArgs(val mode: Output<FleetObservabilityRoutingConfigMode>? = null) : ConvertibleToJava<FleetObservabilityRoutingConfigArgs>

RoutingConfig configures the behaviour of fleet logging feature.

Link copied to clipboard
data class GetBindingPlainArgs(val bindingId: String, val location: String, val membershipId: String, val project: String? = null) : ConvertibleToJava<GetBindingPlainArgs>
Link copied to clipboard
data class GetFeatureIamPolicyPlainArgs(val featureId: String, val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetFeatureIamPolicyPlainArgs>
Link copied to clipboard
data class GetFeaturePlainArgs(val featureId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetFeaturePlainArgs>
Link copied to clipboard
data class GetFleetPlainArgs(val fleetId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetFleetPlainArgs>
Link copied to clipboard
Link copied to clipboard
data class GetMembershipIamPolicyPlainArgs(val location: String, val membershipId: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetMembershipIamPolicyPlainArgs>
Link copied to clipboard
data class GetNamespacePlainArgs(val location: String, val namespaceId: String, val project: String? = null) : ConvertibleToJava<GetNamespacePlainArgs>
Link copied to clipboard
data class GetRbacrolebindingPlainArgs(val location: String, val namespaceId: String, val project: String? = null, val rbacrolebindingId: String) : ConvertibleToJava<GetRbacrolebindingPlainArgs>
Link copied to clipboard
data class GetScopePlainArgs(val location: String, val project: String? = null, val scopeId: String) : ConvertibleToJava<GetScopePlainArgs>
Link copied to clipboard
Link copied to clipboard
data class IdentityServiceAuthMethodArgs(val azureadConfig: Output<IdentityServiceAzureADConfigArgs>? = null, val googleConfig: Output<IdentityServiceGoogleConfigArgs>? = null, val name: Output<String>? = null, val oidcConfig: Output<IdentityServiceOidcConfigArgs>? = null, val proxy: Output<String>? = null) : ConvertibleToJava<IdentityServiceAuthMethodArgs>

Configuration of an auth method for a member/cluster. Only one authentication method (e.g., OIDC and LDAP) can be set per AuthMethod.

Link copied to clipboard
data class IdentityServiceAzureADConfigArgs(val clientId: Output<String>? = null, val clientSecret: Output<String>? = null, val kubectlRedirectUri: Output<String>? = null, val tenant: Output<String>? = null) : ConvertibleToJava<IdentityServiceAzureADConfigArgs>

Configuration for the AzureAD Auth flow.

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

Configuration for the Google Plugin Auth flow.

Link copied to clipboard
data class IdentityServiceMembershipSpecArgs(val authMethods: Output<List<IdentityServiceAuthMethodArgs>>? = null) : ConvertibleToJava<IdentityServiceMembershipSpecArgs>

Anthos Identity Service: Configuration for a single Membership.

Link copied to clipboard
data class IdentityServiceOidcConfigArgs(val certificateAuthorityData: Output<String>? = null, val clientId: Output<String>? = null, val clientSecret: Output<String>? = null, val deployCloudConsoleProxy: Output<Boolean>? = null, val enableAccessToken: Output<Boolean>? = null, val extraParams: Output<String>? = null, val groupPrefix: Output<String>? = null, val groupsClaim: Output<String>? = null, val issuerUri: Output<String>? = null, val kubectlRedirectUri: Output<String>? = null, val scopes: Output<String>? = null, val userClaim: Output<String>? = null, val userPrefix: Output<String>? = null) : ConvertibleToJava<IdentityServiceOidcConfigArgs>

Configuration for OIDC Auth flow.

Link copied to clipboard
data class MultiClusterIngressFeatureSpecArgs(val billing: Output<MultiClusterIngressFeatureSpecBilling>? = null, val configMembership: Output<String>? = null) : ConvertibleToJava<MultiClusterIngressFeatureSpecArgs>

Multi-cluster Ingress: The configuration for the MultiClusterIngress feature.

Link copied to clipboard
data class RoleArgs(val predefinedRole: Output<RolePredefinedRole>? = null) : ConvertibleToJava<RoleArgs>

Role is the type for Kubernetes roles

Link copied to clipboard

Builder for RoleArgs.