v1

package
v0.32.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 29, 2023 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Default case. Should never be this.
	AuditLogConfigLogTypeLogTypeUnspecified = AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")
	// Admin reads. Example: CloudIAM getIamPolicy
	AuditLogConfigLogTypeAdminRead = AuditLogConfigLogType("ADMIN_READ")
	// Data writes. Example: CloudSQL Users create
	AuditLogConfigLogTypeDataWrite = AuditLogConfigLogType("DATA_WRITE")
	// Data reads. Example: CloudSQL Users list
	AuditLogConfigLogTypeDataRead = AuditLogConfigLogType("DATA_READ")
)
View Source
const (
	// Unspecified enablement state.
	FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateEnablementStateUnspecified = FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState("ENABLEMENT_STATE_UNSPECIFIED")
	// The module is enabled at the given CRM resource.
	FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateEnabled = FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState("ENABLED")
	// The module is disabled at the given CRM resource.
	FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateDisabled = FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState("DISABLED")
	// State is inherited from an ancestor module. The module will either be effectively ENABLED or DISABLED based on its closest non-inherited ancestor module in the CRM hierarchy.
	FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateInherited = FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState("INHERITED")
)
View Source
const (
	// Unspecified severity.
	GoogleCloudSecuritycenterV1CustomConfigSeveritySeverityUnspecified = GoogleCloudSecuritycenterV1CustomConfigSeverity("SEVERITY_UNSPECIFIED")
	// Critical severity.
	GoogleCloudSecuritycenterV1CustomConfigSeverityCritical = GoogleCloudSecuritycenterV1CustomConfigSeverity("CRITICAL")
	// High severity.
	GoogleCloudSecuritycenterV1CustomConfigSeverityHigh = GoogleCloudSecuritycenterV1CustomConfigSeverity("HIGH")
	// Medium severity.
	GoogleCloudSecuritycenterV1CustomConfigSeverityMedium = GoogleCloudSecuritycenterV1CustomConfigSeverity("MEDIUM")
	// Low severity.
	GoogleCloudSecuritycenterV1CustomConfigSeverityLow = GoogleCloudSecuritycenterV1CustomConfigSeverity("LOW")
)
View Source
const (
	// Unspecified enablement state.
	OrganizationEventThreatDetectionSettingCustomModuleEnablementStateEnablementStateUnspecified = OrganizationEventThreatDetectionSettingCustomModuleEnablementState("ENABLEMENT_STATE_UNSPECIFIED")
	// The module is enabled at the given level.
	OrganizationEventThreatDetectionSettingCustomModuleEnablementStateEnabled = OrganizationEventThreatDetectionSettingCustomModuleEnablementState("ENABLED")
	// The module is disabled at the given level.
	OrganizationEventThreatDetectionSettingCustomModuleEnablementStateDisabled = OrganizationEventThreatDetectionSettingCustomModuleEnablementState("DISABLED")
)
View Source
const (
	// Unspecified enablement state.
	OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateEnablementStateUnspecified = OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState("ENABLEMENT_STATE_UNSPECIFIED")
	// The module is enabled at the given CRM resource.
	OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateEnabled = OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState("ENABLED")
	// The module is disabled at the given CRM resource.
	OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateDisabled = OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState("DISABLED")
	// State is inherited from an ancestor module. The module will either be effectively ENABLED or DISABLED based on its closest non-inherited ancestor module in the CRM hierarchy.
	OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateInherited = OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState("INHERITED")
)
View Source
const (
	// Unspecified enablement state.
	ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateEnablementStateUnspecified = ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState("ENABLEMENT_STATE_UNSPECIFIED")
	// The module is enabled at the given CRM resource.
	ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateEnabled = ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState("ENABLED")
	// The module is disabled at the given CRM resource.
	ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateDisabled = ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState("DISABLED")
	// State is inherited from an ancestor module. The module will either be effectively ENABLED or DISABLED based on its closest non-inherited ancestor module in the CRM hierarchy.
	ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateInherited = ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState("INHERITED")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AuditConfig

type AuditConfig struct {
	// The configuration for logging of each type of permission.
	AuditLogConfigs []AuditLogConfig `pulumi:"auditLogConfigs"`
	// Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.
	Service *string `pulumi:"service"`
}

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.

type AuditConfigArgs

type AuditConfigArgs struct {
	// The configuration for logging of each type of permission.
	AuditLogConfigs AuditLogConfigArrayInput `pulumi:"auditLogConfigs"`
	// Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.
	Service pulumi.StringPtrInput `pulumi:"service"`
}

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.

func (AuditConfigArgs) ElementType

func (AuditConfigArgs) ElementType() reflect.Type

func (AuditConfigArgs) ToAuditConfigOutput

func (i AuditConfigArgs) ToAuditConfigOutput() AuditConfigOutput

func (AuditConfigArgs) ToAuditConfigOutputWithContext

func (i AuditConfigArgs) ToAuditConfigOutputWithContext(ctx context.Context) AuditConfigOutput

type AuditConfigArray

type AuditConfigArray []AuditConfigInput

func (AuditConfigArray) ElementType

func (AuditConfigArray) ElementType() reflect.Type

func (AuditConfigArray) ToAuditConfigArrayOutput

func (i AuditConfigArray) ToAuditConfigArrayOutput() AuditConfigArrayOutput

func (AuditConfigArray) ToAuditConfigArrayOutputWithContext

func (i AuditConfigArray) ToAuditConfigArrayOutputWithContext(ctx context.Context) AuditConfigArrayOutput

type AuditConfigArrayInput

type AuditConfigArrayInput interface {
	pulumi.Input

	ToAuditConfigArrayOutput() AuditConfigArrayOutput
	ToAuditConfigArrayOutputWithContext(context.Context) AuditConfigArrayOutput
}

AuditConfigArrayInput is an input type that accepts AuditConfigArray and AuditConfigArrayOutput values. You can construct a concrete instance of `AuditConfigArrayInput` via:

AuditConfigArray{ AuditConfigArgs{...} }

type AuditConfigArrayOutput

type AuditConfigArrayOutput struct{ *pulumi.OutputState }

func (AuditConfigArrayOutput) ElementType

func (AuditConfigArrayOutput) ElementType() reflect.Type

func (AuditConfigArrayOutput) Index

func (AuditConfigArrayOutput) ToAuditConfigArrayOutput

func (o AuditConfigArrayOutput) ToAuditConfigArrayOutput() AuditConfigArrayOutput

func (AuditConfigArrayOutput) ToAuditConfigArrayOutputWithContext

func (o AuditConfigArrayOutput) ToAuditConfigArrayOutputWithContext(ctx context.Context) AuditConfigArrayOutput

type AuditConfigInput

type AuditConfigInput interface {
	pulumi.Input

	ToAuditConfigOutput() AuditConfigOutput
	ToAuditConfigOutputWithContext(context.Context) AuditConfigOutput
}

AuditConfigInput is an input type that accepts AuditConfigArgs and AuditConfigOutput values. You can construct a concrete instance of `AuditConfigInput` via:

AuditConfigArgs{...}

type AuditConfigOutput

type AuditConfigOutput struct{ *pulumi.OutputState }

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.

func (AuditConfigOutput) AuditLogConfigs

func (o AuditConfigOutput) AuditLogConfigs() AuditLogConfigArrayOutput

The configuration for logging of each type of permission.

func (AuditConfigOutput) ElementType

func (AuditConfigOutput) ElementType() reflect.Type

func (AuditConfigOutput) Service

Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.

func (AuditConfigOutput) ToAuditConfigOutput

func (o AuditConfigOutput) ToAuditConfigOutput() AuditConfigOutput

func (AuditConfigOutput) ToAuditConfigOutputWithContext

func (o AuditConfigOutput) ToAuditConfigOutputWithContext(ctx context.Context) AuditConfigOutput

type AuditConfigResponse

type AuditConfigResponse struct {
	// The configuration for logging of each type of permission.
	AuditLogConfigs []AuditLogConfigResponse `pulumi:"auditLogConfigs"`
	// Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.
	Service string `pulumi:"service"`
}

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.

type AuditConfigResponseArrayOutput

type AuditConfigResponseArrayOutput struct{ *pulumi.OutputState }

func (AuditConfigResponseArrayOutput) ElementType

func (AuditConfigResponseArrayOutput) Index

func (AuditConfigResponseArrayOutput) ToAuditConfigResponseArrayOutput

func (o AuditConfigResponseArrayOutput) ToAuditConfigResponseArrayOutput() AuditConfigResponseArrayOutput

func (AuditConfigResponseArrayOutput) ToAuditConfigResponseArrayOutputWithContext

func (o AuditConfigResponseArrayOutput) ToAuditConfigResponseArrayOutputWithContext(ctx context.Context) AuditConfigResponseArrayOutput

type AuditConfigResponseOutput

type AuditConfigResponseOutput struct{ *pulumi.OutputState }

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.

func (AuditConfigResponseOutput) AuditLogConfigs

The configuration for logging of each type of permission.

func (AuditConfigResponseOutput) ElementType

func (AuditConfigResponseOutput) ElementType() reflect.Type

func (AuditConfigResponseOutput) Service

Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.

func (AuditConfigResponseOutput) ToAuditConfigResponseOutput

func (o AuditConfigResponseOutput) ToAuditConfigResponseOutput() AuditConfigResponseOutput

func (AuditConfigResponseOutput) ToAuditConfigResponseOutputWithContext

func (o AuditConfigResponseOutput) ToAuditConfigResponseOutputWithContext(ctx context.Context) AuditConfigResponseOutput

type AuditLogConfig

type AuditLogConfig struct {
	// Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
	ExemptedMembers []string `pulumi:"exemptedMembers"`
	// The log type that this config enables.
	LogType *AuditLogConfigLogType `pulumi:"logType"`
}

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.

type AuditLogConfigArgs

type AuditLogConfigArgs struct {
	// Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
	ExemptedMembers pulumi.StringArrayInput `pulumi:"exemptedMembers"`
	// The log type that this config enables.
	LogType AuditLogConfigLogTypePtrInput `pulumi:"logType"`
}

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.

func (AuditLogConfigArgs) ElementType

func (AuditLogConfigArgs) ElementType() reflect.Type

func (AuditLogConfigArgs) ToAuditLogConfigOutput

func (i AuditLogConfigArgs) ToAuditLogConfigOutput() AuditLogConfigOutput

func (AuditLogConfigArgs) ToAuditLogConfigOutputWithContext

func (i AuditLogConfigArgs) ToAuditLogConfigOutputWithContext(ctx context.Context) AuditLogConfigOutput

type AuditLogConfigArray

type AuditLogConfigArray []AuditLogConfigInput

func (AuditLogConfigArray) ElementType

func (AuditLogConfigArray) ElementType() reflect.Type

func (AuditLogConfigArray) ToAuditLogConfigArrayOutput

func (i AuditLogConfigArray) ToAuditLogConfigArrayOutput() AuditLogConfigArrayOutput

func (AuditLogConfigArray) ToAuditLogConfigArrayOutputWithContext

func (i AuditLogConfigArray) ToAuditLogConfigArrayOutputWithContext(ctx context.Context) AuditLogConfigArrayOutput

type AuditLogConfigArrayInput

type AuditLogConfigArrayInput interface {
	pulumi.Input

	ToAuditLogConfigArrayOutput() AuditLogConfigArrayOutput
	ToAuditLogConfigArrayOutputWithContext(context.Context) AuditLogConfigArrayOutput
}

AuditLogConfigArrayInput is an input type that accepts AuditLogConfigArray and AuditLogConfigArrayOutput values. You can construct a concrete instance of `AuditLogConfigArrayInput` via:

AuditLogConfigArray{ AuditLogConfigArgs{...} }

type AuditLogConfigArrayOutput

type AuditLogConfigArrayOutput struct{ *pulumi.OutputState }

func (AuditLogConfigArrayOutput) ElementType

func (AuditLogConfigArrayOutput) ElementType() reflect.Type

func (AuditLogConfigArrayOutput) Index

func (AuditLogConfigArrayOutput) ToAuditLogConfigArrayOutput

func (o AuditLogConfigArrayOutput) ToAuditLogConfigArrayOutput() AuditLogConfigArrayOutput

func (AuditLogConfigArrayOutput) ToAuditLogConfigArrayOutputWithContext

func (o AuditLogConfigArrayOutput) ToAuditLogConfigArrayOutputWithContext(ctx context.Context) AuditLogConfigArrayOutput

type AuditLogConfigInput

type AuditLogConfigInput interface {
	pulumi.Input

	ToAuditLogConfigOutput() AuditLogConfigOutput
	ToAuditLogConfigOutputWithContext(context.Context) AuditLogConfigOutput
}

AuditLogConfigInput is an input type that accepts AuditLogConfigArgs and AuditLogConfigOutput values. You can construct a concrete instance of `AuditLogConfigInput` via:

AuditLogConfigArgs{...}

type AuditLogConfigLogType added in v0.4.0

type AuditLogConfigLogType string

The log type that this config enables.

func (AuditLogConfigLogType) ElementType added in v0.4.0

func (AuditLogConfigLogType) ElementType() reflect.Type

func (AuditLogConfigLogType) ToAuditLogConfigLogTypeOutput added in v0.6.0

func (e AuditLogConfigLogType) ToAuditLogConfigLogTypeOutput() AuditLogConfigLogTypeOutput

func (AuditLogConfigLogType) ToAuditLogConfigLogTypeOutputWithContext added in v0.6.0

func (e AuditLogConfigLogType) ToAuditLogConfigLogTypeOutputWithContext(ctx context.Context) AuditLogConfigLogTypeOutput

func (AuditLogConfigLogType) ToAuditLogConfigLogTypePtrOutput added in v0.6.0

func (e AuditLogConfigLogType) ToAuditLogConfigLogTypePtrOutput() AuditLogConfigLogTypePtrOutput

func (AuditLogConfigLogType) ToAuditLogConfigLogTypePtrOutputWithContext added in v0.6.0

func (e AuditLogConfigLogType) ToAuditLogConfigLogTypePtrOutputWithContext(ctx context.Context) AuditLogConfigLogTypePtrOutput

func (AuditLogConfigLogType) ToStringOutput added in v0.4.0

func (e AuditLogConfigLogType) ToStringOutput() pulumi.StringOutput

func (AuditLogConfigLogType) ToStringOutputWithContext added in v0.4.0

func (e AuditLogConfigLogType) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (AuditLogConfigLogType) ToStringPtrOutput added in v0.4.0

func (e AuditLogConfigLogType) ToStringPtrOutput() pulumi.StringPtrOutput

func (AuditLogConfigLogType) ToStringPtrOutputWithContext added in v0.4.0

func (e AuditLogConfigLogType) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type AuditLogConfigLogTypeInput added in v0.6.0

type AuditLogConfigLogTypeInput interface {
	pulumi.Input

	ToAuditLogConfigLogTypeOutput() AuditLogConfigLogTypeOutput
	ToAuditLogConfigLogTypeOutputWithContext(context.Context) AuditLogConfigLogTypeOutput
}

AuditLogConfigLogTypeInput is an input type that accepts AuditLogConfigLogTypeArgs and AuditLogConfigLogTypeOutput values. You can construct a concrete instance of `AuditLogConfigLogTypeInput` via:

AuditLogConfigLogTypeArgs{...}

type AuditLogConfigLogTypeOutput added in v0.6.0

type AuditLogConfigLogTypeOutput struct{ *pulumi.OutputState }

func (AuditLogConfigLogTypeOutput) ElementType added in v0.6.0

func (AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypeOutput added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypeOutput() AuditLogConfigLogTypeOutput

func (AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypeOutputWithContext added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypeOutputWithContext(ctx context.Context) AuditLogConfigLogTypeOutput

func (AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypePtrOutput added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypePtrOutput() AuditLogConfigLogTypePtrOutput

func (AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypePtrOutputWithContext added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToAuditLogConfigLogTypePtrOutputWithContext(ctx context.Context) AuditLogConfigLogTypePtrOutput

func (AuditLogConfigLogTypeOutput) ToStringOutput added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToStringOutput() pulumi.StringOutput

func (AuditLogConfigLogTypeOutput) ToStringOutputWithContext added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (AuditLogConfigLogTypeOutput) ToStringPtrOutput added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToStringPtrOutput() pulumi.StringPtrOutput

func (AuditLogConfigLogTypeOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o AuditLogConfigLogTypeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type AuditLogConfigLogTypePtrInput added in v0.6.0

type AuditLogConfigLogTypePtrInput interface {
	pulumi.Input

	ToAuditLogConfigLogTypePtrOutput() AuditLogConfigLogTypePtrOutput
	ToAuditLogConfigLogTypePtrOutputWithContext(context.Context) AuditLogConfigLogTypePtrOutput
}

func AuditLogConfigLogTypePtr added in v0.6.0

func AuditLogConfigLogTypePtr(v string) AuditLogConfigLogTypePtrInput

type AuditLogConfigLogTypePtrOutput added in v0.6.0

type AuditLogConfigLogTypePtrOutput struct{ *pulumi.OutputState }

func (AuditLogConfigLogTypePtrOutput) Elem added in v0.6.0

func (AuditLogConfigLogTypePtrOutput) ElementType added in v0.6.0

func (AuditLogConfigLogTypePtrOutput) ToAuditLogConfigLogTypePtrOutput added in v0.6.0

func (o AuditLogConfigLogTypePtrOutput) ToAuditLogConfigLogTypePtrOutput() AuditLogConfigLogTypePtrOutput

func (AuditLogConfigLogTypePtrOutput) ToAuditLogConfigLogTypePtrOutputWithContext added in v0.6.0

func (o AuditLogConfigLogTypePtrOutput) ToAuditLogConfigLogTypePtrOutputWithContext(ctx context.Context) AuditLogConfigLogTypePtrOutput

func (AuditLogConfigLogTypePtrOutput) ToStringPtrOutput added in v0.6.0

func (AuditLogConfigLogTypePtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o AuditLogConfigLogTypePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type AuditLogConfigOutput

type AuditLogConfigOutput struct{ *pulumi.OutputState }

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.

func (AuditLogConfigOutput) ElementType

func (AuditLogConfigOutput) ElementType() reflect.Type

func (AuditLogConfigOutput) ExemptedMembers

func (o AuditLogConfigOutput) ExemptedMembers() pulumi.StringArrayOutput

Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.

func (AuditLogConfigOutput) LogType

The log type that this config enables.

func (AuditLogConfigOutput) ToAuditLogConfigOutput

func (o AuditLogConfigOutput) ToAuditLogConfigOutput() AuditLogConfigOutput

func (AuditLogConfigOutput) ToAuditLogConfigOutputWithContext

func (o AuditLogConfigOutput) ToAuditLogConfigOutputWithContext(ctx context.Context) AuditLogConfigOutput

type AuditLogConfigResponse

type AuditLogConfigResponse struct {
	// Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
	ExemptedMembers []string `pulumi:"exemptedMembers"`
	// The log type that this config enables.
	LogType string `pulumi:"logType"`
}

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.

type AuditLogConfigResponseArrayOutput

type AuditLogConfigResponseArrayOutput struct{ *pulumi.OutputState }

func (AuditLogConfigResponseArrayOutput) ElementType

func (AuditLogConfigResponseArrayOutput) Index

func (AuditLogConfigResponseArrayOutput) ToAuditLogConfigResponseArrayOutput

func (o AuditLogConfigResponseArrayOutput) ToAuditLogConfigResponseArrayOutput() AuditLogConfigResponseArrayOutput

func (AuditLogConfigResponseArrayOutput) ToAuditLogConfigResponseArrayOutputWithContext

func (o AuditLogConfigResponseArrayOutput) ToAuditLogConfigResponseArrayOutputWithContext(ctx context.Context) AuditLogConfigResponseArrayOutput

type AuditLogConfigResponseOutput

type AuditLogConfigResponseOutput struct{ *pulumi.OutputState }

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.

func (AuditLogConfigResponseOutput) ElementType

func (AuditLogConfigResponseOutput) ExemptedMembers

Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.

func (AuditLogConfigResponseOutput) LogType

The log type that this config enables.

func (AuditLogConfigResponseOutput) ToAuditLogConfigResponseOutput

func (o AuditLogConfigResponseOutput) ToAuditLogConfigResponseOutput() AuditLogConfigResponseOutput

func (AuditLogConfigResponseOutput) ToAuditLogConfigResponseOutputWithContext

func (o AuditLogConfigResponseOutput) ToAuditLogConfigResponseOutputWithContext(ctx context.Context) AuditLogConfigResponseOutput

type Binding

type Binding struct {
	// The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Condition *Expr `pulumi:"condition"`
	// Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.
	Members []string `pulumi:"members"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role *string `pulumi:"role"`
}

Associates `members`, or principals, with a `role`.

type BindingArgs

type BindingArgs struct {
	// The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Condition ExprPtrInput `pulumi:"condition"`
	// Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.
	Members pulumi.StringArrayInput `pulumi:"members"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role pulumi.StringPtrInput `pulumi:"role"`
}

Associates `members`, or principals, with a `role`.

func (BindingArgs) ElementType

func (BindingArgs) ElementType() reflect.Type

func (BindingArgs) ToBindingOutput

func (i BindingArgs) ToBindingOutput() BindingOutput

func (BindingArgs) ToBindingOutputWithContext

func (i BindingArgs) ToBindingOutputWithContext(ctx context.Context) BindingOutput

type BindingArray

type BindingArray []BindingInput

func (BindingArray) ElementType

func (BindingArray) ElementType() reflect.Type

func (BindingArray) ToBindingArrayOutput

func (i BindingArray) ToBindingArrayOutput() BindingArrayOutput

func (BindingArray) ToBindingArrayOutputWithContext

func (i BindingArray) ToBindingArrayOutputWithContext(ctx context.Context) BindingArrayOutput

type BindingArrayInput

type BindingArrayInput interface {
	pulumi.Input

	ToBindingArrayOutput() BindingArrayOutput
	ToBindingArrayOutputWithContext(context.Context) BindingArrayOutput
}

BindingArrayInput is an input type that accepts BindingArray and BindingArrayOutput values. You can construct a concrete instance of `BindingArrayInput` via:

BindingArray{ BindingArgs{...} }

type BindingArrayOutput

type BindingArrayOutput struct{ *pulumi.OutputState }

func (BindingArrayOutput) ElementType

func (BindingArrayOutput) ElementType() reflect.Type

func (BindingArrayOutput) Index

func (BindingArrayOutput) ToBindingArrayOutput

func (o BindingArrayOutput) ToBindingArrayOutput() BindingArrayOutput

func (BindingArrayOutput) ToBindingArrayOutputWithContext

func (o BindingArrayOutput) ToBindingArrayOutputWithContext(ctx context.Context) BindingArrayOutput

type BindingInput

type BindingInput interface {
	pulumi.Input

	ToBindingOutput() BindingOutput
	ToBindingOutputWithContext(context.Context) BindingOutput
}

BindingInput is an input type that accepts BindingArgs and BindingOutput values. You can construct a concrete instance of `BindingInput` via:

BindingArgs{...}

type BindingOutput

type BindingOutput struct{ *pulumi.OutputState }

Associates `members`, or principals, with a `role`.

func (BindingOutput) Condition

func (o BindingOutput) Condition() ExprPtrOutput

The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).

func (BindingOutput) ElementType

func (BindingOutput) ElementType() reflect.Type

func (BindingOutput) Members

Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.

func (BindingOutput) Role

Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.

func (BindingOutput) ToBindingOutput

func (o BindingOutput) ToBindingOutput() BindingOutput

func (BindingOutput) ToBindingOutputWithContext

func (o BindingOutput) ToBindingOutputWithContext(ctx context.Context) BindingOutput

type BindingResponse

type BindingResponse struct {
	// The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Condition ExprResponse `pulumi:"condition"`
	// Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.
	Members []string `pulumi:"members"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role string `pulumi:"role"`
}

Associates `members`, or principals, with a `role`.

type BindingResponseArrayOutput

type BindingResponseArrayOutput struct{ *pulumi.OutputState }

func (BindingResponseArrayOutput) ElementType

func (BindingResponseArrayOutput) ElementType() reflect.Type

func (BindingResponseArrayOutput) Index

func (BindingResponseArrayOutput) ToBindingResponseArrayOutput

func (o BindingResponseArrayOutput) ToBindingResponseArrayOutput() BindingResponseArrayOutput

func (BindingResponseArrayOutput) ToBindingResponseArrayOutputWithContext

func (o BindingResponseArrayOutput) ToBindingResponseArrayOutputWithContext(ctx context.Context) BindingResponseArrayOutput

type BindingResponseOutput

type BindingResponseOutput struct{ *pulumi.OutputState }

Associates `members`, or principals, with a `role`.

func (BindingResponseOutput) Condition

The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).

func (BindingResponseOutput) ElementType

func (BindingResponseOutput) ElementType() reflect.Type

func (BindingResponseOutput) Members

Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.

func (BindingResponseOutput) Role

Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.

func (BindingResponseOutput) ToBindingResponseOutput

func (o BindingResponseOutput) ToBindingResponseOutput() BindingResponseOutput

func (BindingResponseOutput) ToBindingResponseOutputWithContext

func (o BindingResponseOutput) ToBindingResponseOutputWithContext(ctx context.Context) BindingResponseOutput

type Expr

type Expr struct {
	// Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
	Description *string `pulumi:"description"`
	// Textual representation of an expression in Common Expression Language syntax.
	Expression *string `pulumi:"expression"`
	// Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
	Location *string `pulumi:"location"`
	// Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
	Title *string `pulumi:"title"`
}

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.

type ExprArgs

type ExprArgs struct {
	// Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
	Description pulumi.StringPtrInput `pulumi:"description"`
	// Textual representation of an expression in Common Expression Language syntax.
	Expression pulumi.StringPtrInput `pulumi:"expression"`
	// Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
	Location pulumi.StringPtrInput `pulumi:"location"`
	// Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
	Title pulumi.StringPtrInput `pulumi:"title"`
}

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.

func (ExprArgs) ElementType

func (ExprArgs) ElementType() reflect.Type

func (ExprArgs) ToExprOutput

func (i ExprArgs) ToExprOutput() ExprOutput

func (ExprArgs) ToExprOutputWithContext

func (i ExprArgs) ToExprOutputWithContext(ctx context.Context) ExprOutput

func (ExprArgs) ToExprPtrOutput

func (i ExprArgs) ToExprPtrOutput() ExprPtrOutput

func (ExprArgs) ToExprPtrOutputWithContext

func (i ExprArgs) ToExprPtrOutputWithContext(ctx context.Context) ExprPtrOutput

type ExprInput

type ExprInput interface {
	pulumi.Input

	ToExprOutput() ExprOutput
	ToExprOutputWithContext(context.Context) ExprOutput
}

ExprInput is an input type that accepts ExprArgs and ExprOutput values. You can construct a concrete instance of `ExprInput` via:

ExprArgs{...}

type ExprOutput

type ExprOutput struct{ *pulumi.OutputState }

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.

func (ExprOutput) Description

func (o ExprOutput) Description() pulumi.StringPtrOutput

Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

func (ExprOutput) ElementType

func (ExprOutput) ElementType() reflect.Type

func (ExprOutput) Expression

func (o ExprOutput) Expression() pulumi.StringPtrOutput

Textual representation of an expression in Common Expression Language syntax.

func (ExprOutput) Location

func (o ExprOutput) Location() pulumi.StringPtrOutput

Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.

func (ExprOutput) Title

func (o ExprOutput) Title() pulumi.StringPtrOutput

Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

func (ExprOutput) ToExprOutput

func (o ExprOutput) ToExprOutput() ExprOutput

func (ExprOutput) ToExprOutputWithContext

func (o ExprOutput) ToExprOutputWithContext(ctx context.Context) ExprOutput

func (ExprOutput) ToExprPtrOutput

func (o ExprOutput) ToExprPtrOutput() ExprPtrOutput

func (ExprOutput) ToExprPtrOutputWithContext

func (o ExprOutput) ToExprPtrOutputWithContext(ctx context.Context) ExprPtrOutput

type ExprPtrInput

type ExprPtrInput interface {
	pulumi.Input

	ToExprPtrOutput() ExprPtrOutput
	ToExprPtrOutputWithContext(context.Context) ExprPtrOutput
}

ExprPtrInput is an input type that accepts ExprArgs, ExprPtr and ExprPtrOutput values. You can construct a concrete instance of `ExprPtrInput` via:

        ExprArgs{...}

or:

        nil

func ExprPtr

func ExprPtr(v *ExprArgs) ExprPtrInput

type ExprPtrOutput

type ExprPtrOutput struct{ *pulumi.OutputState }

func (ExprPtrOutput) Description

func (o ExprPtrOutput) Description() pulumi.StringPtrOutput

Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

func (ExprPtrOutput) Elem

func (o ExprPtrOutput) Elem() ExprOutput

func (ExprPtrOutput) ElementType

func (ExprPtrOutput) ElementType() reflect.Type

func (ExprPtrOutput) Expression

func (o ExprPtrOutput) Expression() pulumi.StringPtrOutput

Textual representation of an expression in Common Expression Language syntax.

func (ExprPtrOutput) Location

func (o ExprPtrOutput) Location() pulumi.StringPtrOutput

Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.

func (ExprPtrOutput) Title

Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

func (ExprPtrOutput) ToExprPtrOutput

func (o ExprPtrOutput) ToExprPtrOutput() ExprPtrOutput

func (ExprPtrOutput) ToExprPtrOutputWithContext

func (o ExprPtrOutput) ToExprPtrOutputWithContext(ctx context.Context) ExprPtrOutput

type ExprResponse

type ExprResponse struct {
	// Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
	Description string `pulumi:"description"`
	// Textual representation of an expression in Common Expression Language syntax.
	Expression string `pulumi:"expression"`
	// Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
	Location string `pulumi:"location"`
	// Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
	Title string `pulumi:"title"`
}

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.

type ExprResponseOutput

type ExprResponseOutput struct{ *pulumi.OutputState }

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.

func (ExprResponseOutput) Description

func (o ExprResponseOutput) Description() pulumi.StringOutput

Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.

func (ExprResponseOutput) ElementType

func (ExprResponseOutput) ElementType() reflect.Type

func (ExprResponseOutput) Expression

func (o ExprResponseOutput) Expression() pulumi.StringOutput

Textual representation of an expression in Common Expression Language syntax.

func (ExprResponseOutput) Location

func (o ExprResponseOutput) Location() pulumi.StringOutput

Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.

func (ExprResponseOutput) Title

Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

func (ExprResponseOutput) ToExprResponseOutput

func (o ExprResponseOutput) ToExprResponseOutput() ExprResponseOutput

func (ExprResponseOutput) ToExprResponseOutputWithContext

func (o ExprResponseOutput) ToExprResponseOutputWithContext(ctx context.Context) ExprResponseOutput

type FolderBigQueryExport added in v0.16.0

type FolderBigQueryExport struct {
	pulumi.CustomResourceState

	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	BigQueryExportId pulumi.StringOutput `pulumi:"bigQueryExportId"`
	// The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset pulumi.StringOutput `pulumi:"dataset"`
	// The description of the export (max of 1024 characters).
	Description pulumi.StringOutput `pulumi:"description"`
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter   pulumi.StringOutput `pulumi:"filter"`
	FolderId pulumi.StringOutput `pulumi:"folderId"`
	// Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
	MostRecentEditor pulumi.StringOutput `pulumi:"mostRecentEditor"`
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name pulumi.StringOutput `pulumi:"name"`
	// The service account that needs permission to create table and upload data to the BigQuery dataset.
	Principal pulumi.StringOutput `pulumi:"principal"`
	// The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a BigQuery export. Auto-naming is currently not supported for this resource.

func GetFolderBigQueryExport added in v0.16.0

func GetFolderBigQueryExport(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *FolderBigQueryExportState, opts ...pulumi.ResourceOption) (*FolderBigQueryExport, error)

GetFolderBigQueryExport gets an existing FolderBigQueryExport resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewFolderBigQueryExport added in v0.16.0

func NewFolderBigQueryExport(ctx *pulumi.Context,
	name string, args *FolderBigQueryExportArgs, opts ...pulumi.ResourceOption) (*FolderBigQueryExport, error)

NewFolderBigQueryExport registers a new resource with the given unique name, arguments, and options.

func (*FolderBigQueryExport) ElementType added in v0.16.0

func (*FolderBigQueryExport) ElementType() reflect.Type

func (*FolderBigQueryExport) ToFolderBigQueryExportOutput added in v0.16.0

func (i *FolderBigQueryExport) ToFolderBigQueryExportOutput() FolderBigQueryExportOutput

func (*FolderBigQueryExport) ToFolderBigQueryExportOutputWithContext added in v0.16.0

func (i *FolderBigQueryExport) ToFolderBigQueryExportOutputWithContext(ctx context.Context) FolderBigQueryExportOutput

type FolderBigQueryExportArgs added in v0.16.0

type FolderBigQueryExportArgs struct {
	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	BigQueryExportId pulumi.StringInput
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset pulumi.StringPtrInput
	// The description of the export (max of 1024 characters).
	Description pulumi.StringPtrInput
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter   pulumi.StringPtrInput
	FolderId pulumi.StringInput
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name pulumi.StringPtrInput
}

The set of arguments for constructing a FolderBigQueryExport resource.

func (FolderBigQueryExportArgs) ElementType added in v0.16.0

func (FolderBigQueryExportArgs) ElementType() reflect.Type

type FolderBigQueryExportInput added in v0.16.0

type FolderBigQueryExportInput interface {
	pulumi.Input

	ToFolderBigQueryExportOutput() FolderBigQueryExportOutput
	ToFolderBigQueryExportOutputWithContext(ctx context.Context) FolderBigQueryExportOutput
}

type FolderBigQueryExportOutput added in v0.16.0

type FolderBigQueryExportOutput struct{ *pulumi.OutputState }

func (FolderBigQueryExportOutput) BigQueryExportId added in v0.21.0

func (o FolderBigQueryExportOutput) BigQueryExportId() pulumi.StringOutput

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

func (FolderBigQueryExportOutput) CreateTime added in v0.19.0

The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.

func (FolderBigQueryExportOutput) Dataset added in v0.19.0

The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).

func (FolderBigQueryExportOutput) Description added in v0.19.0

The description of the export (max of 1024 characters).

func (FolderBigQueryExportOutput) ElementType added in v0.16.0

func (FolderBigQueryExportOutput) ElementType() reflect.Type

func (FolderBigQueryExportOutput) Filter added in v0.19.0

Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (FolderBigQueryExportOutput) FolderId added in v0.21.0

func (FolderBigQueryExportOutput) MostRecentEditor added in v0.19.0

func (o FolderBigQueryExportOutput) MostRecentEditor() pulumi.StringOutput

Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.

func (FolderBigQueryExportOutput) Name added in v0.19.0

The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.

func (FolderBigQueryExportOutput) Principal added in v0.19.0

The service account that needs permission to create table and upload data to the BigQuery dataset.

func (FolderBigQueryExportOutput) ToFolderBigQueryExportOutput added in v0.16.0

func (o FolderBigQueryExportOutput) ToFolderBigQueryExportOutput() FolderBigQueryExportOutput

func (FolderBigQueryExportOutput) ToFolderBigQueryExportOutputWithContext added in v0.16.0

func (o FolderBigQueryExportOutput) ToFolderBigQueryExportOutputWithContext(ctx context.Context) FolderBigQueryExportOutput

func (FolderBigQueryExportOutput) UpdateTime added in v0.19.0

The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.

type FolderBigQueryExportState added in v0.16.0

type FolderBigQueryExportState struct {
}

func (FolderBigQueryExportState) ElementType added in v0.16.0

func (FolderBigQueryExportState) ElementType() reflect.Type

type FolderNotificationConfig added in v0.27.0

type FolderNotificationConfig struct {
	pulumi.CustomResourceState

	// Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.
	ConfigId pulumi.StringOutput `pulumi:"configId"`
	// The description of the notification config (max of 1024 characters).
	Description pulumi.StringOutput `pulumi:"description"`
	FolderId    pulumi.StringOutput `pulumi:"folderId"`
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name pulumi.StringOutput `pulumi:"name"`
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic pulumi.StringOutput `pulumi:"pubsubTopic"`
	// The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
	ServiceAccount pulumi.StringOutput `pulumi:"serviceAccount"`
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigResponseOutput `pulumi:"streamingConfig"`
}

Creates a notification config. Auto-naming is currently not supported for this resource.

func GetFolderNotificationConfig added in v0.27.0

func GetFolderNotificationConfig(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *FolderNotificationConfigState, opts ...pulumi.ResourceOption) (*FolderNotificationConfig, error)

GetFolderNotificationConfig gets an existing FolderNotificationConfig resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewFolderNotificationConfig added in v0.27.0

func NewFolderNotificationConfig(ctx *pulumi.Context,
	name string, args *FolderNotificationConfigArgs, opts ...pulumi.ResourceOption) (*FolderNotificationConfig, error)

NewFolderNotificationConfig registers a new resource with the given unique name, arguments, and options.

func (*FolderNotificationConfig) ElementType added in v0.27.0

func (*FolderNotificationConfig) ElementType() reflect.Type

func (*FolderNotificationConfig) ToFolderNotificationConfigOutput added in v0.27.0

func (i *FolderNotificationConfig) ToFolderNotificationConfigOutput() FolderNotificationConfigOutput

func (*FolderNotificationConfig) ToFolderNotificationConfigOutputWithContext added in v0.27.0

func (i *FolderNotificationConfig) ToFolderNotificationConfigOutputWithContext(ctx context.Context) FolderNotificationConfigOutput

type FolderNotificationConfigArgs added in v0.27.0

type FolderNotificationConfigArgs struct {
	// Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.
	ConfigId pulumi.StringInput
	// The description of the notification config (max of 1024 characters).
	Description pulumi.StringPtrInput
	FolderId    pulumi.StringInput
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name pulumi.StringPtrInput
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic pulumi.StringPtrInput
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigPtrInput
}

The set of arguments for constructing a FolderNotificationConfig resource.

func (FolderNotificationConfigArgs) ElementType added in v0.27.0

type FolderNotificationConfigInput added in v0.27.0

type FolderNotificationConfigInput interface {
	pulumi.Input

	ToFolderNotificationConfigOutput() FolderNotificationConfigOutput
	ToFolderNotificationConfigOutputWithContext(ctx context.Context) FolderNotificationConfigOutput
}

type FolderNotificationConfigOutput added in v0.27.0

type FolderNotificationConfigOutput struct{ *pulumi.OutputState }

func (FolderNotificationConfigOutput) ConfigId added in v0.27.0

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

func (FolderNotificationConfigOutput) Description added in v0.27.0

The description of the notification config (max of 1024 characters).

func (FolderNotificationConfigOutput) ElementType added in v0.27.0

func (FolderNotificationConfigOutput) FolderId added in v0.27.0

func (FolderNotificationConfigOutput) Name added in v0.27.0

The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".

func (FolderNotificationConfigOutput) PubsubTopic added in v0.27.0

The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".

func (FolderNotificationConfigOutput) ServiceAccount added in v0.27.0

The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.

func (FolderNotificationConfigOutput) StreamingConfig added in v0.27.0

The config for triggering streaming-based notifications.

func (FolderNotificationConfigOutput) ToFolderNotificationConfigOutput added in v0.27.0

func (o FolderNotificationConfigOutput) ToFolderNotificationConfigOutput() FolderNotificationConfigOutput

func (FolderNotificationConfigOutput) ToFolderNotificationConfigOutputWithContext added in v0.27.0

func (o FolderNotificationConfigOutput) ToFolderNotificationConfigOutputWithContext(ctx context.Context) FolderNotificationConfigOutput

type FolderNotificationConfigState added in v0.27.0

type FolderNotificationConfigState struct {
}

func (FolderNotificationConfigState) ElementType added in v0.27.0

type FolderSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModule struct {
	pulumi.CustomResourceState

	// If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.
	AncestorModule pulumi.StringOutput `pulumi:"ancestorModule"`
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigResponseOutput `pulumi:"customConfig"`
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// The enablement state of the custom module.
	EnablementState pulumi.StringOutput `pulumi:"enablementState"`
	FolderId        pulumi.StringOutput `pulumi:"folderId"`
	// The editor that last updated the custom module.
	LastEditor pulumi.StringOutput `pulumi:"lastEditor"`
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name pulumi.StringOutput `pulumi:"name"`
	// The time at which the custom module was last updated.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a resident SecurityHealthAnalyticsCustomModule at the scope of the given CRM parent, and also creates inherited SecurityHealthAnalyticsCustomModules for all CRM descendants of the given parent. These modules are enabled by default. Auto-naming is currently not supported for this resource.

func GetFolderSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

GetFolderSecurityHealthAnalyticsSettingCustomModule gets an existing FolderSecurityHealthAnalyticsSettingCustomModule resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewFolderSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

func NewFolderSecurityHealthAnalyticsSettingCustomModule(ctx *pulumi.Context,
	name string, args *FolderSecurityHealthAnalyticsSettingCustomModuleArgs, opts ...pulumi.ResourceOption) (*FolderSecurityHealthAnalyticsSettingCustomModule, error)

NewFolderSecurityHealthAnalyticsSettingCustomModule registers a new resource with the given unique name, arguments, and options.

func (*FolderSecurityHealthAnalyticsSettingCustomModule) ElementType added in v0.32.0

func (*FolderSecurityHealthAnalyticsSettingCustomModule) ToFolderSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

func (i *FolderSecurityHealthAnalyticsSettingCustomModule) ToFolderSecurityHealthAnalyticsSettingCustomModuleOutput() FolderSecurityHealthAnalyticsSettingCustomModuleOutput

func (*FolderSecurityHealthAnalyticsSettingCustomModule) ToFolderSecurityHealthAnalyticsSettingCustomModuleOutputWithContext added in v0.32.0

func (i *FolderSecurityHealthAnalyticsSettingCustomModule) ToFolderSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleOutput

type FolderSecurityHealthAnalyticsSettingCustomModuleArgs added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleArgs struct {
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigPtrInput
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName pulumi.StringPtrInput
	// The enablement state of the custom module.
	EnablementState FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput
	FolderId        pulumi.StringInput
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name pulumi.StringPtrInput
}

The set of arguments for constructing a FolderSecurityHealthAnalyticsSettingCustomModule resource.

func (FolderSecurityHealthAnalyticsSettingCustomModuleArgs) ElementType added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState string

The enablement state of the custom module.

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ElementType added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (e FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(ctx context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (e FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringOutputWithContext added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringPtrOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringPtrOutputWithContext added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput interface {
	pulumi.Input

	ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput() FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput
	ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput
}

FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput is an input type that accepts FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateArgs and FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput values. You can construct a concrete instance of `FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput` via:

FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateArgs{...}

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput struct{ *pulumi.OutputState }

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ElementType added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (o FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(ctx context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (o FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringOutputWithContext added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringPtrOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringPtrOutputWithContext added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput interface {
	pulumi.Input

	ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput() FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput
	ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput
}

func FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr added in v0.32.0

func FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr(v string) FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput struct{ *pulumi.OutputState }

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) Elem added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ElementType added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutputWithContext added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleInput added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleInput interface {
	pulumi.Input

	ToFolderSecurityHealthAnalyticsSettingCustomModuleOutput() FolderSecurityHealthAnalyticsSettingCustomModuleOutput
	ToFolderSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleOutput
}

type FolderSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleOutput struct{ *pulumi.OutputState }

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) AncestorModule added in v0.32.0

If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) CustomConfig added in v0.32.0

The user specified custom configuration for the module.

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) DisplayName added in v0.32.0

The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) ElementType added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) EnablementState added in v0.32.0

The enablement state of the custom module.

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) FolderId added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) LastEditor added in v0.32.0

The editor that last updated the custom module.

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) Name added in v0.32.0

Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleOutputWithContext added in v0.32.0

func (o FolderSecurityHealthAnalyticsSettingCustomModuleOutput) ToFolderSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) FolderSecurityHealthAnalyticsSettingCustomModuleOutput

func (FolderSecurityHealthAnalyticsSettingCustomModuleOutput) UpdateTime added in v0.32.0

The time at which the custom module was last updated.

type FolderSecurityHealthAnalyticsSettingCustomModuleState added in v0.32.0

type FolderSecurityHealthAnalyticsSettingCustomModuleState struct {
}

func (FolderSecurityHealthAnalyticsSettingCustomModuleState) ElementType added in v0.32.0

type GoogleCloudSecuritycenterV1CustomConfig added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfig struct {
	// Custom output properties.
	CustomOutput *GoogleCloudSecuritycenterV1CustomOutputSpec `pulumi:"customOutput"`
	// Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
	Description *string `pulumi:"description"`
	// The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated.
	Predicate *Expr `pulumi:"predicate"`
	// An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the `nextSteps` property of the finding JSON.
	Recommendation *string `pulumi:"recommendation"`
	// The resource types that the custom module operates on. Each custom module can specify up to 5 resource types.
	ResourceSelector *GoogleCloudSecuritycenterV1ResourceSelector `pulumi:"resourceSelector"`
	// The severity to assign to findings generated by the module.
	Severity *GoogleCloudSecuritycenterV1CustomConfigSeverity `pulumi:"severity"`
}

Defines the properties in a custom module configuration for Security Health Analytics. Use the custom module configuration to create custom detectors that generate custom findings for resources that you specify.

type GoogleCloudSecuritycenterV1CustomConfigArgs added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigArgs struct {
	// Custom output properties.
	CustomOutput GoogleCloudSecuritycenterV1CustomOutputSpecPtrInput `pulumi:"customOutput"`
	// Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
	Description pulumi.StringPtrInput `pulumi:"description"`
	// The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated.
	Predicate ExprPtrInput `pulumi:"predicate"`
	// An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the `nextSteps` property of the finding JSON.
	Recommendation pulumi.StringPtrInput `pulumi:"recommendation"`
	// The resource types that the custom module operates on. Each custom module can specify up to 5 resource types.
	ResourceSelector GoogleCloudSecuritycenterV1ResourceSelectorPtrInput `pulumi:"resourceSelector"`
	// The severity to assign to findings generated by the module.
	Severity GoogleCloudSecuritycenterV1CustomConfigSeverityPtrInput `pulumi:"severity"`
}

Defines the properties in a custom module configuration for Security Health Analytics. Use the custom module configuration to create custom detectors that generate custom findings for resources that you specify.

func (GoogleCloudSecuritycenterV1CustomConfigArgs) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigOutput() GoogleCloudSecuritycenterV1CustomConfigOutput

func (GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigOutput

func (GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutput() GoogleCloudSecuritycenterV1CustomConfigPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomConfigArgs) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigPtrOutput

type GoogleCloudSecuritycenterV1CustomConfigInput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1CustomConfigOutput() GoogleCloudSecuritycenterV1CustomConfigOutput
	ToGoogleCloudSecuritycenterV1CustomConfigOutputWithContext(context.Context) GoogleCloudSecuritycenterV1CustomConfigOutput
}

GoogleCloudSecuritycenterV1CustomConfigInput is an input type that accepts GoogleCloudSecuritycenterV1CustomConfigArgs and GoogleCloudSecuritycenterV1CustomConfigOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1CustomConfigInput` via:

GoogleCloudSecuritycenterV1CustomConfigArgs{...}

type GoogleCloudSecuritycenterV1CustomConfigOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigOutput struct{ *pulumi.OutputState }

Defines the properties in a custom module configuration for Security Health Analytics. Use the custom module configuration to create custom detectors that generate custom findings for resources that you specify.

func (GoogleCloudSecuritycenterV1CustomConfigOutput) CustomOutput added in v0.31.1

Custom output properties.

func (GoogleCloudSecuritycenterV1CustomConfigOutput) Description added in v0.31.1

Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.

func (GoogleCloudSecuritycenterV1CustomConfigOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigOutput) Predicate added in v0.31.1

The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated.

func (GoogleCloudSecuritycenterV1CustomConfigOutput) Recommendation added in v0.31.1

An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the `nextSteps` property of the finding JSON.

func (GoogleCloudSecuritycenterV1CustomConfigOutput) ResourceSelector added in v0.31.1

The resource types that the custom module operates on. Each custom module can specify up to 5 resource types.

func (GoogleCloudSecuritycenterV1CustomConfigOutput) Severity added in v0.31.1

The severity to assign to findings generated by the module.

func (GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigOutput() GoogleCloudSecuritycenterV1CustomConfigOutput

func (GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigOutput

func (GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutput() GoogleCloudSecuritycenterV1CustomConfigPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigPtrOutput

type GoogleCloudSecuritycenterV1CustomConfigPtrInput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigPtrInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1CustomConfigPtrOutput() GoogleCloudSecuritycenterV1CustomConfigPtrOutput
	ToGoogleCloudSecuritycenterV1CustomConfigPtrOutputWithContext(context.Context) GoogleCloudSecuritycenterV1CustomConfigPtrOutput
}

GoogleCloudSecuritycenterV1CustomConfigPtrInput is an input type that accepts GoogleCloudSecuritycenterV1CustomConfigArgs, GoogleCloudSecuritycenterV1CustomConfigPtr and GoogleCloudSecuritycenterV1CustomConfigPtrOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1CustomConfigPtrInput` via:

        GoogleCloudSecuritycenterV1CustomConfigArgs{...}

or:

        nil

type GoogleCloudSecuritycenterV1CustomConfigPtrOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigPtrOutput struct{ *pulumi.OutputState }

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) CustomOutput added in v0.31.1

Custom output properties.

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) Description added in v0.31.1

Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) Elem added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) Predicate added in v0.31.1

The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated.

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) Recommendation added in v0.31.1

An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the `nextSteps` property of the finding JSON.

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) ResourceSelector added in v0.31.1

The resource types that the custom module operates on. Each custom module can specify up to 5 resource types.

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) Severity added in v0.31.1

The severity to assign to findings generated by the module.

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigPtrOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutput() GoogleCloudSecuritycenterV1CustomConfigPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigPtrOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigPtrOutput) ToGoogleCloudSecuritycenterV1CustomConfigPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigPtrOutput

type GoogleCloudSecuritycenterV1CustomConfigResponse added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigResponse struct {
	// Custom output properties.
	CustomOutput GoogleCloudSecuritycenterV1CustomOutputSpecResponse `pulumi:"customOutput"`
	// Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.
	Description string `pulumi:"description"`
	// The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated.
	Predicate ExprResponse `pulumi:"predicate"`
	// An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the `nextSteps` property of the finding JSON.
	Recommendation string `pulumi:"recommendation"`
	// The resource types that the custom module operates on. Each custom module can specify up to 5 resource types.
	ResourceSelector GoogleCloudSecuritycenterV1ResourceSelectorResponse `pulumi:"resourceSelector"`
	// The severity to assign to findings generated by the module.
	Severity string `pulumi:"severity"`
}

Defines the properties in a custom module configuration for Security Health Analytics. Use the custom module configuration to create custom detectors that generate custom findings for resources that you specify.

type GoogleCloudSecuritycenterV1CustomConfigResponseOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigResponseOutput struct{ *pulumi.OutputState }

Defines the properties in a custom module configuration for Security Health Analytics. Use the custom module configuration to create custom detectors that generate custom findings for resources that you specify.

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) CustomOutput added in v0.31.1

Custom output properties.

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) Description added in v0.31.1

Text that describes the vulnerability or misconfiguration that the custom module detects. This explanation is returned with each finding instance to help investigators understand the detected issue. The text must be enclosed in quotation marks.

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) Predicate added in v0.31.1

The CEL expression to evaluate to produce findings. When the expression evaluates to true against a resource, a finding is generated.

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) Recommendation added in v0.31.1

An explanation of the recommended steps that security teams can take to resolve the detected issue. This explanation is returned with each finding generated by this module in the `nextSteps` property of the finding JSON.

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) ResourceSelector added in v0.31.1

The resource types that the custom module operates on. Each custom module can specify up to 5 resource types.

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) Severity added in v0.31.1

The severity to assign to findings generated by the module.

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) ToGoogleCloudSecuritycenterV1CustomConfigResponseOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigResponseOutput) ToGoogleCloudSecuritycenterV1CustomConfigResponseOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigResponseOutput) ToGoogleCloudSecuritycenterV1CustomConfigResponseOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigResponseOutput

type GoogleCloudSecuritycenterV1CustomConfigSeverity added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigSeverity string

The severity to assign to findings generated by the module.

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutput added in v0.31.1

func (e GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutput() GoogleCloudSecuritycenterV1CustomConfigSeverityOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutputWithContext added in v0.31.1

func (e GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigSeverityOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput added in v0.31.1

func (e GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput() GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext added in v0.31.1

func (e GoogleCloudSecuritycenterV1CustomConfigSeverity) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToStringOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToStringOutputWithContext added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToStringPtrOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverity) ToStringPtrOutputWithContext added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigSeverityInput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigSeverityInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutput() GoogleCloudSecuritycenterV1CustomConfigSeverityOutput
	ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutputWithContext(context.Context) GoogleCloudSecuritycenterV1CustomConfigSeverityOutput
}

GoogleCloudSecuritycenterV1CustomConfigSeverityInput is an input type that accepts GoogleCloudSecuritycenterV1CustomConfigSeverityArgs and GoogleCloudSecuritycenterV1CustomConfigSeverityOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1CustomConfigSeverityInput` via:

GoogleCloudSecuritycenterV1CustomConfigSeverityArgs{...}

type GoogleCloudSecuritycenterV1CustomConfigSeverityOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigSeverityOutput struct{ *pulumi.OutputState }

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigSeverityOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput() GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToStringOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToStringOutputWithContext added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToStringPtrOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityOutput) ToStringPtrOutputWithContext added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigSeverityPtrInput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigSeverityPtrInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput() GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput
	ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext(context.Context) GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput
}

func GoogleCloudSecuritycenterV1CustomConfigSeverityPtr added in v0.31.1

func GoogleCloudSecuritycenterV1CustomConfigSeverityPtr(v string) GoogleCloudSecuritycenterV1CustomConfigSeverityPtrInput

type GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput struct{ *pulumi.OutputState }

func (GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) Elem added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput

func (GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) ToStringPtrOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) ToStringPtrOutputWithContext added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpec added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpec struct {
	// A list of custom output properties to add to the finding.
	Properties []GoogleCloudSecuritycenterV1Property `pulumi:"properties"`
}

A set of optional name-value pairs that define custom source properties to return with each finding that is generated by the custom module. The custom source properties that are defined here are included in the finding JSON under `sourceProperties`.

type GoogleCloudSecuritycenterV1CustomOutputSpecArgs added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpecArgs struct {
	// A list of custom output properties to add to the finding.
	Properties GoogleCloudSecuritycenterV1PropertyArrayInput `pulumi:"properties"`
}

A set of optional name-value pairs that define custom source properties to return with each finding that is generated by the custom module. The custom source properties that are defined here are included in the finding JSON under `sourceProperties`.

func (GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutput() GoogleCloudSecuritycenterV1CustomOutputSpecOutput

func (GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecOutput

func (GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput() GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput

func (GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1CustomOutputSpecArgs) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput

type GoogleCloudSecuritycenterV1CustomOutputSpecInput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpecInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1CustomOutputSpecOutput() GoogleCloudSecuritycenterV1CustomOutputSpecOutput
	ToGoogleCloudSecuritycenterV1CustomOutputSpecOutputWithContext(context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecOutput
}

GoogleCloudSecuritycenterV1CustomOutputSpecInput is an input type that accepts GoogleCloudSecuritycenterV1CustomOutputSpecArgs and GoogleCloudSecuritycenterV1CustomOutputSpecOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1CustomOutputSpecInput` via:

GoogleCloudSecuritycenterV1CustomOutputSpecArgs{...}

type GoogleCloudSecuritycenterV1CustomOutputSpecOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpecOutput struct{ *pulumi.OutputState }

A set of optional name-value pairs that define custom source properties to return with each finding that is generated by the custom module. The custom source properties that are defined here are included in the finding JSON under `sourceProperties`.

func (GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomOutputSpecOutput) Properties added in v0.31.1

A list of custom output properties to add to the finding.

func (GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutput() GoogleCloudSecuritycenterV1CustomOutputSpecOutput

func (GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecOutput

func (GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput() GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput

func (GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomOutputSpecOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput

type GoogleCloudSecuritycenterV1CustomOutputSpecPtrInput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpecPtrInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput() GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput
	ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutputWithContext(context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput
}

GoogleCloudSecuritycenterV1CustomOutputSpecPtrInput is an input type that accepts GoogleCloudSecuritycenterV1CustomOutputSpecArgs, GoogleCloudSecuritycenterV1CustomOutputSpecPtr and GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1CustomOutputSpecPtrInput` via:

        GoogleCloudSecuritycenterV1CustomOutputSpecArgs{...}

or:

        nil

type GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput struct{ *pulumi.OutputState }

func (GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput) Elem added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput) Properties added in v0.31.1

A list of custom output properties to add to the finding.

func (GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecPtrOutput

type GoogleCloudSecuritycenterV1CustomOutputSpecResponse added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpecResponse struct {
	// A list of custom output properties to add to the finding.
	Properties []GoogleCloudSecuritycenterV1PropertyResponse `pulumi:"properties"`
}

A set of optional name-value pairs that define custom source properties to return with each finding that is generated by the custom module. The custom source properties that are defined here are included in the finding JSON under `sourceProperties`.

type GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput added in v0.31.1

type GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput struct{ *pulumi.OutputState }

A set of optional name-value pairs that define custom source properties to return with each finding that is generated by the custom module. The custom source properties that are defined here are included in the finding JSON under `sourceProperties`.

func (GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput) Properties added in v0.31.1

A list of custom output properties to add to the finding.

func (GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecResponseOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput) ToGoogleCloudSecuritycenterV1CustomOutputSpecResponseOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1CustomOutputSpecResponseOutput

type GoogleCloudSecuritycenterV1Property added in v0.31.1

type GoogleCloudSecuritycenterV1Property struct {
	// Name of the property for the custom output.
	Name *string `pulumi:"name"`
	// The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.
	ValueExpression *Expr `pulumi:"valueExpression"`
}

An individual name-value pair that defines a custom source property.

type GoogleCloudSecuritycenterV1PropertyArgs added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyArgs struct {
	// Name of the property for the custom output.
	Name pulumi.StringPtrInput `pulumi:"name"`
	// The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.
	ValueExpression ExprPtrInput `pulumi:"valueExpression"`
}

An individual name-value pair that defines a custom source property.

func (GoogleCloudSecuritycenterV1PropertyArgs) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyArgs) ToGoogleCloudSecuritycenterV1PropertyOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1PropertyArgs) ToGoogleCloudSecuritycenterV1PropertyOutput() GoogleCloudSecuritycenterV1PropertyOutput

func (GoogleCloudSecuritycenterV1PropertyArgs) ToGoogleCloudSecuritycenterV1PropertyOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1PropertyArgs) ToGoogleCloudSecuritycenterV1PropertyOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1PropertyOutput

type GoogleCloudSecuritycenterV1PropertyArray added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyArray []GoogleCloudSecuritycenterV1PropertyInput

func (GoogleCloudSecuritycenterV1PropertyArray) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyArray) ToGoogleCloudSecuritycenterV1PropertyArrayOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1PropertyArray) ToGoogleCloudSecuritycenterV1PropertyArrayOutput() GoogleCloudSecuritycenterV1PropertyArrayOutput

func (GoogleCloudSecuritycenterV1PropertyArray) ToGoogleCloudSecuritycenterV1PropertyArrayOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1PropertyArray) ToGoogleCloudSecuritycenterV1PropertyArrayOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1PropertyArrayOutput

type GoogleCloudSecuritycenterV1PropertyArrayInput added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyArrayInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1PropertyArrayOutput() GoogleCloudSecuritycenterV1PropertyArrayOutput
	ToGoogleCloudSecuritycenterV1PropertyArrayOutputWithContext(context.Context) GoogleCloudSecuritycenterV1PropertyArrayOutput
}

GoogleCloudSecuritycenterV1PropertyArrayInput is an input type that accepts GoogleCloudSecuritycenterV1PropertyArray and GoogleCloudSecuritycenterV1PropertyArrayOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1PropertyArrayInput` via:

GoogleCloudSecuritycenterV1PropertyArray{ GoogleCloudSecuritycenterV1PropertyArgs{...} }

type GoogleCloudSecuritycenterV1PropertyArrayOutput added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyArrayOutput struct{ *pulumi.OutputState }

func (GoogleCloudSecuritycenterV1PropertyArrayOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyArrayOutput) Index added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyArrayOutput) ToGoogleCloudSecuritycenterV1PropertyArrayOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1PropertyArrayOutput) ToGoogleCloudSecuritycenterV1PropertyArrayOutput() GoogleCloudSecuritycenterV1PropertyArrayOutput

func (GoogleCloudSecuritycenterV1PropertyArrayOutput) ToGoogleCloudSecuritycenterV1PropertyArrayOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1PropertyArrayOutput) ToGoogleCloudSecuritycenterV1PropertyArrayOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1PropertyArrayOutput

type GoogleCloudSecuritycenterV1PropertyInput added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1PropertyOutput() GoogleCloudSecuritycenterV1PropertyOutput
	ToGoogleCloudSecuritycenterV1PropertyOutputWithContext(context.Context) GoogleCloudSecuritycenterV1PropertyOutput
}

GoogleCloudSecuritycenterV1PropertyInput is an input type that accepts GoogleCloudSecuritycenterV1PropertyArgs and GoogleCloudSecuritycenterV1PropertyOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1PropertyInput` via:

GoogleCloudSecuritycenterV1PropertyArgs{...}

type GoogleCloudSecuritycenterV1PropertyOutput added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyOutput struct{ *pulumi.OutputState }

An individual name-value pair that defines a custom source property.

func (GoogleCloudSecuritycenterV1PropertyOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyOutput) Name added in v0.31.1

Name of the property for the custom output.

func (GoogleCloudSecuritycenterV1PropertyOutput) ToGoogleCloudSecuritycenterV1PropertyOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1PropertyOutput) ToGoogleCloudSecuritycenterV1PropertyOutput() GoogleCloudSecuritycenterV1PropertyOutput

func (GoogleCloudSecuritycenterV1PropertyOutput) ToGoogleCloudSecuritycenterV1PropertyOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1PropertyOutput) ToGoogleCloudSecuritycenterV1PropertyOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1PropertyOutput

