Package-level declarations

Types

Link copied to clipboard
data class CertificateProviderInstanceResponse(val pluginInstance: String)

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 DestinationResponse(val hosts: List<String>, val httpHeaderMatch: HttpHeaderMatchResponse, val methods: List<String>, val ports: List<Int>)

Specification of traffic destination attributes.

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 GetAddressGroupIamPolicyResult(val auditConfigs: List<GoogleIamV1AuditConfigResponse>, val bindings: List<GoogleIamV1BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetAddressGroupResult(val capacity: Int, val createTime: String, val description: String, val items: List<String>, val labels: Map<String, String>, val name: String, val selfLink: String, val type: String, val updateTime: String)
Link copied to clipboard
data class GetAuthorizationPolicyIamPolicyResult(val auditConfigs: List<GoogleIamV1AuditConfigResponse>, val bindings: List<GoogleIamV1BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetAuthorizationPolicyResult(val action: String, val createTime: String, val description: String, val labels: Map<String, String>, val name: String, val rules: List<RuleResponse>, val updateTime: String)
Link copied to clipboard
data class GetClientTlsPolicyIamPolicyResult(val auditConfigs: List<GoogleIamV1AuditConfigResponse>, val bindings: List<GoogleIamV1BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetClientTlsPolicyResult(val clientCertificate: GoogleCloudNetworksecurityV1beta1CertificateProviderResponse, val createTime: String, val description: String, val labels: Map<String, String>, val name: String, val serverValidationCa: List<ValidationCAResponse>, val sni: String, val updateTime: String)
Link copied to clipboard
data class GetGatewaySecurityPolicyResult(val createTime: String, val description: String, val name: String, val tlsInspectionPolicy: String, val updateTime: String)
Link copied to clipboard
data class GetOrganizationAddressGroupResult(val capacity: Int, val createTime: String, val description: String, val items: List<String>, val labels: Map<String, String>, val name: String, val selfLink: String, val type: String, val updateTime: String)
Link copied to clipboard
data class GetRuleResult(val applicationMatcher: String, val basicProfile: String, val createTime: String, val description: String, val enabled: Boolean, val name: String, val priority: Int, val sessionMatcher: String, val tlsInspectionEnabled: Boolean, val updateTime: String)
Link copied to clipboard
data class GetServerTlsPolicyIamPolicyResult(val auditConfigs: List<GoogleIamV1AuditConfigResponse>, val bindings: List<GoogleIamV1BindingResponse>, val etag: String, val version: Int)
Link copied to clipboard
data class GetServerTlsPolicyResult(val allowOpen: Boolean, val createTime: String, val description: String, val labels: Map<String, String>, val mtlsPolicy: MTLSPolicyResponse, val name: String, val serverCertificate: GoogleCloudNetworksecurityV1beta1CertificateProviderResponse, val updateTime: String)
Link copied to clipboard
data class GetTlsInspectionPolicyResult(val caPool: String, val createTime: String, val description: String, val name: String, val updateTime: String)
Link copied to clipboard
data class GetUrlListResult(val createTime: String, val description: String, val name: String, val updateTime: String, val values: List<String>)

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

Specification of the GRPC Endpoint.

Link copied to clipboard
data class GoogleIamV1AuditConfigResponse(val auditLogConfigs: List<GoogleIamV1AuditLogConfigResponse>, 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 GoogleIamV1AuditLogConfigResponse(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 GoogleIamV1BindingResponse(val condition: ExprResponse, val members: List<String>, val role: String)

Associates members, or principals, with a role.

Link copied to clipboard
data class HttpHeaderMatchResponse(val headerName: String, val regexMatch: String)

Specification of HTTP header match attributes.

Link copied to clipboard
data class MTLSPolicyResponse(val clientValidationCa: List<ValidationCAResponse>, val clientValidationMode: String, val clientValidationTrustConfig: String)

Specification of the MTLSPolicy.

Link copied to clipboard
data class RuleResponse(val destinations: List<DestinationResponse>, val sources: List<SourceResponse>)

Specification of rules.

Link copied to clipboard
data class SourceResponse(val ipBlocks: List<String>, val principals: List<String>)

/* Specification of traffic source attributes.

Link copied to clipboard

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