Package-level declarations

Types

Link copied to clipboard
data class CertificateProviderInstanceArgs(val pluginInstance: Output<String>) : ConvertibleToJava<CertificateProviderInstanceArgs>

Specification of a TLS certificate provider instance. Workloads may have one or more CertificateProvider instances (plugins) and one of them is enabled and configured by specifying this message. Workloads use the values from this message to locate and load the CertificateProvider instance configuration.

Link copied to clipboard
data class DestinationArgs(val hosts: Output<List<String>>, val httpHeaderMatch: Output<HttpHeaderMatchArgs>? = null, val methods: Output<List<String>>? = null, val ports: Output<List<Int>>) : ConvertibleToJava<DestinationArgs>

Specification of traffic destination attributes.

Link copied to clipboard
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 GetAddressGroupIamPolicyPlainArgs(val addressGroupId: String, val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetAddressGroupIamPolicyPlainArgs>
Link copied to clipboard
data class GetAddressGroupPlainArgs(val addressGroupId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetAddressGroupPlainArgs>
Link copied to clipboard
data class GetAuthorizationPolicyIamPolicyPlainArgs(val authorizationPolicyId: String, val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetAuthorizationPolicyIamPolicyPlainArgs>
Link copied to clipboard
data class GetAuthorizationPolicyPlainArgs(val authorizationPolicyId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetAuthorizationPolicyPlainArgs>
Link copied to clipboard
data class GetClientTlsPolicyIamPolicyPlainArgs(val clientTlsPolicyId: String, val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetClientTlsPolicyIamPolicyPlainArgs>
Link copied to clipboard
data class GetClientTlsPolicyPlainArgs(val clientTlsPolicyId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetClientTlsPolicyPlainArgs>
Link copied to clipboard
data class GetGatewaySecurityPolicyPlainArgs(val gatewaySecurityPolicyId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetGatewaySecurityPolicyPlainArgs>
Link copied to clipboard
data class GetOrganizationAddressGroupPlainArgs(val addressGroupId: String, val location: String, val organizationId: String) : ConvertibleToJava<GetOrganizationAddressGroupPlainArgs>
Link copied to clipboard
data class GetRulePlainArgs(val gatewaySecurityPolicyId: String, val location: String, val project: String? = null, val ruleId: String) : ConvertibleToJava<GetRulePlainArgs>
Link copied to clipboard
Link copied to clipboard
data class GetServerTlsPolicyIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val serverTlsPolicyId: String) : ConvertibleToJava<GetServerTlsPolicyIamPolicyPlainArgs>
Link copied to clipboard
data class GetServerTlsPolicyPlainArgs(val location: String, val project: String? = null, val serverTlsPolicyId: String) : ConvertibleToJava<GetServerTlsPolicyPlainArgs>
Link copied to clipboard
data class GetTlsInspectionPolicyPlainArgs(val location: String, val project: String? = null, val tlsInspectionPolicyId: String) : ConvertibleToJava<GetTlsInspectionPolicyPlainArgs>
Link copied to clipboard
data class GetUrlListPlainArgs(val location: String, val project: String? = null, val urlListId: String) : ConvertibleToJava<GetUrlListPlainArgs>
data class GoogleCloudNetworksecurityV1beta1CertificateProviderArgs(val certificateProviderInstance: Output<CertificateProviderInstanceArgs>? = null, val grpcEndpoint: Output<GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs>? = null) : ConvertibleToJava<GoogleCloudNetworksecurityV1beta1CertificateProviderArgs>

Specification of certificate provider. Defines the mechanism to obtain the certificate and private key for peer to peer authentication.

data class GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs(val targetUri: Output<String>) : ConvertibleToJava<GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs>

Specification of the GRPC Endpoint.

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

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 GoogleIamV1AuditLogConfigArgs(val exemptedMembers: Output<List<String>>? = null, val logType: Output<GoogleIamV1AuditLogConfigLogType>? = null) : ConvertibleToJava<GoogleIamV1AuditLogConfigArgs>

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 GoogleIamV1BindingArgs(val condition: Output<ExprArgs>? = null, val members: Output<List<String>>? = null, val role: Output<String>? = null) : ConvertibleToJava<GoogleIamV1BindingArgs>

Associates members, or principals, with a role.

Link copied to clipboard
data class HttpHeaderMatchArgs(val headerName: Output<String>, val regexMatch: Output<String>) : ConvertibleToJava<HttpHeaderMatchArgs>

Specification of HTTP header match attributes.

Link copied to clipboard
data class MTLSPolicyArgs(val clientValidationCa: Output<List<ValidationCAArgs>>? = null, val clientValidationMode: Output<MTLSPolicyClientValidationMode>? = null, val clientValidationTrustConfig: Output<String>? = null) : ConvertibleToJava<MTLSPolicyArgs>

Specification of the MTLSPolicy.

Link copied to clipboard
Link copied to clipboard
data class RuleArgs(val destinations: Output<List<DestinationArgs>>? = null, val sources: Output<List<SourceArgs>>? = null) : ConvertibleToJava<RuleArgs>

Specification of rules.

Link copied to clipboard

Builder for RuleArgs.

Link copied to clipboard
data class SourceArgs(val ipBlocks: Output<List<String>>? = null, val principals: Output<List<String>>? = null) : ConvertibleToJava<SourceArgs>

/* Specification of traffic source attributes.

Link copied to clipboard

Builder for SourceArgs.

Link copied to clipboard
data class ValidationCAArgs(val certificateProviderInstance: Output<CertificateProviderInstanceArgs>? = null, val grpcEndpoint: Output<GoogleCloudNetworksecurityV1beta1GrpcEndpointArgs>? = null) : ConvertibleToJava<ValidationCAArgs>

Specification of ValidationCA. Defines the mechanism to obtain the Certificate Authority certificate to validate the peer certificate.

Link copied to clipboard