func (GoogleCloudSecuritycenterV1PropertyOutput) ValueExpression added in v0.31.1

The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.

type GoogleCloudSecuritycenterV1PropertyResponse added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyResponse struct {
	// Name of the property for the custom output.
	Name string `pulumi:"name"`
	// The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.
	ValueExpression ExprResponse `pulumi:"valueExpression"`
}

An individual name-value pair that defines a custom source property.

type GoogleCloudSecuritycenterV1PropertyResponseArrayOutput added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyResponseArrayOutput struct{ *pulumi.OutputState }

func (GoogleCloudSecuritycenterV1PropertyResponseArrayOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyResponseArrayOutput) Index added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyResponseArrayOutput) ToGoogleCloudSecuritycenterV1PropertyResponseArrayOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyResponseArrayOutput) ToGoogleCloudSecuritycenterV1PropertyResponseArrayOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1PropertyResponseArrayOutput) ToGoogleCloudSecuritycenterV1PropertyResponseArrayOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1PropertyResponseArrayOutput

type GoogleCloudSecuritycenterV1PropertyResponseOutput added in v0.31.1

type GoogleCloudSecuritycenterV1PropertyResponseOutput struct{ *pulumi.OutputState }

An individual name-value pair that defines a custom source property.

func (GoogleCloudSecuritycenterV1PropertyResponseOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1PropertyResponseOutput) Name added in v0.31.1

