import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Represents a feedback report from an Advanced API Security customer. * Manages customer feedback about ML models. * * To get more information about SecurityFeedback, see: * * * [API documentation](https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations.securityFeedback/create) * * How-to Guides * * [Create a SecurityFeedback](https://docs.cloud.google.com/apigee/docs/api-security/abuse-detection#exclude-traffic-from-abuse-detection) * * ## Example Usage * * ### Apigee Security Feedback Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const current = gcp.organizations.getClientConfig({}); * const apigeeNetwork = new gcp.compute.Network("apigee_network", {name: "apigee-network"}); * const apigeeRange = new gcp.compute.GlobalAddress("apigee_range", { * name: "apigee-range", * purpose: "VPC_PEERING", * addressType: "INTERNAL", * prefixLength: 16, * network: apigeeNetwork.id, * }); * const apigeeVpcConnection = new gcp.servicenetworking.Connection("apigee_vpc_connection", { * network: apigeeNetwork.id, * service: "servicenetworking.googleapis.com", * reservedPeeringRanges: [apigeeRange.name], * }); * const apigeeOrg = new gcp.apigee.Organization("apigee_org", { * analyticsRegion: "us-central1", * projectId: current.then(current => current.project), * authorizedNetwork: apigeeNetwork.id, * }, { * dependsOn: [apigeeVpcConnection], * }); * const apigeeOrgSecurityAddonsConfig = new gcp.apigee.AddonsConfig("apigee_org_security_addons_config", { * org: apigeeOrg.name, * addonsConfig: { * apiSecurityConfig: { * enabled: true, * }, * }, * }); * const securityFeedback = new gcp.apigee.SecurityFeedback("security_feedback", { * feedbackId: "my-feedback", * orgId: apigeeOrg.id, * displayName: "terraform test display name", * feedbackType: "EXCLUDED_DETECTION", * reason: "INTERNAL_SYSTEM", * comment: "terraform test comment", * feedbackContexts: [ * { * attribute: "ATTRIBUTE_ENVIRONMENTS", * values: [apigeeEnvironment.name], * }, * { * attribute: "ATTRIBUTE_IP_ADDRESS_RANGES", * values: [ * "10.0.0.0", * "172.16.0.0/12", * ], * }, * ], * }, { * dependsOn: [apigeeOrgSecurityAddonsConfig], * }); * ``` * * ## Import * * SecurityFeedback can be imported using any of these accepted formats: * * * `{{org_id}}/securityFeedback/{{feedback_id}}` * * `{{org_id}}/{{feedback_id}}` * * When using the `pulumi import` command, SecurityFeedback can be imported using one of the formats above. For example: * * ```sh * $ pulumi import gcp:apigee/securityFeedback:SecurityFeedback default {{org_id}}/securityFeedback/{{feedback_id}} * $ pulumi import gcp:apigee/securityFeedback:SecurityFeedback default {{org_id}}/{{feedback_id}} * ``` */ export declare class SecurityFeedback extends pulumi.CustomResource { /** * Get an existing SecurityFeedback resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SecurityFeedbackState, opts?: pulumi.CustomResourceOptions): SecurityFeedback; /** * Returns true if the given object is an instance of SecurityFeedback. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SecurityFeedback; /** * Optional text the user can provide for additional, unstructured context. */ readonly comment: pulumi.Output; /** * The time when this specific feedback id was created. */ readonly createTime: pulumi.Output; /** * The display name of the feedback. */ readonly displayName: pulumi.Output; /** * One or more attribute/value pairs for constraining the feedback. * Structure is documented below. */ readonly feedbackContexts: pulumi.Output; /** * Resource ID of the security feedback. */ readonly feedbackId: pulumi.Output; /** * The type of feedback being submitted. * Possible values are: `EXCLUDED_DETECTION`. */ readonly feedbackType: pulumi.Output; /** * Name of the security feedback resource, * in the format `organizations/{{org_name}}/securityFeedback/{{feedback_id}}`. */ readonly name: pulumi.Output; /** * The Apigee Organization associated with the Apigee Security Feedback, * in the format `organizations/{{org_name}}`. */ readonly orgId: pulumi.Output; /** * The reason for the feedback. * Possible values are: `INTERNAL_SYSTEM`, `NON_RISK_CLIENT`, `NAT`, `PENETRATION_TEST`, `OTHER`. */ readonly reason: pulumi.Output; /** * The time when this specific feedback id was updated. */ readonly updateTime: pulumi.Output; /** * Create a SecurityFeedback resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SecurityFeedbackArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SecurityFeedback resources. */ export interface SecurityFeedbackState { /** * Optional text the user can provide for additional, unstructured context. */ comment?: pulumi.Input; /** * The time when this specific feedback id was created. */ createTime?: pulumi.Input; /** * The display name of the feedback. */ displayName?: pulumi.Input; /** * One or more attribute/value pairs for constraining the feedback. * Structure is documented below. */ feedbackContexts?: pulumi.Input[]>; /** * Resource ID of the security feedback. */ feedbackId?: pulumi.Input; /** * The type of feedback being submitted. * Possible values are: `EXCLUDED_DETECTION`. */ feedbackType?: pulumi.Input; /** * Name of the security feedback resource, * in the format `organizations/{{org_name}}/securityFeedback/{{feedback_id}}`. */ name?: pulumi.Input; /** * The Apigee Organization associated with the Apigee Security Feedback, * in the format `organizations/{{org_name}}`. */ orgId?: pulumi.Input; /** * The reason for the feedback. * Possible values are: `INTERNAL_SYSTEM`, `NON_RISK_CLIENT`, `NAT`, `PENETRATION_TEST`, `OTHER`. */ reason?: pulumi.Input; /** * The time when this specific feedback id was updated. */ updateTime?: pulumi.Input; } /** * The set of arguments for constructing a SecurityFeedback resource. */ export interface SecurityFeedbackArgs { /** * Optional text the user can provide for additional, unstructured context. */ comment?: pulumi.Input; /** * The display name of the feedback. */ displayName?: pulumi.Input; /** * One or more attribute/value pairs for constraining the feedback. * Structure is documented below. */ feedbackContexts: pulumi.Input[]>; /** * Resource ID of the security feedback. */ feedbackId: pulumi.Input; /** * The type of feedback being submitted. * Possible values are: `EXCLUDED_DETECTION`. */ feedbackType: pulumi.Input; /** * The Apigee Organization associated with the Apigee Security Feedback, * in the format `organizations/{{org_name}}`. */ orgId: pulumi.Input; /** * The reason for the feedback. * Possible values are: `INTERNAL_SYSTEM`, `NON_RISK_CLIENT`, `NAT`, `PENETRATION_TEST`, `OTHER`. */ reason?: pulumi.Input; }