UNPKG

@pulumi/google-compliance-policies

Version:

This repository contains a growing set of Compliance Policies to validate your infrastructure using Pulumi's Crossguard Policy-as-Code framework.

50 lines (49 loc) 1.56 kB
import { ResourceValidationPolicy } from "@pulumi/policy"; declare namespace ConnectionProfile { /** * Disallow the use of non-stable (Alpha) resouces (datastream.v1alpha1.ConnectionProfile). * * @severity medium * @frameworks none * @topics alpha, api, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowAlphaResource: ResourceValidationPolicy; } export { ConnectionProfile }; declare namespace PrivateConnection { /** * Disallow the use of non-stable (Alpha) resouces (datastream.v1alpha1.PrivateConnection). * * @severity medium * @frameworks none * @topics alpha, api, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowAlphaResource: ResourceValidationPolicy; } export { PrivateConnection }; declare namespace Route { /** * Disallow the use of non-stable (Alpha) resouces (datastream.v1alpha1.Route). * * @severity medium * @frameworks none * @topics alpha, api, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowAlphaResource: ResourceValidationPolicy; } export { Route }; declare namespace Stream { /** * Disallow the use of non-stable (Alpha) resouces (datastream.v1alpha1.Stream). * * @severity medium * @frameworks none * @topics alpha, api, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowAlphaResource: ResourceValidationPolicy; } export { Stream };