Name of the property for the custom output.

func (GoogleCloudSecuritycenterV1PropertyResponseOutput) ToGoogleCloudSecuritycenterV1PropertyResponseOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1PropertyResponseOutput) ToGoogleCloudSecuritycenterV1PropertyResponseOutput() GoogleCloudSecuritycenterV1PropertyResponseOutput

func (GoogleCloudSecuritycenterV1PropertyResponseOutput) ToGoogleCloudSecuritycenterV1PropertyResponseOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1PropertyResponseOutput) ToGoogleCloudSecuritycenterV1PropertyResponseOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1PropertyResponseOutput

func (GoogleCloudSecuritycenterV1PropertyResponseOutput) ValueExpression added in v0.31.1

The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.

type GoogleCloudSecuritycenterV1ResourceSelector added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelector struct {
	// The resource types to run the detector on.
	ResourceTypes []string `pulumi:"resourceTypes"`
}

Resource for selecting resource type.

type GoogleCloudSecuritycenterV1ResourceSelectorArgs added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelectorArgs struct {
	// The resource types to run the detector on.
	ResourceTypes pulumi.StringArrayInput `pulumi:"resourceTypes"`
}

Resource for selecting resource type.

func (GoogleCloudSecuritycenterV1ResourceSelectorArgs) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorOutput() GoogleCloudSecuritycenterV1ResourceSelectorOutput

