SharedflowArgs

data class SharedflowArgs(val configBundle: Output<String>? = null, val detectMd5hash: Output<String>? = null, val name: Output<String>? = null, val orgId: Output<String>? = null) : ConvertibleToJava<SharedflowArgs>

You can combine policies and resources into a shared flow that you can consume from multiple API proxies, and even from other shared flows. Although it's like a proxy, a shared flow has no endpoint. It can be used only from an API proxy or shared flow that's in the same organization as the shared flow itself. To get more information about SharedFlow, see:

Import

SharedFlow can be imported using any of these accepted formats:

  • {{org_id}}/sharedflows/{{name}}

  • {{org_id}}/{{name}} When using the pulumi import command, SharedFlow can be imported using one of the formats above. For example:

$ pulumi import gcp:apigee/sharedflow:Sharedflow default {{org_id}}/sharedflows/{{name}}
$ pulumi import gcp:apigee/sharedflow:Sharedflow default {{org_id}}/{{name}}

Constructors

Link copied to clipboard
constructor(configBundle: Output<String>? = null, detectMd5hash: Output<String>? = null, name: Output<String>? = null, orgId: Output<String>? = null)

Properties

Link copied to clipboard
val configBundle: Output<String>? = null

Path to the config zip bundle.

Link copied to clipboard
val detectMd5hash: Output<String>? = null
Link copied to clipboard
val name: Output<String>? = null

The ID of the shared flow.

Link copied to clipboard
val orgId: Output<String>? = null

The Apigee Organization name associated with the Apigee instance.

Functions

Link copied to clipboard
open override fun toJava(): SharedflowArgs