func (GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1ResourceSelectorOutput

func (GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutput added in v0.31.1

func (i GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutput() GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput

func (GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutputWithContext added in v0.31.1

func (i GoogleCloudSecuritycenterV1ResourceSelectorArgs) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput

type GoogleCloudSecuritycenterV1ResourceSelectorInput added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelectorInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1ResourceSelectorOutput() GoogleCloudSecuritycenterV1ResourceSelectorOutput
	ToGoogleCloudSecuritycenterV1ResourceSelectorOutputWithContext(context.Context) GoogleCloudSecuritycenterV1ResourceSelectorOutput
}

GoogleCloudSecuritycenterV1ResourceSelectorInput is an input type that accepts GoogleCloudSecuritycenterV1ResourceSelectorArgs and GoogleCloudSecuritycenterV1ResourceSelectorOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1ResourceSelectorInput` via:

GoogleCloudSecuritycenterV1ResourceSelectorArgs{...}

type GoogleCloudSecuritycenterV1ResourceSelectorOutput added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelectorOutput struct{ *pulumi.OutputState }

Resource for selecting resource type.

func (GoogleCloudSecuritycenterV1ResourceSelectorOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1ResourceSelectorOutput) ResourceTypes added in v0.31.1

The resource types to run the detector on.

func (GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorOutput() GoogleCloudSecuritycenterV1ResourceSelectorOutput

func (GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1ResourceSelectorOutput

func (GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutput added in v0.31.1

func (o GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutput() GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput

func (GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1ResourceSelectorOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput

type GoogleCloudSecuritycenterV1ResourceSelectorPtrInput added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelectorPtrInput interface {
	pulumi.Input

	ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutput() GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput
	ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutputWithContext(context.Context) GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput
}

GoogleCloudSecuritycenterV1ResourceSelectorPtrInput is an input type that accepts GoogleCloudSecuritycenterV1ResourceSelectorArgs, GoogleCloudSecuritycenterV1ResourceSelectorPtr and GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput values. You can construct a concrete instance of `GoogleCloudSecuritycenterV1ResourceSelectorPtrInput` via:

        GoogleCloudSecuritycenterV1ResourceSelectorArgs{...}

or:

        nil

type GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput struct{ *pulumi.OutputState }

func (GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput) Elem added in v0.31.1

func (GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput) ResourceTypes added in v0.31.1

The resource types to run the detector on.

func (GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorPtrOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1ResourceSelectorPtrOutput

type GoogleCloudSecuritycenterV1ResourceSelectorResponse added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelectorResponse struct {
	// The resource types to run the detector on.
	ResourceTypes []string `pulumi:"resourceTypes"`
}

Resource for selecting resource type.

type GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput added in v0.31.1

type GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput struct{ *pulumi.OutputState }

Resource for selecting resource type.

func (GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput) ElementType added in v0.31.1

func (GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput) ResourceTypes added in v0.31.1

The resource types to run the detector on.

func (GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorResponseOutput added in v0.31.1

func (GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorResponseOutputWithContext added in v0.31.1

func (o GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput) ToGoogleCloudSecuritycenterV1ResourceSelectorResponseOutputWithContext(ctx context.Context) GoogleCloudSecuritycenterV1ResourceSelectorResponseOutput

type LookupFolderBigQueryExportArgs added in v0.16.0

type LookupFolderBigQueryExportArgs struct {
	BigQueryExportId string `pulumi:"bigQueryExportId"`
	FolderId         string `pulumi:"folderId"`
}

type LookupFolderBigQueryExportOutputArgs added in v0.16.0

type LookupFolderBigQueryExportOutputArgs struct {
	BigQueryExportId pulumi.StringInput `pulumi:"bigQueryExportId"`
	FolderId         pulumi.StringInput `pulumi:"folderId"`
}

func (LookupFolderBigQueryExportOutputArgs) ElementType added in v0.16.0

type LookupFolderBigQueryExportResult added in v0.16.0

type LookupFolderBigQueryExportResult struct {
	// The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
	CreateTime string `pulumi:"createTime"`
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset string `pulumi:"dataset"`
	// The description of the export (max of 1024 characters).
	Description string `pulumi:"description"`
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter string `pulumi:"filter"`
	// Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
	MostRecentEditor string `pulumi:"mostRecentEditor"`
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name string `pulumi:"name"`
	// The service account that needs permission to create table and upload data to the BigQuery dataset.
	Principal string `pulumi:"principal"`
	// The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupFolderBigQueryExport added in v0.16.0

func LookupFolderBigQueryExport(ctx *pulumi.Context, args *LookupFolderBigQueryExportArgs, opts ...pulumi.InvokeOption) (*LookupFolderBigQueryExportResult, error)

Gets a BigQuery export.

type LookupFolderBigQueryExportResultOutput added in v0.16.0

type LookupFolderBigQueryExportResultOutput struct{ *pulumi.OutputState }

func (LookupFolderBigQueryExportResultOutput) CreateTime added in v0.16.0

The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.

func (LookupFolderBigQueryExportResultOutput) Dataset added in v0.16.0

The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).

func (LookupFolderBigQueryExportResultOutput) Description added in v0.16.0

The description of the export (max of 1024 characters).

func (LookupFolderBigQueryExportResultOutput) ElementType added in v0.16.0

func (LookupFolderBigQueryExportResultOutput) Filter added in v0.16.0

Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (LookupFolderBigQueryExportResultOutput) MostRecentEditor added in v0.16.0

Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.

func (LookupFolderBigQueryExportResultOutput) Name added in v0.16.0

The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.

func (LookupFolderBigQueryExportResultOutput) Principal added in v0.16.0

The service account that needs permission to create table and upload data to the BigQuery dataset.

func (LookupFolderBigQueryExportResultOutput) ToLookupFolderBigQueryExportResultOutput added in v0.16.0

func (o LookupFolderBigQueryExportResultOutput) ToLookupFolderBigQueryExportResultOutput() LookupFolderBigQueryExportResultOutput

func (LookupFolderBigQueryExportResultOutput) ToLookupFolderBigQueryExportResultOutputWithContext added in v0.16.0

func (o LookupFolderBigQueryExportResultOutput) ToLookupFolderBigQueryExportResultOutputWithContext(ctx context.Context) LookupFolderBigQueryExportResultOutput

func (LookupFolderBigQueryExportResultOutput) UpdateTime added in v0.16.0

The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.

type LookupFolderNotificationConfigArgs added in v0.27.0

type LookupFolderNotificationConfigArgs struct {
	FolderId             string `pulumi:"folderId"`
	NotificationConfigId string `pulumi:"notificationConfigId"`
}

type LookupFolderNotificationConfigOutputArgs added in v0.27.0

type LookupFolderNotificationConfigOutputArgs struct {
	FolderId             pulumi.StringInput `pulumi:"folderId"`
	NotificationConfigId pulumi.StringInput `pulumi:"notificationConfigId"`
}

func (LookupFolderNotificationConfigOutputArgs) ElementType added in v0.27.0

type LookupFolderNotificationConfigResult added in v0.27.0

type LookupFolderNotificationConfigResult struct {
	// The description of the notification config (max of 1024 characters).
	Description string `pulumi:"description"`
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name string `pulumi:"name"`
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic string `pulumi:"pubsubTopic"`
	// The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
	ServiceAccount string `pulumi:"serviceAccount"`
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigResponse `pulumi:"streamingConfig"`
}

func LookupFolderNotificationConfig added in v0.27.0

Gets a notification config.

type LookupFolderNotificationConfigResultOutput added in v0.27.0

type LookupFolderNotificationConfigResultOutput struct{ *pulumi.OutputState }

func (LookupFolderNotificationConfigResultOutput) Description added in v0.27.0

The description of the notification config (max of 1024 characters).

func (LookupFolderNotificationConfigResultOutput) ElementType added in v0.27.0

func (LookupFolderNotificationConfigResultOutput) Name added in v0.27.0

The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".

func (LookupFolderNotificationConfigResultOutput) PubsubTopic added in v0.27.0

The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".

func (LookupFolderNotificationConfigResultOutput) ServiceAccount added in v0.27.0

The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.

func (LookupFolderNotificationConfigResultOutput) StreamingConfig added in v0.27.0

The config for triggering streaming-based notifications.

func (LookupFolderNotificationConfigResultOutput) ToLookupFolderNotificationConfigResultOutput added in v0.27.0

func (o LookupFolderNotificationConfigResultOutput) ToLookupFolderNotificationConfigResultOutput() LookupFolderNotificationConfigResultOutput

func (LookupFolderNotificationConfigResultOutput) ToLookupFolderNotificationConfigResultOutputWithContext added in v0.27.0

func (o LookupFolderNotificationConfigResultOutput) ToLookupFolderNotificationConfigResultOutputWithContext(ctx context.Context) LookupFolderNotificationConfigResultOutput

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleArgs added in v0.32.0

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleArgs struct {
	CustomModuleId string `pulumi:"customModuleId"`
	FolderId       string `pulumi:"folderId"`
}

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleOutputArgs added in v0.32.0

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleOutputArgs struct {
	CustomModuleId pulumi.StringInput `pulumi:"customModuleId"`
	FolderId       pulumi.StringInput `pulumi:"folderId"`
}

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleOutputArgs) ElementType added in v0.32.0

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleResult added in v0.32.0

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleResult struct {
	// If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.
	AncestorModule string `pulumi:"ancestorModule"`
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigResponse `pulumi:"customConfig"`
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName string `pulumi:"displayName"`
	// The enablement state of the custom module.
	EnablementState string `pulumi:"enablementState"`
	// The editor that last updated the custom module.
	LastEditor string `pulumi:"lastEditor"`
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name string `pulumi:"name"`
	// The time at which the custom module was last updated.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupFolderSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

Retrieves a SecurityHealthAnalyticsCustomModule.

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput added in v0.32.0

type LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput struct{ *pulumi.OutputState }

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) AncestorModule added in v0.32.0

If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) CustomConfig added in v0.32.0

The user specified custom configuration for the module.

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) DisplayName added in v0.32.0

The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) ElementType added in v0.32.0

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) EnablementState added in v0.32.0

The enablement state of the custom module.

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) LastEditor added in v0.32.0

The editor that last updated the custom module.

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) Name added in v0.32.0

Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput added in v0.32.0

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutputWithContext added in v0.32.0

func (o LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutputWithContext(ctx context.Context) LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput

func (LookupFolderSecurityHealthAnalyticsSettingCustomModuleResultOutput) UpdateTime added in v0.32.0

The time at which the custom module was last updated.

type LookupMuteConfigArgs added in v0.9.0

type LookupMuteConfigArgs struct {
	MuteConfigId string  `pulumi:"muteConfigId"`
	Project      *string `pulumi:"project"`
}

type LookupMuteConfigOutputArgs added in v0.9.0

type LookupMuteConfigOutputArgs struct {
	MuteConfigId pulumi.StringInput    `pulumi:"muteConfigId"`
	Project      pulumi.StringPtrInput `pulumi:"project"`
}

func (LookupMuteConfigOutputArgs) ElementType added in v0.9.0

func (LookupMuteConfigOutputArgs) ElementType() reflect.Type

type LookupMuteConfigResult added in v0.9.0

type LookupMuteConfigResult struct {
	// The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.
	CreateTime string `pulumi:"createTime"`
	// A description of the mute config.
	Description string `pulumi:"description"`
	// The human readable name to be displayed for the mute config.
	DisplayName string `pulumi:"displayName"`
	// An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`
	Filter string `pulumi:"filter"`
	// Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.
	MostRecentEditor string `pulumi:"mostRecentEditor"`
	// This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"
	Name string `pulumi:"name"`
	// The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupMuteConfig added in v0.9.0

func LookupMuteConfig(ctx *pulumi.Context, args *LookupMuteConfigArgs, opts ...pulumi.InvokeOption) (*LookupMuteConfigResult, error)

Gets a mute config.

type LookupMuteConfigResultOutput added in v0.9.0

type LookupMuteConfigResultOutput struct{ *pulumi.OutputState }

func LookupMuteConfigOutput added in v0.9.0

func (LookupMuteConfigResultOutput) CreateTime added in v0.9.0

The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.

func (LookupMuteConfigResultOutput) Description added in v0.9.0

A description of the mute config.

func (LookupMuteConfigResultOutput) DisplayName added in v0.9.0

The human readable name to be displayed for the mute config.

func (LookupMuteConfigResultOutput) ElementType added in v0.9.0

func (LookupMuteConfigResultOutput) Filter added in v0.9.0

An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`

func (LookupMuteConfigResultOutput) MostRecentEditor added in v0.9.0

func (o LookupMuteConfigResultOutput) MostRecentEditor() pulumi.StringOutput

Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.

func (LookupMuteConfigResultOutput) Name added in v0.9.0

This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"

func (LookupMuteConfigResultOutput) ToLookupMuteConfigResultOutput added in v0.9.0

func (o LookupMuteConfigResultOutput) ToLookupMuteConfigResultOutput() LookupMuteConfigResultOutput

func (LookupMuteConfigResultOutput) ToLookupMuteConfigResultOutputWithContext added in v0.9.0

func (o LookupMuteConfigResultOutput) ToLookupMuteConfigResultOutputWithContext(ctx context.Context) LookupMuteConfigResultOutput

func (LookupMuteConfigResultOutput) UpdateTime added in v0.9.0

The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.

type LookupNotificationConfigArgs added in v0.4.0

type LookupNotificationConfigArgs struct {
	NotificationConfigId string  `pulumi:"notificationConfigId"`
	Project              *string `pulumi:"project"`
}

type LookupNotificationConfigOutputArgs added in v0.8.0

type LookupNotificationConfigOutputArgs struct {
	NotificationConfigId pulumi.StringInput    `pulumi:"notificationConfigId"`
	Project              pulumi.StringPtrInput `pulumi:"project"`
}

func (LookupNotificationConfigOutputArgs) ElementType added in v0.8.0

type LookupNotificationConfigResult added in v0.4.0

type LookupNotificationConfigResult struct {
	// The description of the notification config (max of 1024 characters).
	Description string `pulumi:"description"`
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name string `pulumi:"name"`
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic string `pulumi:"pubsubTopic"`
	// The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
	ServiceAccount string `pulumi:"serviceAccount"`
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigResponse `pulumi:"streamingConfig"`
}

func LookupNotificationConfig added in v0.4.0

func LookupNotificationConfig(ctx *pulumi.Context, args *LookupNotificationConfigArgs, opts ...pulumi.InvokeOption) (*LookupNotificationConfigResult, error)

Gets a notification config.

type LookupNotificationConfigResultOutput added in v0.8.0

type LookupNotificationConfigResultOutput struct{ *pulumi.OutputState }

func (LookupNotificationConfigResultOutput) Description added in v0.8.0

The description of the notification config (max of 1024 characters).

func (LookupNotificationConfigResultOutput) ElementType added in v0.8.0

func (LookupNotificationConfigResultOutput) Name added in v0.8.0

The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".

func (LookupNotificationConfigResultOutput) PubsubTopic added in v0.8.0

The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".

func (LookupNotificationConfigResultOutput) ServiceAccount added in v0.8.0

The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.

func (LookupNotificationConfigResultOutput) StreamingConfig added in v0.8.0

The config for triggering streaming-based notifications.

func (LookupNotificationConfigResultOutput) ToLookupNotificationConfigResultOutput added in v0.8.0

func (o LookupNotificationConfigResultOutput) ToLookupNotificationConfigResultOutput() LookupNotificationConfigResultOutput

func (LookupNotificationConfigResultOutput) ToLookupNotificationConfigResultOutputWithContext added in v0.8.0

func (o LookupNotificationConfigResultOutput) ToLookupNotificationConfigResultOutputWithContext(ctx context.Context) LookupNotificationConfigResultOutput

type LookupOrganizationBigQueryExportArgs added in v0.16.0

type LookupOrganizationBigQueryExportArgs struct {
	BigQueryExportId string `pulumi:"bigQueryExportId"`
	OrganizationId   string `pulumi:"organizationId"`
}

type LookupOrganizationBigQueryExportOutputArgs added in v0.16.0

type LookupOrganizationBigQueryExportOutputArgs struct {
	BigQueryExportId pulumi.StringInput `pulumi:"bigQueryExportId"`
	OrganizationId   pulumi.StringInput `pulumi:"organizationId"`
}

func (LookupOrganizationBigQueryExportOutputArgs) ElementType added in v0.16.0

type LookupOrganizationBigQueryExportResult added in v0.16.0

type LookupOrganizationBigQueryExportResult struct {
	// The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
	CreateTime string `pulumi:"createTime"`
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset string `pulumi:"dataset"`
	// The description of the export (max of 1024 characters).
	Description string `pulumi:"description"`
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter string `pulumi:"filter"`
	// Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
	MostRecentEditor string `pulumi:"mostRecentEditor"`
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name string `pulumi:"name"`
	// The service account that needs permission to create table and upload data to the BigQuery dataset.
	Principal string `pulumi:"principal"`
	// The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupOrganizationBigQueryExport added in v0.16.0

Gets a BigQuery export.

type LookupOrganizationBigQueryExportResultOutput added in v0.16.0

type LookupOrganizationBigQueryExportResultOutput struct{ *pulumi.OutputState }

func (LookupOrganizationBigQueryExportResultOutput) CreateTime added in v0.16.0

The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.

func (LookupOrganizationBigQueryExportResultOutput) Dataset added in v0.16.0

The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).

func (LookupOrganizationBigQueryExportResultOutput) Description added in v0.16.0

The description of the export (max of 1024 characters).

func (LookupOrganizationBigQueryExportResultOutput) ElementType added in v0.16.0

func (LookupOrganizationBigQueryExportResultOutput) Filter added in v0.16.0

Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (LookupOrganizationBigQueryExportResultOutput) MostRecentEditor added in v0.16.0

Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.

func (LookupOrganizationBigQueryExportResultOutput) Name added in v0.16.0

The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.

func (LookupOrganizationBigQueryExportResultOutput) Principal added in v0.16.0

The service account that needs permission to create table and upload data to the BigQuery dataset.

func (LookupOrganizationBigQueryExportResultOutput) ToLookupOrganizationBigQueryExportResultOutput added in v0.16.0

func (o LookupOrganizationBigQueryExportResultOutput) ToLookupOrganizationBigQueryExportResultOutput() LookupOrganizationBigQueryExportResultOutput

func (LookupOrganizationBigQueryExportResultOutput) ToLookupOrganizationBigQueryExportResultOutputWithContext added in v0.16.0

func (o LookupOrganizationBigQueryExportResultOutput) ToLookupOrganizationBigQueryExportResultOutputWithContext(ctx context.Context) LookupOrganizationBigQueryExportResultOutput

func (LookupOrganizationBigQueryExportResultOutput) UpdateTime added in v0.16.0

The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.

type LookupOrganizationEventThreatDetectionSettingCustomModuleArgs added in v0.32.0

type LookupOrganizationEventThreatDetectionSettingCustomModuleArgs struct {
	CustomModuleId string `pulumi:"customModuleId"`
	OrganizationId string `pulumi:"organizationId"`
}

type LookupOrganizationEventThreatDetectionSettingCustomModuleOutputArgs added in v0.32.0

type LookupOrganizationEventThreatDetectionSettingCustomModuleOutputArgs struct {
	CustomModuleId pulumi.StringInput `pulumi:"customModuleId"`
	OrganizationId pulumi.StringInput `pulumi:"organizationId"`
}

func (LookupOrganizationEventThreatDetectionSettingCustomModuleOutputArgs) ElementType added in v0.32.0

type LookupOrganizationEventThreatDetectionSettingCustomModuleResult added in v0.32.0

type LookupOrganizationEventThreatDetectionSettingCustomModuleResult struct {
	// Config for the module. For the resident module, its config value is defined at this level. For the inherited module, its config value is inherited from the ancestor module.
	Config map[string]string `pulumi:"config"`
	// The description for the module.
	Description string `pulumi:"description"`
	// The human readable name to be displayed for the module.
	DisplayName string `pulumi:"displayName"`
	// The state of enablement for the module at the given level of the hierarchy.
	EnablementState string `pulumi:"enablementState"`
	// The editor the module was last updated by.
	LastEditor string `pulumi:"lastEditor"`
	// Immutable. The resource name of the Event Threat Detection custom module. Its format is: * "organizations/{organization}/eventThreatDetectionSettings/customModules/{module}". * "folders/{folder}/eventThreatDetectionSettings/customModules/{module}". * "projects/{project}/eventThreatDetectionSettings/customModules/{module}".
	Name string `pulumi:"name"`
	// Type for the module. e.g. CONFIGURABLE_BAD_IP.
	Type string `pulumi:"type"`
	// The time the module was last updated.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupOrganizationEventThreatDetectionSettingCustomModule added in v0.32.0

Gets an Event Threat Detection custom module.

type LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput added in v0.32.0

type LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput struct{ *pulumi.OutputState }

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) Config added in v0.32.0

Config for the module. For the resident module, its config value is defined at this level. For the inherited module, its config value is inherited from the ancestor module.

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) Description added in v0.32.0

The description for the module.

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) DisplayName added in v0.32.0

The human readable name to be displayed for the module.

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) ElementType added in v0.32.0

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) EnablementState added in v0.32.0

The state of enablement for the module at the given level of the hierarchy.

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) LastEditor added in v0.32.0

The editor the module was last updated by.

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) Name added in v0.32.0

Immutable. The resource name of the Event Threat Detection custom module. Its format is: * "organizations/{organization}/eventThreatDetectionSettings/customModules/{module}". * "folders/{folder}/eventThreatDetectionSettings/customModules/{module}". * "projects/{project}/eventThreatDetectionSettings/customModules/{module}".

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) ToLookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput added in v0.32.0

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) ToLookupOrganizationEventThreatDetectionSettingCustomModuleResultOutputWithContext added in v0.32.0

func (o LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) ToLookupOrganizationEventThreatDetectionSettingCustomModuleResultOutputWithContext(ctx context.Context) LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) Type added in v0.32.0

Type for the module. e.g. CONFIGURABLE_BAD_IP.

func (LookupOrganizationEventThreatDetectionSettingCustomModuleResultOutput) UpdateTime added in v0.32.0

The time the module was last updated.

type LookupOrganizationMuteConfigArgs added in v0.9.0

type LookupOrganizationMuteConfigArgs struct {
	MuteConfigId   string `pulumi:"muteConfigId"`
	OrganizationId string `pulumi:"organizationId"`
}

type LookupOrganizationMuteConfigOutputArgs added in v0.9.0

type LookupOrganizationMuteConfigOutputArgs struct {
	MuteConfigId   pulumi.StringInput `pulumi:"muteConfigId"`
	OrganizationId pulumi.StringInput `pulumi:"organizationId"`
}

func (LookupOrganizationMuteConfigOutputArgs) ElementType added in v0.9.0

type LookupOrganizationMuteConfigResult added in v0.9.0

type LookupOrganizationMuteConfigResult struct {
	// The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.
	CreateTime string `pulumi:"createTime"`
	// A description of the mute config.
	Description string `pulumi:"description"`
	// The human readable name to be displayed for the mute config.
	DisplayName string `pulumi:"displayName"`
	// An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`
	Filter string `pulumi:"filter"`
	// Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.
	MostRecentEditor string `pulumi:"mostRecentEditor"`
	// This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"
	Name string `pulumi:"name"`
	// The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupOrganizationMuteConfig added in v0.9.0

func LookupOrganizationMuteConfig(ctx *pulumi.Context, args *LookupOrganizationMuteConfigArgs, opts ...pulumi.InvokeOption) (*LookupOrganizationMuteConfigResult, error)

Gets a mute config.

type LookupOrganizationMuteConfigResultOutput added in v0.9.0

type LookupOrganizationMuteConfigResultOutput struct{ *pulumi.OutputState }

func (LookupOrganizationMuteConfigResultOutput) CreateTime added in v0.9.0

The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.

func (LookupOrganizationMuteConfigResultOutput) Description added in v0.9.0

A description of the mute config.

func (LookupOrganizationMuteConfigResultOutput) DisplayName added in v0.9.0

The human readable name to be displayed for the mute config.

func (LookupOrganizationMuteConfigResultOutput) ElementType added in v0.9.0

func (LookupOrganizationMuteConfigResultOutput) Filter added in v0.9.0

An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`

func (LookupOrganizationMuteConfigResultOutput) MostRecentEditor added in v0.9.0

Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.

func (LookupOrganizationMuteConfigResultOutput) Name added in v0.9.0

This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"

func (LookupOrganizationMuteConfigResultOutput) ToLookupOrganizationMuteConfigResultOutput added in v0.9.0

func (o LookupOrganizationMuteConfigResultOutput) ToLookupOrganizationMuteConfigResultOutput() LookupOrganizationMuteConfigResultOutput

func (LookupOrganizationMuteConfigResultOutput) ToLookupOrganizationMuteConfigResultOutputWithContext added in v0.9.0

func (o LookupOrganizationMuteConfigResultOutput) ToLookupOrganizationMuteConfigResultOutputWithContext(ctx context.Context) LookupOrganizationMuteConfigResultOutput

func (LookupOrganizationMuteConfigResultOutput) UpdateTime added in v0.9.0

The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.

type LookupOrganizationNotificationConfigArgs added in v0.27.0

type LookupOrganizationNotificationConfigArgs struct {
	NotificationConfigId string `pulumi:"notificationConfigId"`
	OrganizationId       string `pulumi:"organizationId"`
}

type LookupOrganizationNotificationConfigOutputArgs added in v0.27.0

type LookupOrganizationNotificationConfigOutputArgs struct {
	NotificationConfigId pulumi.StringInput `pulumi:"notificationConfigId"`
	OrganizationId       pulumi.StringInput `pulumi:"organizationId"`
}

func (LookupOrganizationNotificationConfigOutputArgs) ElementType added in v0.27.0

type LookupOrganizationNotificationConfigResult added in v0.27.0

type LookupOrganizationNotificationConfigResult struct {
	// The description of the notification config (max of 1024 characters).
	Description string `pulumi:"description"`
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name string `pulumi:"name"`
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic string `pulumi:"pubsubTopic"`
	// The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
	ServiceAccount string `pulumi:"serviceAccount"`
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigResponse `pulumi:"streamingConfig"`
}

func LookupOrganizationNotificationConfig added in v0.27.0

Gets a notification config.

type LookupOrganizationNotificationConfigResultOutput added in v0.27.0

type LookupOrganizationNotificationConfigResultOutput struct{ *pulumi.OutputState }

func (LookupOrganizationNotificationConfigResultOutput) Description added in v0.27.0

The description of the notification config (max of 1024 characters).

func (LookupOrganizationNotificationConfigResultOutput) ElementType added in v0.27.0

func (LookupOrganizationNotificationConfigResultOutput) Name added in v0.27.0

The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".

func (LookupOrganizationNotificationConfigResultOutput) PubsubTopic added in v0.27.0

The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".

func (LookupOrganizationNotificationConfigResultOutput) ServiceAccount added in v0.27.0

The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.

func (LookupOrganizationNotificationConfigResultOutput) StreamingConfig added in v0.27.0

The config for triggering streaming-based notifications.

func (LookupOrganizationNotificationConfigResultOutput) ToLookupOrganizationNotificationConfigResultOutput added in v0.27.0

func (o LookupOrganizationNotificationConfigResultOutput) ToLookupOrganizationNotificationConfigResultOutput() LookupOrganizationNotificationConfigResultOutput

func (LookupOrganizationNotificationConfigResultOutput) ToLookupOrganizationNotificationConfigResultOutputWithContext added in v0.27.0

func (o LookupOrganizationNotificationConfigResultOutput) ToLookupOrganizationNotificationConfigResultOutputWithContext(ctx context.Context) LookupOrganizationNotificationConfigResultOutput

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleArgs added in v0.32.0

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleArgs struct {
	CustomModuleId string `pulumi:"customModuleId"`
	OrganizationId string `pulumi:"organizationId"`
}

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputArgs added in v0.32.0

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputArgs struct {
	CustomModuleId pulumi.StringInput `pulumi:"customModuleId"`
	OrganizationId pulumi.StringInput `pulumi:"organizationId"`
}

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputArgs) ElementType added in v0.32.0

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResult added in v0.32.0

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResult struct {
	// If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.
	AncestorModule string `pulumi:"ancestorModule"`
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigResponse `pulumi:"customConfig"`
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName string `pulumi:"displayName"`
	// The enablement state of the custom module.
	EnablementState string `pulumi:"enablementState"`
	// The editor that last updated the custom module.
	LastEditor string `pulumi:"lastEditor"`
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name string `pulumi:"name"`
	// The time at which the custom module was last updated.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupOrganizationSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

Retrieves a SecurityHealthAnalyticsCustomModule.

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput added in v0.32.0

type LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput struct{ *pulumi.OutputState }

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) AncestorModule added in v0.32.0

If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) CustomConfig added in v0.32.0

The user specified custom configuration for the module.

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) DisplayName added in v0.32.0

The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) ElementType added in v0.32.0

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) EnablementState added in v0.32.0

The enablement state of the custom module.

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) LastEditor added in v0.32.0

The editor that last updated the custom module.

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) Name added in v0.32.0

Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput added in v0.32.0

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutputWithContext added in v0.32.0

func (LookupOrganizationSecurityHealthAnalyticsSettingCustomModuleResultOutput) UpdateTime added in v0.32.0

The time at which the custom module was last updated.

type LookupOrganizationSourceIamPolicyArgs added in v0.4.0

type LookupOrganizationSourceIamPolicyArgs struct {
	OrganizationId string `pulumi:"organizationId"`
	SourceId       string `pulumi:"sourceId"`
}

type LookupOrganizationSourceIamPolicyOutputArgs added in v0.8.0

type LookupOrganizationSourceIamPolicyOutputArgs struct {
	OrganizationId pulumi.StringInput `pulumi:"organizationId"`
	SourceId       pulumi.StringInput `pulumi:"sourceId"`
}

func (LookupOrganizationSourceIamPolicyOutputArgs) ElementType added in v0.8.0

type LookupOrganizationSourceIamPolicyResult added in v0.4.0

type LookupOrganizationSourceIamPolicyResult struct {
	// Specifies cloud audit logging configuration for this policy.
	AuditConfigs []AuditConfigResponse `pulumi:"auditConfigs"`
	// Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
	Bindings []BindingResponse `pulumi:"bindings"`
	// `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
	Etag string `pulumi:"etag"`
	// Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Version int `pulumi:"version"`
}

func LookupOrganizationSourceIamPolicy added in v0.4.0

Gets the access control policy on the specified Source.

type LookupOrganizationSourceIamPolicyResultOutput added in v0.8.0

type LookupOrganizationSourceIamPolicyResultOutput struct{ *pulumi.OutputState }

func (LookupOrganizationSourceIamPolicyResultOutput) AuditConfigs added in v0.8.0

Specifies cloud audit logging configuration for this policy.

func (LookupOrganizationSourceIamPolicyResultOutput) Bindings added in v0.8.0

Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.

func (LookupOrganizationSourceIamPolicyResultOutput) ElementType added in v0.8.0

func (LookupOrganizationSourceIamPolicyResultOutput) Etag added in v0.8.0

`etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.

func (LookupOrganizationSourceIamPolicyResultOutput) ToLookupOrganizationSourceIamPolicyResultOutput added in v0.8.0

func (o LookupOrganizationSourceIamPolicyResultOutput) ToLookupOrganizationSourceIamPolicyResultOutput() LookupOrganizationSourceIamPolicyResultOutput

func (LookupOrganizationSourceIamPolicyResultOutput) ToLookupOrganizationSourceIamPolicyResultOutputWithContext added in v0.8.0

func (o LookupOrganizationSourceIamPolicyResultOutput) ToLookupOrganizationSourceIamPolicyResultOutputWithContext(ctx context.Context) LookupOrganizationSourceIamPolicyResultOutput

func (LookupOrganizationSourceIamPolicyResultOutput) Version added in v0.8.0

Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).

type LookupProjectBigQueryExportArgs added in v0.16.0

type LookupProjectBigQueryExportArgs struct {
	BigQueryExportId string  `pulumi:"bigQueryExportId"`
	Project          *string `pulumi:"project"`
}

type LookupProjectBigQueryExportOutputArgs added in v0.16.0

type LookupProjectBigQueryExportOutputArgs struct {
	BigQueryExportId pulumi.StringInput    `pulumi:"bigQueryExportId"`
	Project          pulumi.StringPtrInput `pulumi:"project"`
}

func (LookupProjectBigQueryExportOutputArgs) ElementType added in v0.16.0

type LookupProjectBigQueryExportResult added in v0.16.0

type LookupProjectBigQueryExportResult struct {
	// The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
	CreateTime string `pulumi:"createTime"`
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset string `pulumi:"dataset"`
	// The description of the export (max of 1024 characters).
	Description string `pulumi:"description"`
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter string `pulumi:"filter"`
	// Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
	MostRecentEditor string `pulumi:"mostRecentEditor"`
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name string `pulumi:"name"`
	// The service account that needs permission to create table and upload data to the BigQuery dataset.
	Principal string `pulumi:"principal"`
	// The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupProjectBigQueryExport added in v0.16.0

func LookupProjectBigQueryExport(ctx *pulumi.Context, args *LookupProjectBigQueryExportArgs, opts ...pulumi.InvokeOption) (*LookupProjectBigQueryExportResult, error)

Gets a BigQuery export.

type LookupProjectBigQueryExportResultOutput added in v0.16.0

type LookupProjectBigQueryExportResultOutput struct{ *pulumi.OutputState }

func (LookupProjectBigQueryExportResultOutput) CreateTime added in v0.16.0

The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.

func (LookupProjectBigQueryExportResultOutput) Dataset added in v0.16.0

The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).

func (LookupProjectBigQueryExportResultOutput) Description added in v0.16.0

The description of the export (max of 1024 characters).

func (LookupProjectBigQueryExportResultOutput) ElementType added in v0.16.0

func (LookupProjectBigQueryExportResultOutput) Filter added in v0.16.0

Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (LookupProjectBigQueryExportResultOutput) MostRecentEditor added in v0.16.0

Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.

func (LookupProjectBigQueryExportResultOutput) Name added in v0.16.0

The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.

func (LookupProjectBigQueryExportResultOutput) Principal added in v0.16.0

The service account that needs permission to create table and upload data to the BigQuery dataset.

func (LookupProjectBigQueryExportResultOutput) ToLookupProjectBigQueryExportResultOutput added in v0.16.0

func (o LookupProjectBigQueryExportResultOutput) ToLookupProjectBigQueryExportResultOutput() LookupProjectBigQueryExportResultOutput

func (LookupProjectBigQueryExportResultOutput) ToLookupProjectBigQueryExportResultOutputWithContext added in v0.16.0

func (o LookupProjectBigQueryExportResultOutput) ToLookupProjectBigQueryExportResultOutputWithContext(ctx context.Context) LookupProjectBigQueryExportResultOutput

func (LookupProjectBigQueryExportResultOutput) UpdateTime added in v0.16.0

The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleArgs added in v0.32.0

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleArgs struct {
	CustomModuleId string  `pulumi:"customModuleId"`
	Project        *string `pulumi:"project"`
}

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleOutputArgs added in v0.32.0

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleOutputArgs struct {
	CustomModuleId pulumi.StringInput    `pulumi:"customModuleId"`
	Project        pulumi.StringPtrInput `pulumi:"project"`
}

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleOutputArgs) ElementType added in v0.32.0

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleResult added in v0.32.0

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleResult struct {
	// If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.
	AncestorModule string `pulumi:"ancestorModule"`
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigResponse `pulumi:"customConfig"`
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName string `pulumi:"displayName"`
	// The enablement state of the custom module.
	EnablementState string `pulumi:"enablementState"`
	// The editor that last updated the custom module.
	LastEditor string `pulumi:"lastEditor"`
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name string `pulumi:"name"`
	// The time at which the custom module was last updated.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupProjectSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

Retrieves a SecurityHealthAnalyticsCustomModule.

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput added in v0.32.0

type LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput struct{ *pulumi.OutputState }

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) AncestorModule added in v0.32.0

If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) CustomConfig added in v0.32.0

The user specified custom configuration for the module.

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) DisplayName added in v0.32.0

The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) ElementType added in v0.32.0

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) EnablementState added in v0.32.0

The enablement state of the custom module.

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) LastEditor added in v0.32.0

The editor that last updated the custom module.

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) Name added in v0.32.0

Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput added in v0.32.0

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutputWithContext added in v0.32.0

func (o LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) ToLookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutputWithContext(ctx context.Context) LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput

func (LookupProjectSecurityHealthAnalyticsSettingCustomModuleResultOutput) UpdateTime added in v0.32.0

The time at which the custom module was last updated.

type LookupSourceArgs added in v0.4.0

type LookupSourceArgs struct {
	OrganizationId string `pulumi:"organizationId"`
	SourceId       string `pulumi:"sourceId"`
}

type LookupSourceOutputArgs added in v0.8.0

type LookupSourceOutputArgs struct {
	OrganizationId pulumi.StringInput `pulumi:"organizationId"`
	SourceId       pulumi.StringInput `pulumi:"sourceId"`
}

func (LookupSourceOutputArgs) ElementType added in v0.8.0

func (LookupSourceOutputArgs) ElementType() reflect.Type

type LookupSourceResult added in v0.4.0

type LookupSourceResult struct {
	// The canonical name of the finding source. It's either "organizations/{organization_id}/sources/{source_id}", "folders/{folder_id}/sources/{source_id}", or "projects/{project_number}/sources/{source_id}", depending on the closest CRM ancestor of the resource associated with the finding.
	CanonicalName string `pulumi:"canonicalName"`
	// The description of the source (max of 1024 characters). Example: "Web Security Scanner is a web security scanner for common vulnerabilities in App Engine applications. It can automatically scan and detect four common vulnerabilities, including cross-site-scripting (XSS), Flash injection, mixed content (HTTP in HTTPS), and outdated or insecure libraries."
	Description string `pulumi:"description"`
	// The source's display name. A source's display name must be unique amongst its siblings, for example, two sources with the same parent can't share the same display name. The display name must have a length between 1 and 64 characters (inclusive).
	DisplayName string `pulumi:"displayName"`
	// The relative resource name of this source. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}"
	Name string `pulumi:"name"`
}

func LookupSource added in v0.4.0

func LookupSource(ctx *pulumi.Context, args *LookupSourceArgs, opts ...pulumi.InvokeOption) (*LookupSourceResult, error)

Gets a source.

type LookupSourceResultOutput added in v0.8.0

type LookupSourceResultOutput struct{ *pulumi.OutputState }

func LookupSourceOutput added in v0.8.0

func LookupSourceOutput(ctx *pulumi.Context, args LookupSourceOutputArgs, opts ...pulumi.InvokeOption) LookupSourceResultOutput

func (LookupSourceResultOutput) CanonicalName added in v0.8.0

func (o LookupSourceResultOutput) CanonicalName() pulumi.StringOutput

The canonical name of the finding source. It's either "organizations/{organization_id}/sources/{source_id}", "folders/{folder_id}/sources/{source_id}", or "projects/{project_number}/sources/{source_id}", depending on the closest CRM ancestor of the resource associated with the finding.

func (LookupSourceResultOutput) Description added in v0.8.0

The description of the source (max of 1024 characters). Example: "Web Security Scanner is a web security scanner for common vulnerabilities in App Engine applications. It can automatically scan and detect four common vulnerabilities, including cross-site-scripting (XSS), Flash injection, mixed content (HTTP in HTTPS), and outdated or insecure libraries."

func (LookupSourceResultOutput) DisplayName added in v0.8.0

The source's display name. A source's display name must be unique amongst its siblings, for example, two sources with the same parent can't share the same display name. The display name must have a length between 1 and 64 characters (inclusive).

func (LookupSourceResultOutput) ElementType added in v0.8.0

func (LookupSourceResultOutput) ElementType() reflect.Type

func (LookupSourceResultOutput) Name added in v0.8.0

The relative resource name of this source. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}"

func (LookupSourceResultOutput) ToLookupSourceResultOutput added in v0.8.0

func (o LookupSourceResultOutput) ToLookupSourceResultOutput() LookupSourceResultOutput

func (LookupSourceResultOutput) ToLookupSourceResultOutputWithContext added in v0.8.0

func (o LookupSourceResultOutput) ToLookupSourceResultOutputWithContext(ctx context.Context) LookupSourceResultOutput

type MuteConfig added in v0.9.0

type MuteConfig struct {
	pulumi.CustomResourceState

	// The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// A description of the mute config.
	Description pulumi.StringOutput `pulumi:"description"`
	// The human readable name to be displayed for the mute config.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`
	Filter pulumi.StringOutput `pulumi:"filter"`
	// Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.
	MostRecentEditor pulumi.StringOutput `pulumi:"mostRecentEditor"`
	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	MuteConfigId pulumi.StringOutput `pulumi:"muteConfigId"`
	// This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"
	Name    pulumi.StringOutput `pulumi:"name"`
	Project pulumi.StringOutput `pulumi:"project"`
	// The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a mute config. Auto-naming is currently not supported for this resource.

func GetMuteConfig added in v0.9.0

func GetMuteConfig(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *MuteConfigState, opts ...pulumi.ResourceOption) (*MuteConfig, error)

GetMuteConfig gets an existing MuteConfig resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewMuteConfig added in v0.9.0

func NewMuteConfig(ctx *pulumi.Context,
	name string, args *MuteConfigArgs, opts ...pulumi.ResourceOption) (*MuteConfig, error)

NewMuteConfig registers a new resource with the given unique name, arguments, and options.

func (*MuteConfig) ElementType added in v0.9.0

func (*MuteConfig) ElementType() reflect.Type

func (*MuteConfig) ToMuteConfigOutput added in v0.9.0

func (i *MuteConfig) ToMuteConfigOutput() MuteConfigOutput

func (*MuteConfig) ToMuteConfigOutputWithContext added in v0.9.0

func (i *MuteConfig) ToMuteConfigOutputWithContext(ctx context.Context) MuteConfigOutput

type MuteConfigArgs added in v0.9.0

type MuteConfigArgs struct {
	// A description of the mute config.
	Description pulumi.StringPtrInput
	// The human readable name to be displayed for the mute config.
	DisplayName pulumi.StringPtrInput
	// An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`
	Filter pulumi.StringInput
	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	MuteConfigId pulumi.StringInput
	// This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"
	Name    pulumi.StringPtrInput
	Project pulumi.StringPtrInput
}

The set of arguments for constructing a MuteConfig resource.

func (MuteConfigArgs) ElementType added in v0.9.0

func (MuteConfigArgs) ElementType() reflect.Type

type MuteConfigInput added in v0.9.0

type MuteConfigInput interface {
	pulumi.Input

	ToMuteConfigOutput() MuteConfigOutput
	ToMuteConfigOutputWithContext(ctx context.Context) MuteConfigOutput
}

type MuteConfigOutput added in v0.9.0

type MuteConfigOutput struct{ *pulumi.OutputState }

func (MuteConfigOutput) CreateTime added in v0.19.0

func (o MuteConfigOutput) CreateTime() pulumi.StringOutput

The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.

func (MuteConfigOutput) Description added in v0.19.0

func (o MuteConfigOutput) Description() pulumi.StringOutput

A description of the mute config.

func (MuteConfigOutput) DisplayName added in v0.19.0

func (o MuteConfigOutput) DisplayName() pulumi.StringOutput

The human readable name to be displayed for the mute config.

func (MuteConfigOutput) ElementType added in v0.9.0

func (MuteConfigOutput) ElementType() reflect.Type

func (MuteConfigOutput) Filter added in v0.19.0

An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`

func (MuteConfigOutput) MostRecentEditor added in v0.19.0

func (o MuteConfigOutput) MostRecentEditor() pulumi.StringOutput

Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.

func (MuteConfigOutput) MuteConfigId added in v0.21.0

func (o MuteConfigOutput) MuteConfigId() pulumi.StringOutput

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

func (MuteConfigOutput) Name added in v0.19.0

This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"

func (MuteConfigOutput) Project added in v0.21.0

func (o MuteConfigOutput) Project() pulumi.StringOutput

func (MuteConfigOutput) ToMuteConfigOutput added in v0.9.0

func (o MuteConfigOutput) ToMuteConfigOutput() MuteConfigOutput

func (MuteConfigOutput) ToMuteConfigOutputWithContext added in v0.9.0

func (o MuteConfigOutput) ToMuteConfigOutputWithContext(ctx context.Context) MuteConfigOutput

func (MuteConfigOutput) UpdateTime added in v0.19.0

func (o MuteConfigOutput) UpdateTime() pulumi.StringOutput

The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.

type MuteConfigState added in v0.9.0

type MuteConfigState struct {
}

func (MuteConfigState) ElementType added in v0.9.0

func (MuteConfigState) ElementType() reflect.Type

type NotificationConfig added in v0.3.0

type NotificationConfig struct {
	pulumi.CustomResourceState

	// Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.
	ConfigId pulumi.StringOutput `pulumi:"configId"`
	// The description of the notification config (max of 1024 characters).
	Description pulumi.StringOutput `pulumi:"description"`
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name    pulumi.StringOutput `pulumi:"name"`
	Project pulumi.StringOutput `pulumi:"project"`
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic pulumi.StringOutput `pulumi:"pubsubTopic"`
	// The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
	ServiceAccount pulumi.StringOutput `pulumi:"serviceAccount"`
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigResponseOutput `pulumi:"streamingConfig"`
}

Creates a notification config. Auto-naming is currently not supported for this resource.

func GetNotificationConfig added in v0.3.0

func GetNotificationConfig(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *NotificationConfigState, opts ...pulumi.ResourceOption) (*NotificationConfig, error)

GetNotificationConfig gets an existing NotificationConfig resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewNotificationConfig added in v0.3.0

func NewNotificationConfig(ctx *pulumi.Context,
	name string, args *NotificationConfigArgs, opts ...pulumi.ResourceOption) (*NotificationConfig, error)

NewNotificationConfig registers a new resource with the given unique name, arguments, and options.

func (*NotificationConfig) ElementType added in v0.3.0

func (*NotificationConfig) ElementType() reflect.Type

func (*NotificationConfig) ToNotificationConfigOutput added in v0.3.0

func (i *NotificationConfig) ToNotificationConfigOutput() NotificationConfigOutput

func (*NotificationConfig) ToNotificationConfigOutputWithContext added in v0.3.0

func (i *NotificationConfig) ToNotificationConfigOutputWithContext(ctx context.Context) NotificationConfigOutput

type NotificationConfigArgs added in v0.3.0

type NotificationConfigArgs struct {
	// Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.
	ConfigId pulumi.StringInput
	// The description of the notification config (max of 1024 characters).
	Description pulumi.StringPtrInput
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name    pulumi.StringPtrInput
	Project pulumi.StringPtrInput
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic pulumi.StringPtrInput
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigPtrInput
}

The set of arguments for constructing a NotificationConfig resource.

func (NotificationConfigArgs) ElementType added in v0.3.0

func (NotificationConfigArgs) ElementType() reflect.Type

type NotificationConfigInput added in v0.3.0

type NotificationConfigInput interface {
	pulumi.Input

	ToNotificationConfigOutput() NotificationConfigOutput
	ToNotificationConfigOutputWithContext(ctx context.Context) NotificationConfigOutput
}

type NotificationConfigOutput added in v0.3.0

type NotificationConfigOutput struct{ *pulumi.OutputState }

func (NotificationConfigOutput) ConfigId added in v0.21.0

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

func (NotificationConfigOutput) Description added in v0.19.0

The description of the notification config (max of 1024 characters).

func (NotificationConfigOutput) ElementType added in v0.3.0

func (NotificationConfigOutput) ElementType() reflect.Type

func (NotificationConfigOutput) Name added in v0.19.0

The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".

func (NotificationConfigOutput) Project added in v0.27.0

func (NotificationConfigOutput) PubsubTopic added in v0.19.0

The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".

func (NotificationConfigOutput) ServiceAccount added in v0.19.0

func (o NotificationConfigOutput) ServiceAccount() pulumi.StringOutput

The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.

func (NotificationConfigOutput) StreamingConfig added in v0.19.0

The config for triggering streaming-based notifications.

func (NotificationConfigOutput) ToNotificationConfigOutput added in v0.3.0

func (o NotificationConfigOutput) ToNotificationConfigOutput() NotificationConfigOutput

func (NotificationConfigOutput) ToNotificationConfigOutputWithContext added in v0.3.0

func (o NotificationConfigOutput) ToNotificationConfigOutputWithContext(ctx context.Context) NotificationConfigOutput

type NotificationConfigState added in v0.3.0

type NotificationConfigState struct {
}

func (NotificationConfigState) ElementType added in v0.3.0

func (NotificationConfigState) ElementType() reflect.Type

type OrganizationBigQueryExport added in v0.16.0

type OrganizationBigQueryExport struct {
	pulumi.CustomResourceState

	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	BigQueryExportId pulumi.StringOutput `pulumi:"bigQueryExportId"`
	// The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset pulumi.StringOutput `pulumi:"dataset"`
	// The description of the export (max of 1024 characters).
	Description pulumi.StringOutput `pulumi:"description"`
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter pulumi.StringOutput `pulumi:"filter"`
	// Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
	MostRecentEditor pulumi.StringOutput `pulumi:"mostRecentEditor"`
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name           pulumi.StringOutput `pulumi:"name"`
	OrganizationId pulumi.StringOutput `pulumi:"organizationId"`
	// The service account that needs permission to create table and upload data to the BigQuery dataset.
	Principal pulumi.StringOutput `pulumi:"principal"`
	// The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a BigQuery export.

func GetOrganizationBigQueryExport added in v0.16.0

func GetOrganizationBigQueryExport(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *OrganizationBigQueryExportState, opts ...pulumi.ResourceOption) (*OrganizationBigQueryExport, error)

GetOrganizationBigQueryExport gets an existing OrganizationBigQueryExport resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationBigQueryExport added in v0.16.0

func NewOrganizationBigQueryExport(ctx *pulumi.Context,
	name string, args *OrganizationBigQueryExportArgs, opts ...pulumi.ResourceOption) (*OrganizationBigQueryExport, error)

NewOrganizationBigQueryExport registers a new resource with the given unique name, arguments, and options.

func (*OrganizationBigQueryExport) ElementType added in v0.16.0

func (*OrganizationBigQueryExport) ElementType() reflect.Type

func (*OrganizationBigQueryExport) ToOrganizationBigQueryExportOutput added in v0.16.0

func (i *OrganizationBigQueryExport) ToOrganizationBigQueryExportOutput() OrganizationBigQueryExportOutput

func (*OrganizationBigQueryExport) ToOrganizationBigQueryExportOutputWithContext added in v0.16.0

func (i *OrganizationBigQueryExport) ToOrganizationBigQueryExportOutputWithContext(ctx context.Context) OrganizationBigQueryExportOutput

type OrganizationBigQueryExportArgs added in v0.16.0

type OrganizationBigQueryExportArgs struct {
	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	BigQueryExportId pulumi.StringInput
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset pulumi.StringPtrInput
	// The description of the export (max of 1024 characters).
	Description pulumi.StringPtrInput
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter pulumi.StringPtrInput
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name           pulumi.StringPtrInput
	OrganizationId pulumi.StringInput
}

The set of arguments for constructing a OrganizationBigQueryExport resource.

func (OrganizationBigQueryExportArgs) ElementType added in v0.16.0

type OrganizationBigQueryExportInput added in v0.16.0

type OrganizationBigQueryExportInput interface {
	pulumi.Input

	ToOrganizationBigQueryExportOutput() OrganizationBigQueryExportOutput
	ToOrganizationBigQueryExportOutputWithContext(ctx context.Context) OrganizationBigQueryExportOutput
}

type OrganizationBigQueryExportOutput added in v0.16.0

type OrganizationBigQueryExportOutput struct{ *pulumi.OutputState }

func (OrganizationBigQueryExportOutput) BigQueryExportId added in v0.21.0

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

func (OrganizationBigQueryExportOutput) CreateTime added in v0.19.0

The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.

func (OrganizationBigQueryExportOutput) Dataset added in v0.19.0

The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).

func (OrganizationBigQueryExportOutput) Description added in v0.19.0

The description of the export (max of 1024 characters).

func (OrganizationBigQueryExportOutput) ElementType added in v0.16.0

func (OrganizationBigQueryExportOutput) Filter added in v0.19.0

Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (OrganizationBigQueryExportOutput) MostRecentEditor added in v0.19.0

Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.

func (OrganizationBigQueryExportOutput) Name added in v0.19.0

The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.

func (OrganizationBigQueryExportOutput) OrganizationId added in v0.21.0

func (OrganizationBigQueryExportOutput) Principal added in v0.19.0

The service account that needs permission to create table and upload data to the BigQuery dataset.

func (OrganizationBigQueryExportOutput) ToOrganizationBigQueryExportOutput added in v0.16.0

func (o OrganizationBigQueryExportOutput) ToOrganizationBigQueryExportOutput() OrganizationBigQueryExportOutput

func (OrganizationBigQueryExportOutput) ToOrganizationBigQueryExportOutputWithContext added in v0.16.0

func (o OrganizationBigQueryExportOutput) ToOrganizationBigQueryExportOutputWithContext(ctx context.Context) OrganizationBigQueryExportOutput

func (OrganizationBigQueryExportOutput) UpdateTime added in v0.19.0

The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.

type OrganizationBigQueryExportState added in v0.16.0

type OrganizationBigQueryExportState struct {
}

func (OrganizationBigQueryExportState) ElementType added in v0.16.0

type OrganizationEventThreatDetectionSettingCustomModule added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModule struct {
	pulumi.CustomResourceState

	// Config for the module. For the resident module, its config value is defined at this level. For the inherited module, its config value is inherited from the ancestor module.
	Config pulumi.StringMapOutput `pulumi:"config"`
	// The description for the module.
	Description pulumi.StringOutput `pulumi:"description"`
	// The human readable name to be displayed for the module.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// The state of enablement for the module at the given level of the hierarchy.
	EnablementState pulumi.StringOutput `pulumi:"enablementState"`
	// The editor the module was last updated by.
	LastEditor pulumi.StringOutput `pulumi:"lastEditor"`
	// Immutable. The resource name of the Event Threat Detection custom module. Its format is: * "organizations/{organization}/eventThreatDetectionSettings/customModules/{module}". * "folders/{folder}/eventThreatDetectionSettings/customModules/{module}". * "projects/{project}/eventThreatDetectionSettings/customModules/{module}".
	Name           pulumi.StringOutput `pulumi:"name"`
	OrganizationId pulumi.StringOutput `pulumi:"organizationId"`
	// Type for the module. e.g. CONFIGURABLE_BAD_IP.
	Type pulumi.StringOutput `pulumi:"type"`
	// The time the module was last updated.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates an Event Threat Detection custom module. Auto-naming is currently not supported for this resource.

func GetOrganizationEventThreatDetectionSettingCustomModule added in v0.32.0

GetOrganizationEventThreatDetectionSettingCustomModule gets an existing OrganizationEventThreatDetectionSettingCustomModule resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationEventThreatDetectionSettingCustomModule added in v0.32.0

func NewOrganizationEventThreatDetectionSettingCustomModule(ctx *pulumi.Context,
	name string, args *OrganizationEventThreatDetectionSettingCustomModuleArgs, opts ...pulumi.ResourceOption) (*OrganizationEventThreatDetectionSettingCustomModule, error)

NewOrganizationEventThreatDetectionSettingCustomModule registers a new resource with the given unique name, arguments, and options.

func (*OrganizationEventThreatDetectionSettingCustomModule) ElementType added in v0.32.0

func (*OrganizationEventThreatDetectionSettingCustomModule) ToOrganizationEventThreatDetectionSettingCustomModuleOutput added in v0.32.0

func (i *OrganizationEventThreatDetectionSettingCustomModule) ToOrganizationEventThreatDetectionSettingCustomModuleOutput() OrganizationEventThreatDetectionSettingCustomModuleOutput

func (*OrganizationEventThreatDetectionSettingCustomModule) ToOrganizationEventThreatDetectionSettingCustomModuleOutputWithContext added in v0.32.0

func (i *OrganizationEventThreatDetectionSettingCustomModule) ToOrganizationEventThreatDetectionSettingCustomModuleOutputWithContext(ctx context.Context) OrganizationEventThreatDetectionSettingCustomModuleOutput

type OrganizationEventThreatDetectionSettingCustomModuleArgs added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleArgs struct {
	// Config for the module. For the resident module, its config value is defined at this level. For the inherited module, its config value is inherited from the ancestor module.
	Config pulumi.StringMapInput
	// The description for the module.
	Description pulumi.StringPtrInput
	// The human readable name to be displayed for the module.
	DisplayName pulumi.StringPtrInput
	// The state of enablement for the module at the given level of the hierarchy.
	EnablementState OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrInput
	// Immutable. The resource name of the Event Threat Detection custom module. Its format is: * "organizations/{organization}/eventThreatDetectionSettings/customModules/{module}". * "folders/{folder}/eventThreatDetectionSettings/customModules/{module}". * "projects/{project}/eventThreatDetectionSettings/customModules/{module}".
	Name           pulumi.StringPtrInput
	OrganizationId pulumi.StringInput
	// Type for the module. e.g. CONFIGURABLE_BAD_IP.
	Type pulumi.StringPtrInput
}

The set of arguments for constructing a OrganizationEventThreatDetectionSettingCustomModule resource.

func (OrganizationEventThreatDetectionSettingCustomModuleArgs) ElementType added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementState added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementState string

The state of enablement for the module at the given level of the hierarchy.

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ElementType added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (e OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutputWithContext(ctx context.Context) OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (e OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutputWithContext(ctx context.Context) OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToStringOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToStringOutputWithContext added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToStringPtrOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementState) ToStringPtrOutputWithContext added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStateInput added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStateInput interface {
	pulumi.Input

	ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput() OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput
	ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutputWithContext(context.Context) OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput
}

OrganizationEventThreatDetectionSettingCustomModuleEnablementStateInput is an input type that accepts OrganizationEventThreatDetectionSettingCustomModuleEnablementStateArgs and OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput values. You can construct a concrete instance of `OrganizationEventThreatDetectionSettingCustomModuleEnablementStateInput` via:

OrganizationEventThreatDetectionSettingCustomModuleEnablementStateArgs{...}

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput struct{ *pulumi.OutputState }

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ElementType added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (o OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutputWithContext(ctx context.Context) OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToStringOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToStringOutputWithContext added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToStringPtrOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStateOutput) ToStringPtrOutputWithContext added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrInput added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrInput interface {
	pulumi.Input

	ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput() OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput
	ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutputWithContext(context.Context) OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput
}

func OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtr added in v0.32.0

func OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtr(v string) OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrInput

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput struct{ *pulumi.OutputState }

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput) Elem added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput) ElementType added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput) ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutputWithContext added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleInput added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleInput interface {
	pulumi.Input

	ToOrganizationEventThreatDetectionSettingCustomModuleOutput() OrganizationEventThreatDetectionSettingCustomModuleOutput
	ToOrganizationEventThreatDetectionSettingCustomModuleOutputWithContext(ctx context.Context) OrganizationEventThreatDetectionSettingCustomModuleOutput
}

type OrganizationEventThreatDetectionSettingCustomModuleOutput added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleOutput struct{ *pulumi.OutputState }

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) Config added in v0.32.0

Config for the module. For the resident module, its config value is defined at this level. For the inherited module, its config value is inherited from the ancestor module.

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) Description added in v0.32.0

The description for the module.

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) DisplayName added in v0.32.0

The human readable name to be displayed for the module.

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) ElementType added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) EnablementState added in v0.32.0

The state of enablement for the module at the given level of the hierarchy.

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) LastEditor added in v0.32.0

The editor the module was last updated by.

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) Name added in v0.32.0

Immutable. The resource name of the Event Threat Detection custom module. Its format is: * "organizations/{organization}/eventThreatDetectionSettings/customModules/{module}". * "folders/{folder}/eventThreatDetectionSettings/customModules/{module}". * "projects/{project}/eventThreatDetectionSettings/customModules/{module}".

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) OrganizationId added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) ToOrganizationEventThreatDetectionSettingCustomModuleOutput added in v0.32.0

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) ToOrganizationEventThreatDetectionSettingCustomModuleOutputWithContext added in v0.32.0

func (o OrganizationEventThreatDetectionSettingCustomModuleOutput) ToOrganizationEventThreatDetectionSettingCustomModuleOutputWithContext(ctx context.Context) OrganizationEventThreatDetectionSettingCustomModuleOutput

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) Type added in v0.32.0

Type for the module. e.g. CONFIGURABLE_BAD_IP.

func (OrganizationEventThreatDetectionSettingCustomModuleOutput) UpdateTime added in v0.32.0

The time the module was last updated.

type OrganizationEventThreatDetectionSettingCustomModuleState added in v0.32.0

type OrganizationEventThreatDetectionSettingCustomModuleState struct {
}

func (OrganizationEventThreatDetectionSettingCustomModuleState) ElementType added in v0.32.0

type OrganizationMuteConfig added in v0.9.0

type OrganizationMuteConfig struct {
	pulumi.CustomResourceState

	// The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// A description of the mute config.
	Description pulumi.StringOutput `pulumi:"description"`
	// The human readable name to be displayed for the mute config.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`
	Filter pulumi.StringOutput `pulumi:"filter"`
	// Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.
	MostRecentEditor pulumi.StringOutput `pulumi:"mostRecentEditor"`
	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	MuteConfigId pulumi.StringOutput `pulumi:"muteConfigId"`
	// This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"
	Name           pulumi.StringOutput `pulumi:"name"`
	OrganizationId pulumi.StringOutput `pulumi:"organizationId"`
	// The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a mute config.

func GetOrganizationMuteConfig added in v0.9.0

func GetOrganizationMuteConfig(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *OrganizationMuteConfigState, opts ...pulumi.ResourceOption) (*OrganizationMuteConfig, error)

GetOrganizationMuteConfig gets an existing OrganizationMuteConfig resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationMuteConfig added in v0.9.0

func NewOrganizationMuteConfig(ctx *pulumi.Context,
	name string, args *OrganizationMuteConfigArgs, opts ...pulumi.ResourceOption) (*OrganizationMuteConfig, error)

NewOrganizationMuteConfig registers a new resource with the given unique name, arguments, and options.

func (*OrganizationMuteConfig) ElementType added in v0.9.0

func (*OrganizationMuteConfig) ElementType() reflect.Type

func (*OrganizationMuteConfig) ToOrganizationMuteConfigOutput added in v0.9.0

func (i *OrganizationMuteConfig) ToOrganizationMuteConfigOutput() OrganizationMuteConfigOutput

func (*OrganizationMuteConfig) ToOrganizationMuteConfigOutputWithContext added in v0.9.0

func (i *OrganizationMuteConfig) ToOrganizationMuteConfigOutputWithContext(ctx context.Context) OrganizationMuteConfigOutput

type OrganizationMuteConfigArgs added in v0.9.0

type OrganizationMuteConfigArgs struct {
	// A description of the mute config.
	Description pulumi.StringPtrInput
	// The human readable name to be displayed for the mute config.
	DisplayName pulumi.StringPtrInput
	// An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`
	Filter pulumi.StringInput
	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	MuteConfigId pulumi.StringInput
	// This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"
	Name           pulumi.StringPtrInput
	OrganizationId pulumi.StringInput
}

The set of arguments for constructing a OrganizationMuteConfig resource.

func (OrganizationMuteConfigArgs) ElementType added in v0.9.0

func (OrganizationMuteConfigArgs) ElementType() reflect.Type

type OrganizationMuteConfigInput added in v0.9.0

type OrganizationMuteConfigInput interface {
	pulumi.Input

	ToOrganizationMuteConfigOutput() OrganizationMuteConfigOutput
	ToOrganizationMuteConfigOutputWithContext(ctx context.Context) OrganizationMuteConfigOutput
}

type OrganizationMuteConfigOutput added in v0.9.0

type OrganizationMuteConfigOutput struct{ *pulumi.OutputState }

func (OrganizationMuteConfigOutput) CreateTime added in v0.19.0

The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation.

func (OrganizationMuteConfigOutput) Description added in v0.19.0

A description of the mute config.

func (OrganizationMuteConfigOutput) DisplayName added in v0.19.0

The human readable name to be displayed for the mute config.

func (OrganizationMuteConfigOutput) ElementType added in v0.9.0

func (OrganizationMuteConfigOutput) Filter added in v0.19.0

An expression that defines the filter to apply across create/update events of findings. While creating a filter string, be mindful of the scope in which the mute configuration is being created. E.g., If a filter contains project = X but is created under the project = Y scope, it might not match any findings. The following field and operator combinations are supported: * severity: `=`, `:` * category: `=`, `:` * resource.name: `=`, `:` * resource.project_name: `=`, `:` * resource.project_display_name: `=`, `:` * resource.folders.resource_folder: `=`, `:` * resource.parent_name: `=`, `:` * resource.parent_display_name: `=`, `:` * resource.type: `=`, `:` * finding_class: `=`, `:` * indicator.ip_addresses: `=`, `:` * indicator.domains: `=`, `:`

func (OrganizationMuteConfigOutput) MostRecentEditor added in v0.19.0

func (o OrganizationMuteConfigOutput) MostRecentEditor() pulumi.StringOutput

Email address of the user who last edited the mute config. This field is set by the server and will be ignored if provided on config creation or update.

func (OrganizationMuteConfigOutput) MuteConfigId added in v0.21.0

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

func (OrganizationMuteConfigOutput) Name added in v0.19.0

This field will be ignored if provided on config creation. Format "organizations/{organization}/muteConfigs/{mute_config}" "folders/{folder}/muteConfigs/{mute_config}" "projects/{project}/muteConfigs/{mute_config}" "organizations/{organization}/locations/global/muteConfigs/{mute_config}" "folders/{folder}/locations/global/muteConfigs/{mute_config}" "projects/{project}/locations/global/muteConfigs/{mute_config}"

func (OrganizationMuteConfigOutput) OrganizationId added in v0.21.0

func (OrganizationMuteConfigOutput) ToOrganizationMuteConfigOutput added in v0.9.0

func (o OrganizationMuteConfigOutput) ToOrganizationMuteConfigOutput() OrganizationMuteConfigOutput

func (OrganizationMuteConfigOutput) ToOrganizationMuteConfigOutputWithContext added in v0.9.0

func (o OrganizationMuteConfigOutput) ToOrganizationMuteConfigOutputWithContext(ctx context.Context) OrganizationMuteConfigOutput

func (OrganizationMuteConfigOutput) UpdateTime added in v0.19.0

The most recent time at which the mute config was updated. This field is set by the server and will be ignored if provided on config creation or update.

type OrganizationMuteConfigState added in v0.9.0

type OrganizationMuteConfigState struct {
}

func (OrganizationMuteConfigState) ElementType added in v0.9.0

type OrganizationNotificationConfig

type OrganizationNotificationConfig struct {
	pulumi.CustomResourceState

	// Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.
	ConfigId pulumi.StringOutput `pulumi:"configId"`
	// The description of the notification config (max of 1024 characters).
	Description pulumi.StringOutput `pulumi:"description"`
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name           pulumi.StringOutput `pulumi:"name"`
	OrganizationId pulumi.StringOutput `pulumi:"organizationId"`
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic pulumi.StringOutput `pulumi:"pubsubTopic"`
	// The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.
	ServiceAccount pulumi.StringOutput `pulumi:"serviceAccount"`
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigResponseOutput `pulumi:"streamingConfig"`
}

Creates a notification config.

func GetOrganizationNotificationConfig

func GetOrganizationNotificationConfig(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *OrganizationNotificationConfigState, opts ...pulumi.ResourceOption) (*OrganizationNotificationConfig, error)

GetOrganizationNotificationConfig gets an existing OrganizationNotificationConfig resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationNotificationConfig

func NewOrganizationNotificationConfig(ctx *pulumi.Context,
	name string, args *OrganizationNotificationConfigArgs, opts ...pulumi.ResourceOption) (*OrganizationNotificationConfig, error)

NewOrganizationNotificationConfig registers a new resource with the given unique name, arguments, and options.

func (*OrganizationNotificationConfig) ElementType

func (*OrganizationNotificationConfig) ToOrganizationNotificationConfigOutput

func (i *OrganizationNotificationConfig) ToOrganizationNotificationConfigOutput() OrganizationNotificationConfigOutput

func (*OrganizationNotificationConfig) ToOrganizationNotificationConfigOutputWithContext

func (i *OrganizationNotificationConfig) ToOrganizationNotificationConfigOutputWithContext(ctx context.Context) OrganizationNotificationConfigOutput

type OrganizationNotificationConfigArgs

type OrganizationNotificationConfigArgs struct {
	// Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.
	ConfigId pulumi.StringInput
	// The description of the notification config (max of 1024 characters).
	Description pulumi.StringPtrInput
	// The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".
	Name           pulumi.StringPtrInput
	OrganizationId pulumi.StringInput
	// The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".
	PubsubTopic pulumi.StringPtrInput
	// The config for triggering streaming-based notifications.
	StreamingConfig StreamingConfigPtrInput
}

The set of arguments for constructing a OrganizationNotificationConfig resource.

func (OrganizationNotificationConfigArgs) ElementType

type OrganizationNotificationConfigInput

type OrganizationNotificationConfigInput interface {
	pulumi.Input

	ToOrganizationNotificationConfigOutput() OrganizationNotificationConfigOutput
	ToOrganizationNotificationConfigOutputWithContext(ctx context.Context) OrganizationNotificationConfigOutput
}

type OrganizationNotificationConfigOutput

type OrganizationNotificationConfigOutput struct{ *pulumi.OutputState }

func (OrganizationNotificationConfigOutput) ConfigId added in v0.27.0

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

func (OrganizationNotificationConfigOutput) Description added in v0.27.0

The description of the notification config (max of 1024 characters).

func (OrganizationNotificationConfigOutput) ElementType

func (OrganizationNotificationConfigOutput) Name added in v0.27.0

The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".

func (OrganizationNotificationConfigOutput) OrganizationId added in v0.27.0

func (OrganizationNotificationConfigOutput) PubsubTopic added in v0.27.0

The Pub/Sub topic to send notifications to. Its format is "projects/[project_id]/topics/[topic]".

func (OrganizationNotificationConfigOutput) ServiceAccount added in v0.27.0

The service account that needs "pubsub.topics.publish" permission to publish to the Pub/Sub topic.

func (OrganizationNotificationConfigOutput) StreamingConfig added in v0.27.0

The config for triggering streaming-based notifications.

func (OrganizationNotificationConfigOutput) ToOrganizationNotificationConfigOutput

func (o OrganizationNotificationConfigOutput) ToOrganizationNotificationConfigOutput() OrganizationNotificationConfigOutput

func (OrganizationNotificationConfigOutput) ToOrganizationNotificationConfigOutputWithContext

func (o OrganizationNotificationConfigOutput) ToOrganizationNotificationConfigOutputWithContext(ctx context.Context) OrganizationNotificationConfigOutput

type OrganizationNotificationConfigState

type OrganizationNotificationConfigState struct {
}

func (OrganizationNotificationConfigState) ElementType

type OrganizationSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModule struct {
	pulumi.CustomResourceState

	// If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.
	AncestorModule pulumi.StringOutput `pulumi:"ancestorModule"`
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigResponseOutput `pulumi:"customConfig"`
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// The enablement state of the custom module.
	EnablementState pulumi.StringOutput `pulumi:"enablementState"`
	// The editor that last updated the custom module.
	LastEditor pulumi.StringOutput `pulumi:"lastEditor"`
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name           pulumi.StringOutput `pulumi:"name"`
	OrganizationId pulumi.StringOutput `pulumi:"organizationId"`
	// The time at which the custom module was last updated.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a resident SecurityHealthAnalyticsCustomModule at the scope of the given CRM parent, and also creates inherited SecurityHealthAnalyticsCustomModules for all CRM descendants of the given parent. These modules are enabled by default. Auto-naming is currently not supported for this resource.

func GetOrganizationSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

GetOrganizationSecurityHealthAnalyticsSettingCustomModule gets an existing OrganizationSecurityHealthAnalyticsSettingCustomModule resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

func NewOrganizationSecurityHealthAnalyticsSettingCustomModule(ctx *pulumi.Context,
	name string, args *OrganizationSecurityHealthAnalyticsSettingCustomModuleArgs, opts ...pulumi.ResourceOption) (*OrganizationSecurityHealthAnalyticsSettingCustomModule, error)

NewOrganizationSecurityHealthAnalyticsSettingCustomModule registers a new resource with the given unique name, arguments, and options.

func (*OrganizationSecurityHealthAnalyticsSettingCustomModule) ElementType added in v0.32.0

func (*OrganizationSecurityHealthAnalyticsSettingCustomModule) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

func (i *OrganizationSecurityHealthAnalyticsSettingCustomModule) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutput() OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput

func (*OrganizationSecurityHealthAnalyticsSettingCustomModule) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputWithContext added in v0.32.0

func (i *OrganizationSecurityHealthAnalyticsSettingCustomModule) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput

type OrganizationSecurityHealthAnalyticsSettingCustomModuleArgs added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleArgs struct {
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigPtrInput
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName pulumi.StringPtrInput
	// The enablement state of the custom module.
	EnablementState OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name           pulumi.StringPtrInput
	OrganizationId pulumi.StringInput
}

The set of arguments for constructing a OrganizationSecurityHealthAnalyticsSettingCustomModule resource.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleArgs) ElementType added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState string

The enablement state of the custom module.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ElementType added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (e OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(ctx context.Context) OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (e OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx context.Context) OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringOutputWithContext added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringPtrOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringPtrOutputWithContext added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput interface {
	pulumi.Input

	ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput() OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput
	ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(context.Context) OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput
}

OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput is an input type that accepts OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateArgs and OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput values. You can construct a concrete instance of `OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput` via:

OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateArgs{...}

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput struct{ *pulumi.OutputState }

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ElementType added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringOutputWithContext added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringPtrOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringPtrOutputWithContext added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput interface {
	pulumi.Input

	ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput() OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput
	ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(context.Context) OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput
}

func OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr added in v0.32.0

func OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr(v string) OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput struct{ *pulumi.OutputState }

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) Elem added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ElementType added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutputWithContext added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleInput added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleInput interface {
	pulumi.Input

	ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutput() OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput
	ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput
}

type OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput struct{ *pulumi.OutputState }

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) AncestorModule added in v0.32.0

If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) CustomConfig added in v0.32.0

The user specified custom configuration for the module.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) DisplayName added in v0.32.0

The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) ElementType added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) EnablementState added in v0.32.0

The enablement state of the custom module.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) LastEditor added in v0.32.0

The editor that last updated the custom module.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) Name added in v0.32.0

Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) OrganizationId added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputWithContext added in v0.32.0

func (o OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) ToOrganizationSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleOutput) UpdateTime added in v0.32.0

The time at which the custom module was last updated.

type OrganizationSecurityHealthAnalyticsSettingCustomModuleState added in v0.32.0

type OrganizationSecurityHealthAnalyticsSettingCustomModuleState struct {
}

func (OrganizationSecurityHealthAnalyticsSettingCustomModuleState) ElementType added in v0.32.0

type OrganizationSourceIamBinding added in v0.26.0

type OrganizationSourceIamBinding struct {
	pulumi.CustomResourceState

	// An IAM Condition for a given binding. See https://cloud.google.com/iam/docs/conditions-overview for additional details.
	Condition iam.ConditionPtrOutput `pulumi:"condition"`
	// The etag of the resource's IAM policy.
	Etag pulumi.StringOutput `pulumi:"etag"`
	// Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.
	Members pulumi.StringArrayOutput `pulumi:"members"`
	// The name of the resource to manage IAM policies for.
	Name pulumi.StringOutput `pulumi:"name"`
	// The project in which the resource belongs. If it is not provided, a default will be supplied.
	Project pulumi.StringOutput `pulumi:"project"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role pulumi.StringOutput `pulumi:"role"`
}

Sets the access control policy on the specified Source.

func GetOrganizationSourceIamBinding added in v0.26.0

func GetOrganizationSourceIamBinding(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *OrganizationSourceIamBindingState, opts ...pulumi.ResourceOption) (*OrganizationSourceIamBinding, error)

GetOrganizationSourceIamBinding gets an existing OrganizationSourceIamBinding resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationSourceIamBinding added in v0.26.0

func NewOrganizationSourceIamBinding(ctx *pulumi.Context,
	name string, args *OrganizationSourceIamBindingArgs, opts ...pulumi.ResourceOption) (*OrganizationSourceIamBinding, error)

NewOrganizationSourceIamBinding registers a new resource with the given unique name, arguments, and options.

func (*OrganizationSourceIamBinding) ElementType added in v0.26.0

func (*OrganizationSourceIamBinding) ElementType() reflect.Type

func (*OrganizationSourceIamBinding) ToOrganizationSourceIamBindingOutput added in v0.26.0

func (i *OrganizationSourceIamBinding) ToOrganizationSourceIamBindingOutput() OrganizationSourceIamBindingOutput

func (*OrganizationSourceIamBinding) ToOrganizationSourceIamBindingOutputWithContext added in v0.26.0

func (i *OrganizationSourceIamBinding) ToOrganizationSourceIamBindingOutputWithContext(ctx context.Context) OrganizationSourceIamBindingOutput

type OrganizationSourceIamBindingArgs added in v0.26.0

type OrganizationSourceIamBindingArgs struct {
	// An IAM Condition for a given binding.
	Condition iam.ConditionPtrInput
	// Identities that will be granted the privilege in role. Each entry can have one of the following values:
	//
	//  * user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
	//  * serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
	//  * group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
	//  * domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
	Members pulumi.StringArrayInput
	// The name of the resource to manage IAM policies for.
	Name pulumi.StringInput
	// The role that should be applied. Only one `IamBinding` can be used per role.
	Role pulumi.StringInput
}

The set of arguments for constructing a OrganizationSourceIamBinding resource.

func (OrganizationSourceIamBindingArgs) ElementType added in v0.26.0

type OrganizationSourceIamBindingInput added in v0.26.0

type OrganizationSourceIamBindingInput interface {
	pulumi.Input

	ToOrganizationSourceIamBindingOutput() OrganizationSourceIamBindingOutput
	ToOrganizationSourceIamBindingOutputWithContext(ctx context.Context) OrganizationSourceIamBindingOutput
}

type OrganizationSourceIamBindingOutput added in v0.26.0

type OrganizationSourceIamBindingOutput struct{ *pulumi.OutputState }

func (OrganizationSourceIamBindingOutput) Condition added in v0.26.0

An IAM Condition for a given binding. See https://cloud.google.com/iam/docs/conditions-overview for additional details.

func (OrganizationSourceIamBindingOutput) ElementType added in v0.26.0

func (OrganizationSourceIamBindingOutput) Etag added in v0.26.0

The etag of the resource's IAM policy.

func (OrganizationSourceIamBindingOutput) Members added in v0.26.0

Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.

func (OrganizationSourceIamBindingOutput) Name added in v0.26.0

The name of the resource to manage IAM policies for.

func (OrganizationSourceIamBindingOutput) Project added in v0.26.0

The project in which the resource belongs. If it is not provided, a default will be supplied.

func (OrganizationSourceIamBindingOutput) Role added in v0.26.0

Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.

func (OrganizationSourceIamBindingOutput) ToOrganizationSourceIamBindingOutput added in v0.26.0

func (o OrganizationSourceIamBindingOutput) ToOrganizationSourceIamBindingOutput() OrganizationSourceIamBindingOutput

func (OrganizationSourceIamBindingOutput) ToOrganizationSourceIamBindingOutputWithContext added in v0.26.0

func (o OrganizationSourceIamBindingOutput) ToOrganizationSourceIamBindingOutputWithContext(ctx context.Context) OrganizationSourceIamBindingOutput

type OrganizationSourceIamBindingState added in v0.26.0

type OrganizationSourceIamBindingState struct {
}

func (OrganizationSourceIamBindingState) ElementType added in v0.26.0

type OrganizationSourceIamMember added in v0.26.0

type OrganizationSourceIamMember struct {
	pulumi.CustomResourceState

	// An IAM Condition for a given binding. See https://cloud.google.com/iam/docs/conditions-overview for additional details.
	Condition iam.ConditionPtrOutput `pulumi:"condition"`
	// The etag of the resource's IAM policy.
	Etag pulumi.StringOutput `pulumi:"etag"`
	// Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.
	Member pulumi.StringOutput `pulumi:"member"`
	// The name of the resource to manage IAM policies for.
	Name pulumi.StringOutput `pulumi:"name"`
	// The project in which the resource belongs. If it is not provided, a default will be supplied.
	Project pulumi.StringOutput `pulumi:"project"`
	// Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
	Role pulumi.StringOutput `pulumi:"role"`
}

Sets the access control policy on the specified Source.

func GetOrganizationSourceIamMember added in v0.26.0

func GetOrganizationSourceIamMember(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *OrganizationSourceIamMemberState, opts ...pulumi.ResourceOption) (*OrganizationSourceIamMember, error)

GetOrganizationSourceIamMember gets an existing OrganizationSourceIamMember resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationSourceIamMember added in v0.26.0

func NewOrganizationSourceIamMember(ctx *pulumi.Context,
	name string, args *OrganizationSourceIamMemberArgs, opts ...pulumi.ResourceOption) (*OrganizationSourceIamMember, error)

NewOrganizationSourceIamMember registers a new resource with the given unique name, arguments, and options.

func (*OrganizationSourceIamMember) ElementType added in v0.26.0

func (*OrganizationSourceIamMember) ElementType() reflect.Type

func (*OrganizationSourceIamMember) ToOrganizationSourceIamMemberOutput added in v0.26.0

func (i *OrganizationSourceIamMember) ToOrganizationSourceIamMemberOutput() OrganizationSourceIamMemberOutput

func (*OrganizationSourceIamMember) ToOrganizationSourceIamMemberOutputWithContext added in v0.26.0

func (i *OrganizationSourceIamMember) ToOrganizationSourceIamMemberOutputWithContext(ctx context.Context) OrganizationSourceIamMemberOutput

type OrganizationSourceIamMemberArgs added in v0.26.0

type OrganizationSourceIamMemberArgs struct {
	// An IAM Condition for a given binding.
	Condition iam.ConditionPtrInput
	// Identity that will be granted the privilege in role. The entry can have one of the following values:
	//
	//  * user:{emailid}: An email address that represents a specific Google account. For example, alice@gmail.com or joe@example.com.
	//  * serviceAccount:{emailid}: An email address that represents a service account. For example, my-other-app@appspot.gserviceaccount.com.
	//  * group:{emailid}: An email address that represents a Google group. For example, admins@example.com.
	//  * domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
	Member pulumi.StringInput
	// The name of the resource to manage IAM policies for.
	Name pulumi.StringInput
	// The role that should be applied.
	Role pulumi.StringInput
}

The set of arguments for constructing a OrganizationSourceIamMember resource.

func (OrganizationSourceIamMemberArgs) ElementType added in v0.26.0

type OrganizationSourceIamMemberInput added in v0.26.0

type OrganizationSourceIamMemberInput interface {
	pulumi.Input

	ToOrganizationSourceIamMemberOutput() OrganizationSourceIamMemberOutput
	ToOrganizationSourceIamMemberOutputWithContext(ctx context.Context) OrganizationSourceIamMemberOutput
}

type OrganizationSourceIamMemberOutput added in v0.26.0

type OrganizationSourceIamMemberOutput struct{ *pulumi.OutputState }

func (OrganizationSourceIamMemberOutput) Condition added in v0.26.0

An IAM Condition for a given binding. See https://cloud.google.com/iam/docs/conditions-overview for additional details.

func (OrganizationSourceIamMemberOutput) ElementType added in v0.26.0

func (OrganizationSourceIamMemberOutput) Etag added in v0.26.0

The etag of the resource's IAM policy.

func (OrganizationSourceIamMemberOutput) Member added in v0.26.0

Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.

func (OrganizationSourceIamMemberOutput) Name added in v0.26.0

The name of the resource to manage IAM policies for.

func (OrganizationSourceIamMemberOutput) Project added in v0.26.0

The project in which the resource belongs. If it is not provided, a default will be supplied.

func (OrganizationSourceIamMemberOutput) Role added in v0.26.0

Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.

func (OrganizationSourceIamMemberOutput) ToOrganizationSourceIamMemberOutput added in v0.26.0

func (o OrganizationSourceIamMemberOutput) ToOrganizationSourceIamMemberOutput() OrganizationSourceIamMemberOutput

func (OrganizationSourceIamMemberOutput) ToOrganizationSourceIamMemberOutputWithContext added in v0.26.0

func (o OrganizationSourceIamMemberOutput) ToOrganizationSourceIamMemberOutputWithContext(ctx context.Context) OrganizationSourceIamMemberOutput

type OrganizationSourceIamMemberState added in v0.26.0

type OrganizationSourceIamMemberState struct {
}

func (OrganizationSourceIamMemberState) ElementType added in v0.26.0

type OrganizationSourceIamPolicy

type OrganizationSourceIamPolicy struct {
	pulumi.CustomResourceState

	// Specifies cloud audit logging configuration for this policy.
	AuditConfigs AuditConfigResponseArrayOutput `pulumi:"auditConfigs"`
	// Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
	Bindings BindingResponseArrayOutput `pulumi:"bindings"`
	// `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
	Etag           pulumi.StringOutput `pulumi:"etag"`
	OrganizationId pulumi.StringOutput `pulumi:"organizationId"`
	SourceId       pulumi.StringOutput `pulumi:"sourceId"`
	// Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Version pulumi.IntOutput `pulumi:"version"`
}

Sets the access control policy on the specified Source. Note - this resource's API doesn't support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

func GetOrganizationSourceIamPolicy

func GetOrganizationSourceIamPolicy(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *OrganizationSourceIamPolicyState, opts ...pulumi.ResourceOption) (*OrganizationSourceIamPolicy, error)

GetOrganizationSourceIamPolicy gets an existing OrganizationSourceIamPolicy resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewOrganizationSourceIamPolicy

func NewOrganizationSourceIamPolicy(ctx *pulumi.Context,
	name string, args *OrganizationSourceIamPolicyArgs, opts ...pulumi.ResourceOption) (*OrganizationSourceIamPolicy, error)

NewOrganizationSourceIamPolicy registers a new resource with the given unique name, arguments, and options.

func (*OrganizationSourceIamPolicy) ElementType

func (*OrganizationSourceIamPolicy) ElementType() reflect.Type

func (*OrganizationSourceIamPolicy) ToOrganizationSourceIamPolicyOutput

func (i *OrganizationSourceIamPolicy) ToOrganizationSourceIamPolicyOutput() OrganizationSourceIamPolicyOutput

func (*OrganizationSourceIamPolicy) ToOrganizationSourceIamPolicyOutputWithContext

func (i *OrganizationSourceIamPolicy) ToOrganizationSourceIamPolicyOutputWithContext(ctx context.Context) OrganizationSourceIamPolicyOutput

type OrganizationSourceIamPolicyArgs

type OrganizationSourceIamPolicyArgs struct {
	// Specifies cloud audit logging configuration for this policy.
	AuditConfigs AuditConfigArrayInput
	// Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.
	Bindings BindingArrayInput
	// `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.
	Etag           pulumi.StringPtrInput
	OrganizationId pulumi.StringInput
	SourceId       pulumi.StringInput
	// OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used: `paths: "bindings, etag"`
	UpdateMask pulumi.StringPtrInput
	// Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
	Version pulumi.IntPtrInput
}

The set of arguments for constructing a OrganizationSourceIamPolicy resource.

func (OrganizationSourceIamPolicyArgs) ElementType

type OrganizationSourceIamPolicyInput

type OrganizationSourceIamPolicyInput interface {
	pulumi.Input

	ToOrganizationSourceIamPolicyOutput() OrganizationSourceIamPolicyOutput
	ToOrganizationSourceIamPolicyOutputWithContext(ctx context.Context) OrganizationSourceIamPolicyOutput
}

type OrganizationSourceIamPolicyOutput

type OrganizationSourceIamPolicyOutput struct{ *pulumi.OutputState }

func (OrganizationSourceIamPolicyOutput) AuditConfigs added in v0.19.0

Specifies cloud audit logging configuration for this policy.

func (OrganizationSourceIamPolicyOutput) Bindings added in v0.19.0

Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.

func (OrganizationSourceIamPolicyOutput) ElementType

func (OrganizationSourceIamPolicyOutput) Etag added in v0.19.0

`etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.

func (OrganizationSourceIamPolicyOutput) OrganizationId added in v0.21.0

func (OrganizationSourceIamPolicyOutput) SourceId added in v0.21.0

func (OrganizationSourceIamPolicyOutput) ToOrganizationSourceIamPolicyOutput

func (o OrganizationSourceIamPolicyOutput) ToOrganizationSourceIamPolicyOutput() OrganizationSourceIamPolicyOutput

func (OrganizationSourceIamPolicyOutput) ToOrganizationSourceIamPolicyOutputWithContext

func (o OrganizationSourceIamPolicyOutput) ToOrganizationSourceIamPolicyOutputWithContext(ctx context.Context) OrganizationSourceIamPolicyOutput

func (OrganizationSourceIamPolicyOutput) Version added in v0.19.0

Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).

type OrganizationSourceIamPolicyState

type OrganizationSourceIamPolicyState struct {
}

func (OrganizationSourceIamPolicyState) ElementType

type ProjectBigQueryExport added in v0.16.0

type ProjectBigQueryExport struct {
	pulumi.CustomResourceState

	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	BigQueryExportId pulumi.StringOutput `pulumi:"bigQueryExportId"`
	// The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset pulumi.StringOutput `pulumi:"dataset"`
	// The description of the export (max of 1024 characters).
	Description pulumi.StringOutput `pulumi:"description"`
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter pulumi.StringOutput `pulumi:"filter"`
	// Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.
	MostRecentEditor pulumi.StringOutput `pulumi:"mostRecentEditor"`
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name pulumi.StringOutput `pulumi:"name"`
	// The service account that needs permission to create table and upload data to the BigQuery dataset.
	Principal pulumi.StringOutput `pulumi:"principal"`
	Project   pulumi.StringOutput `pulumi:"project"`
	// The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a BigQuery export. Auto-naming is currently not supported for this resource.

func GetProjectBigQueryExport added in v0.16.0

func GetProjectBigQueryExport(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *ProjectBigQueryExportState, opts ...pulumi.ResourceOption) (*ProjectBigQueryExport, error)

GetProjectBigQueryExport gets an existing ProjectBigQueryExport resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewProjectBigQueryExport added in v0.16.0

func NewProjectBigQueryExport(ctx *pulumi.Context,
	name string, args *ProjectBigQueryExportArgs, opts ...pulumi.ResourceOption) (*ProjectBigQueryExport, error)

NewProjectBigQueryExport registers a new resource with the given unique name, arguments, and options.

func (*ProjectBigQueryExport) ElementType added in v0.16.0

func (*ProjectBigQueryExport) ElementType() reflect.Type

func (*ProjectBigQueryExport) ToProjectBigQueryExportOutput added in v0.16.0

func (i *ProjectBigQueryExport) ToProjectBigQueryExportOutput() ProjectBigQueryExportOutput

func (*ProjectBigQueryExport) ToProjectBigQueryExportOutputWithContext added in v0.16.0

func (i *ProjectBigQueryExport) ToProjectBigQueryExportOutputWithContext(ctx context.Context) ProjectBigQueryExportOutput

type ProjectBigQueryExportArgs added in v0.16.0

type ProjectBigQueryExportArgs struct {
	// Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.
	BigQueryExportId pulumi.StringInput
	// The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
	Dataset pulumi.StringPtrInput
	// The description of the export (max of 1024 characters).
	Description pulumi.StringPtrInput
	// Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter pulumi.StringPtrInput
	// The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.
	Name    pulumi.StringPtrInput
	Project pulumi.StringPtrInput
}

The set of arguments for constructing a ProjectBigQueryExport resource.

func (ProjectBigQueryExportArgs) ElementType added in v0.16.0

func (ProjectBigQueryExportArgs) ElementType() reflect.Type

type ProjectBigQueryExportInput added in v0.16.0

type ProjectBigQueryExportInput interface {
	pulumi.Input

	ToProjectBigQueryExportOutput() ProjectBigQueryExportOutput
	ToProjectBigQueryExportOutputWithContext(ctx context.Context) ProjectBigQueryExportOutput
}

type ProjectBigQueryExportOutput added in v0.16.0

type ProjectBigQueryExportOutput struct{ *pulumi.OutputState }

func (ProjectBigQueryExportOutput) BigQueryExportId added in v0.21.0

func (o ProjectBigQueryExportOutput) BigQueryExportId() pulumi.StringOutput

Required. Unique identifier provided by the client within the parent scope. It must consist of only lowercase letters, numbers, and hyphens, must start with a letter, must end with either a letter or a number, and must be 63 characters or less.

func (ProjectBigQueryExportOutput) CreateTime added in v0.19.0

The time at which the BigQuery export was created. This field is set by the server and will be ignored if provided on export on creation.

func (ProjectBigQueryExportOutput) Dataset added in v0.19.0

The dataset to write findings' updates to. Its format is "projects/[project_id]/datasets/[bigquery_dataset_id]". BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).

func (ProjectBigQueryExportOutput) Description added in v0.19.0

The description of the export (max of 1024 characters).

func (ProjectBigQueryExportOutput) ElementType added in v0.16.0

func (ProjectBigQueryExportOutput) Filter added in v0.19.0

Expression that defines the filter to apply across create/update events of findings. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (ProjectBigQueryExportOutput) MostRecentEditor added in v0.19.0

func (o ProjectBigQueryExportOutput) MostRecentEditor() pulumi.StringOutput

Email address of the user who last edited the BigQuery export. This field is set by the server and will be ignored if provided on export creation or update.

func (ProjectBigQueryExportOutput) Name added in v0.19.0

The relative resource name of this export. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name. Example format: "organizations/{organization_id}/bigQueryExports/{export_id}" Example format: "folders/{folder_id}/bigQueryExports/{export_id}" Example format: "projects/{project_id}/bigQueryExports/{export_id}" This field is provided in responses, and is ignored when provided in create requests.

func (ProjectBigQueryExportOutput) Principal added in v0.19.0

The service account that needs permission to create table and upload data to the BigQuery dataset.

func (ProjectBigQueryExportOutput) Project added in v0.21.0

func (ProjectBigQueryExportOutput) ToProjectBigQueryExportOutput added in v0.16.0

func (o ProjectBigQueryExportOutput) ToProjectBigQueryExportOutput() ProjectBigQueryExportOutput

func (ProjectBigQueryExportOutput) ToProjectBigQueryExportOutputWithContext added in v0.16.0

func (o ProjectBigQueryExportOutput) ToProjectBigQueryExportOutputWithContext(ctx context.Context) ProjectBigQueryExportOutput

func (ProjectBigQueryExportOutput) UpdateTime added in v0.19.0

The most recent time at which the BigQuery export was updated. This field is set by the server and will be ignored if provided on export creation or update.

type ProjectBigQueryExportState added in v0.16.0

type ProjectBigQueryExportState struct {
}

func (ProjectBigQueryExportState) ElementType added in v0.16.0

func (ProjectBigQueryExportState) ElementType() reflect.Type

type ProjectSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModule struct {
	pulumi.CustomResourceState

	// If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.
	AncestorModule pulumi.StringOutput `pulumi:"ancestorModule"`
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigResponseOutput `pulumi:"customConfig"`
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// The enablement state of the custom module.
	EnablementState pulumi.StringOutput `pulumi:"enablementState"`
	// The editor that last updated the custom module.
	LastEditor pulumi.StringOutput `pulumi:"lastEditor"`
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name    pulumi.StringOutput `pulumi:"name"`
	Project pulumi.StringOutput `pulumi:"project"`
	// The time at which the custom module was last updated.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

Creates a resident SecurityHealthAnalyticsCustomModule at the scope of the given CRM parent, and also creates inherited SecurityHealthAnalyticsCustomModules for all CRM descendants of the given parent. These modules are enabled by default. Auto-naming is currently not supported for this resource.

func GetProjectSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

GetProjectSecurityHealthAnalyticsSettingCustomModule gets an existing ProjectSecurityHealthAnalyticsSettingCustomModule resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewProjectSecurityHealthAnalyticsSettingCustomModule added in v0.32.0

func NewProjectSecurityHealthAnalyticsSettingCustomModule(ctx *pulumi.Context,
	name string, args *ProjectSecurityHealthAnalyticsSettingCustomModuleArgs, opts ...pulumi.ResourceOption) (*ProjectSecurityHealthAnalyticsSettingCustomModule, error)

NewProjectSecurityHealthAnalyticsSettingCustomModule registers a new resource with the given unique name, arguments, and options.

func (*ProjectSecurityHealthAnalyticsSettingCustomModule) ElementType added in v0.32.0

func (*ProjectSecurityHealthAnalyticsSettingCustomModule) ToProjectSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

func (i *ProjectSecurityHealthAnalyticsSettingCustomModule) ToProjectSecurityHealthAnalyticsSettingCustomModuleOutput() ProjectSecurityHealthAnalyticsSettingCustomModuleOutput

func (*ProjectSecurityHealthAnalyticsSettingCustomModule) ToProjectSecurityHealthAnalyticsSettingCustomModuleOutputWithContext added in v0.32.0

func (i *ProjectSecurityHealthAnalyticsSettingCustomModule) ToProjectSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleOutput

type ProjectSecurityHealthAnalyticsSettingCustomModuleArgs added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleArgs struct {
	// The user specified custom configuration for the module.
	CustomConfig GoogleCloudSecuritycenterV1CustomConfigPtrInput
	// The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.
	DisplayName pulumi.StringPtrInput
	// The enablement state of the custom module.
	EnablementState ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput
	// Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.
	Name    pulumi.StringPtrInput
	Project pulumi.StringPtrInput
}

The set of arguments for constructing a ProjectSecurityHealthAnalyticsSettingCustomModule resource.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleArgs) ElementType added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState string

The enablement state of the custom module.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ElementType added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (e ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(ctx context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (e ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringOutputWithContext added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringPtrOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState) ToStringPtrOutputWithContext added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput interface {
	pulumi.Input

	ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput() ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput
	ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput
}

ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput is an input type that accepts ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateArgs and ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput values. You can construct a concrete instance of `ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateInput` via:

ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateArgs{...}

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput struct{ *pulumi.OutputState }

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ElementType added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext added in v0.32.0

func (o ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutputWithContext(ctx context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (o ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringOutputWithContext added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringPtrOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStateOutput) ToStringPtrOutputWithContext added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput interface {
	pulumi.Input

	ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput() ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput
	ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput
}

func ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr added in v0.32.0

func ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr(v string) ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrInput

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput struct{ *pulumi.OutputState }

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) Elem added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ElementType added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) ToStringPtrOutputWithContext added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleInput added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleInput interface {
	pulumi.Input

	ToProjectSecurityHealthAnalyticsSettingCustomModuleOutput() ProjectSecurityHealthAnalyticsSettingCustomModuleOutput
	ToProjectSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleOutput
}

type ProjectSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleOutput struct{ *pulumi.OutputState }

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) AncestorModule added in v0.32.0

If empty, indicates that the custom module was created in the organization, folder, or project in which you are viewing the custom module. Otherwise, `ancestor_module` specifies the organization or folder from which the custom module is inherited.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) CustomConfig added in v0.32.0

The user specified custom configuration for the module.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) DisplayName added in v0.32.0

The display name of the Security Health Analytics custom module. This display name becomes the finding category for all findings that are returned by this custom module. The display name must be between 1 and 128 characters, start with a lowercase letter, and contain alphanumeric characters or underscores only.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) ElementType added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) EnablementState added in v0.32.0

The enablement state of the custom module.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) LastEditor added in v0.32.0

The editor that last updated the custom module.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) Name added in v0.32.0

Immutable. The resource name of the custom module. Its format is "organizations/{organization}/securityHealthAnalyticsSettings/customModules/{customModule}", or "folders/{folder}/securityHealthAnalyticsSettings/customModules/{customModule}", or "projects/{project}/securityHealthAnalyticsSettings/customModules/{customModule}" The id {customModule} is server-generated and is not user settable. It will be a numeric id containing 1-20 digits.

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) Project added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleOutput added in v0.32.0

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleOutputWithContext added in v0.32.0

func (o ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) ToProjectSecurityHealthAnalyticsSettingCustomModuleOutputWithContext(ctx context.Context) ProjectSecurityHealthAnalyticsSettingCustomModuleOutput

func (ProjectSecurityHealthAnalyticsSettingCustomModuleOutput) UpdateTime added in v0.32.0

The time at which the custom module was last updated.

type ProjectSecurityHealthAnalyticsSettingCustomModuleState added in v0.32.0

type ProjectSecurityHealthAnalyticsSettingCustomModuleState struct {
}

func (ProjectSecurityHealthAnalyticsSettingCustomModuleState) ElementType added in v0.32.0

type Source added in v0.3.0

type Source struct {
	pulumi.CustomResourceState

	// The canonical name of the finding source. It's either "organizations/{organization_id}/sources/{source_id}", "folders/{folder_id}/sources/{source_id}", or "projects/{project_number}/sources/{source_id}", depending on the closest CRM ancestor of the resource associated with the finding.
	CanonicalName pulumi.StringOutput `pulumi:"canonicalName"`
	// The description of the source (max of 1024 characters). Example: "Web Security Scanner is a web security scanner for common vulnerabilities in App Engine applications. It can automatically scan and detect four common vulnerabilities, including cross-site-scripting (XSS), Flash injection, mixed content (HTTP in HTTPS), and outdated or insecure libraries."
	Description pulumi.StringOutput `pulumi:"description"`
	// The source's display name. A source's display name must be unique amongst its siblings, for example, two sources with the same parent can't share the same display name. The display name must have a length between 1 and 64 characters (inclusive).
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// The relative resource name of this source. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}"
	Name           pulumi.StringOutput `pulumi:"name"`
	OrganizationId pulumi.StringOutput `pulumi:"organizationId"`
}

Creates a source. Note - this resource's API doesn't support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

func GetSource added in v0.3.0

func GetSource(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *SourceState, opts ...pulumi.ResourceOption) (*Source, error)

GetSource gets an existing Source resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewSource added in v0.3.0

func NewSource(ctx *pulumi.Context,
	name string, args *SourceArgs, opts ...pulumi.ResourceOption) (*Source, error)

NewSource registers a new resource with the given unique name, arguments, and options.

func (*Source) ElementType added in v0.3.0

func (*Source) ElementType() reflect.Type

func (*Source) ToSourceOutput added in v0.3.0

func (i *Source) ToSourceOutput() SourceOutput

func (*Source) ToSourceOutputWithContext added in v0.3.0

func (i *Source) ToSourceOutputWithContext(ctx context.Context) SourceOutput

type SourceArgs added in v0.3.0

type SourceArgs struct {
	// The canonical name of the finding source. It's either "organizations/{organization_id}/sources/{source_id}", "folders/{folder_id}/sources/{source_id}", or "projects/{project_number}/sources/{source_id}", depending on the closest CRM ancestor of the resource associated with the finding.
	CanonicalName pulumi.StringPtrInput
	// The description of the source (max of 1024 characters). Example: "Web Security Scanner is a web security scanner for common vulnerabilities in App Engine applications. It can automatically scan and detect four common vulnerabilities, including cross-site-scripting (XSS), Flash injection, mixed content (HTTP in HTTPS), and outdated or insecure libraries."
	Description pulumi.StringPtrInput
	// The source's display name. A source's display name must be unique amongst its siblings, for example, two sources with the same parent can't share the same display name. The display name must have a length between 1 and 64 characters (inclusive).
	DisplayName pulumi.StringPtrInput
	// The relative resource name of this source. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}"
	Name           pulumi.StringPtrInput
	OrganizationId pulumi.StringInput
}

The set of arguments for constructing a Source resource.

func (SourceArgs) ElementType added in v0.3.0

func (SourceArgs) ElementType() reflect.Type

type SourceInput added in v0.3.0

type SourceInput interface {
	pulumi.Input

	ToSourceOutput() SourceOutput
	ToSourceOutputWithContext(ctx context.Context) SourceOutput
}

type SourceOutput added in v0.3.0

type SourceOutput struct{ *pulumi.OutputState }

func (SourceOutput) CanonicalName added in v0.19.0

func (o SourceOutput) CanonicalName() pulumi.StringOutput

The canonical name of the finding source. It's either "organizations/{organization_id}/sources/{source_id}", "folders/{folder_id}/sources/{source_id}", or "projects/{project_number}/sources/{source_id}", depending on the closest CRM ancestor of the resource associated with the finding.

func (SourceOutput) Description added in v0.19.0

func (o SourceOutput) Description() pulumi.StringOutput

The description of the source (max of 1024 characters). Example: "Web Security Scanner is a web security scanner for common vulnerabilities in App Engine applications. It can automatically scan and detect four common vulnerabilities, including cross-site-scripting (XSS), Flash injection, mixed content (HTTP in HTTPS), and outdated or insecure libraries."

func (SourceOutput) DisplayName added in v0.19.0

func (o SourceOutput) DisplayName() pulumi.StringOutput

The source's display name. A source's display name must be unique amongst its siblings, for example, two sources with the same parent can't share the same display name. The display name must have a length between 1 and 64 characters (inclusive).

func (SourceOutput) ElementType added in v0.3.0

func (SourceOutput) ElementType() reflect.Type

func (SourceOutput) Name added in v0.19.0

func (o SourceOutput) Name() pulumi.StringOutput

The relative resource name of this source. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/sources/{source_id}"

func (SourceOutput) OrganizationId added in v0.21.0

func (o SourceOutput) OrganizationId() pulumi.StringOutput

func (SourceOutput) ToSourceOutput added in v0.3.0

func (o SourceOutput) ToSourceOutput() SourceOutput

func (SourceOutput) ToSourceOutputWithContext added in v0.3.0

func (o SourceOutput) ToSourceOutputWithContext(ctx context.Context) SourceOutput

type SourceState added in v0.3.0

type SourceState struct {
}

func (SourceState) ElementType added in v0.3.0

func (SourceState) ElementType() reflect.Type

type StreamingConfig

type StreamingConfig struct {
	// Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter *string `pulumi:"filter"`
}

The config for streaming-based notifications, which send each event as soon as it is detected.

type StreamingConfigArgs

type StreamingConfigArgs struct {
	// Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter pulumi.StringPtrInput `pulumi:"filter"`
}

The config for streaming-based notifications, which send each event as soon as it is detected.

func (StreamingConfigArgs) ElementType

func (StreamingConfigArgs) ElementType() reflect.Type

func (StreamingConfigArgs) ToStreamingConfigOutput

func (i StreamingConfigArgs) ToStreamingConfigOutput() StreamingConfigOutput

func (StreamingConfigArgs) ToStreamingConfigOutputWithContext

func (i StreamingConfigArgs) ToStreamingConfigOutputWithContext(ctx context.Context) StreamingConfigOutput

func (StreamingConfigArgs) ToStreamingConfigPtrOutput

func (i StreamingConfigArgs) ToStreamingConfigPtrOutput() StreamingConfigPtrOutput

func (StreamingConfigArgs) ToStreamingConfigPtrOutputWithContext

func (i StreamingConfigArgs) ToStreamingConfigPtrOutputWithContext(ctx context.Context) StreamingConfigPtrOutput

type StreamingConfigInput

type StreamingConfigInput interface {
	pulumi.Input

	ToStreamingConfigOutput() StreamingConfigOutput
	ToStreamingConfigOutputWithContext(context.Context) StreamingConfigOutput
}

StreamingConfigInput is an input type that accepts StreamingConfigArgs and StreamingConfigOutput values. You can construct a concrete instance of `StreamingConfigInput` via:

StreamingConfigArgs{...}

type StreamingConfigOutput

type StreamingConfigOutput struct{ *pulumi.OutputState }

The config for streaming-based notifications, which send each event as soon as it is detected.

func (StreamingConfigOutput) ElementType

func (StreamingConfigOutput) ElementType() reflect.Type

func (StreamingConfigOutput) Filter

Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (StreamingConfigOutput) ToStreamingConfigOutput

func (o StreamingConfigOutput) ToStreamingConfigOutput() StreamingConfigOutput

func (StreamingConfigOutput) ToStreamingConfigOutputWithContext

func (o StreamingConfigOutput) ToStreamingConfigOutputWithContext(ctx context.Context) StreamingConfigOutput

func (StreamingConfigOutput) ToStreamingConfigPtrOutput

func (o StreamingConfigOutput) ToStreamingConfigPtrOutput() StreamingConfigPtrOutput

func (StreamingConfigOutput) ToStreamingConfigPtrOutputWithContext

func (o StreamingConfigOutput) ToStreamingConfigPtrOutputWithContext(ctx context.Context) StreamingConfigPtrOutput

type StreamingConfigPtrInput

type StreamingConfigPtrInput interface {
	pulumi.Input

	ToStreamingConfigPtrOutput() StreamingConfigPtrOutput
	ToStreamingConfigPtrOutputWithContext(context.Context) StreamingConfigPtrOutput
}

StreamingConfigPtrInput is an input type that accepts StreamingConfigArgs, StreamingConfigPtr and StreamingConfigPtrOutput values. You can construct a concrete instance of `StreamingConfigPtrInput` via:

        StreamingConfigArgs{...}

or:

        nil

type StreamingConfigPtrOutput

type StreamingConfigPtrOutput struct{ *pulumi.OutputState }

func (StreamingConfigPtrOutput) Elem

func (StreamingConfigPtrOutput) ElementType

func (StreamingConfigPtrOutput) ElementType() reflect.Type

func (StreamingConfigPtrOutput) Filter

Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (StreamingConfigPtrOutput) ToStreamingConfigPtrOutput

func (o StreamingConfigPtrOutput) ToStreamingConfigPtrOutput() StreamingConfigPtrOutput

func (StreamingConfigPtrOutput) ToStreamingConfigPtrOutputWithContext

func (o StreamingConfigPtrOutput) ToStreamingConfigPtrOutputWithContext(ctx context.Context) StreamingConfigPtrOutput

type StreamingConfigResponse

type StreamingConfigResponse struct {
	// Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.
	Filter string `pulumi:"filter"`
}

The config for streaming-based notifications, which send each event as soon as it is detected.

type StreamingConfigResponseOutput

type StreamingConfigResponseOutput struct{ *pulumi.OutputState }

The config for streaming-based notifications, which send each event as soon as it is detected.

func (StreamingConfigResponseOutput) ElementType

func (StreamingConfigResponseOutput) Filter

Expression that defines the filter to apply across create/update events of assets or findings as specified by the event type. The expression is a list of zero or more restrictions combined via logical operators `AND` and `OR`. Parentheses are supported, and `OR` has higher precedence than `AND`. Restrictions have the form ` ` and may have a `-` character in front of them to indicate negation. The fields map to those defined in the corresponding resource. The supported operators are: * `=` for all value types. * `>`, `<`, `>=`, `<=` for integer values. * `:`, meaning substring matching, for strings. The supported value types are: * string literals in quotes. * integer literals without quotes. * boolean literals `true` and `false` without quotes.

func (StreamingConfigResponseOutput) ToStreamingConfigResponseOutput

func (o StreamingConfigResponseOutput) ToStreamingConfigResponseOutput() StreamingConfigResponseOutput

func (StreamingConfigResponseOutput) ToStreamingConfigResponseOutputWithContext

func (o StreamingConfigResponseOutput) ToStreamingConfigResponseOutputWithContext(ctx context.Context) StreamingConfigResponseOutput

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL