Viewing docs for Cloudflare v6.20.0
published on Tuesday, Aug 25, 2026 by Pulumi
published on Tuesday, Aug 25, 2026 by Pulumi
Viewing docs for Cloudflare v6.20.0
published on Tuesday, Aug 25, 2026 by Pulumi
published on Tuesday, Aug 25, 2026 by Pulumi
Accepted Permissions
MCP Portals ReadMCP Portals Write
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustAccessAiControlsMcpServers = cloudflare.getZeroTrustAccessAiControlsMcpServers({
accountId: "a86a8f5c339544d7bdc89926de14fb8c",
search: "search",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_access_ai_controls_mcp_servers = cloudflare.get_zero_trust_access_ai_controls_mcp_servers(account_id="a86a8f5c339544d7bdc89926de14fb8c",
search="search")
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.GetZeroTrustAccessAiControlsMcpServers(ctx, &cloudflare.LookupZeroTrustAccessAiControlsMcpServersArgs{
AccountId: pulumi.StringRef("a86a8f5c339544d7bdc89926de14fb8c"),
Search: pulumi.StringRef("search"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleZeroTrustAccessAiControlsMcpServers = Cloudflare.GetZeroTrustAccessAiControlsMcpServers.Invoke(new()
{
AccountId = "a86a8f5c339544d7bdc89926de14fb8c",
Search = "search",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.CloudflareFunctions;
import com.pulumi.cloudflare.inputs.GetZeroTrustAccessAiControlsMcpServersArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var exampleZeroTrustAccessAiControlsMcpServers = CloudflareFunctions.getZeroTrustAccessAiControlsMcpServers(GetZeroTrustAccessAiControlsMcpServersArgs.builder()
.accountId("a86a8f5c339544d7bdc89926de14fb8c")
.search("search")
.build());
}
}
variables:
exampleZeroTrustAccessAiControlsMcpServers:
fn::invoke:
function: cloudflare:getZeroTrustAccessAiControlsMcpServers
arguments:
accountId: a86a8f5c339544d7bdc89926de14fb8c
search: search
pulumi {
required_providers {
cloudflare = {
source = "pulumi/cloudflare"
}
}
}
data "cloudflare_getzerotrustaccessaicontrolsmcpservers" "exampleZeroTrustAccessAiControlsMcpServers" {
account_id = "a86a8f5c339544d7bdc89926de14fb8c"
search = "search"
}
Using getZeroTrustAccessAiControlsMcpServers
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getZeroTrustAccessAiControlsMcpServers(args: GetZeroTrustAccessAiControlsMcpServersArgs, opts?: InvokeOptions): Promise<GetZeroTrustAccessAiControlsMcpServersResult>
function getZeroTrustAccessAiControlsMcpServersOutput(args: GetZeroTrustAccessAiControlsMcpServersOutputArgs, opts?: InvokeOutputOptions): Output<GetZeroTrustAccessAiControlsMcpServersResult>def get_zero_trust_access_ai_controls_mcp_servers(account_id: Optional[str] = None,
max_items: Optional[int] = None,
search: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetZeroTrustAccessAiControlsMcpServersResult
def get_zero_trust_access_ai_controls_mcp_servers_output(account_id: pulumi.Input[Optional[str]] = None,
max_items: pulumi.Input[Optional[int]] = None,
search: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetZeroTrustAccessAiControlsMcpServersResult]func LookupZeroTrustAccessAiControlsMcpServers(ctx *Context, args *LookupZeroTrustAccessAiControlsMcpServersArgs, opts ...InvokeOption) (*LookupZeroTrustAccessAiControlsMcpServersResult, error)
func LookupZeroTrustAccessAiControlsMcpServersOutput(ctx *Context, args *LookupZeroTrustAccessAiControlsMcpServersOutputArgs, opts ...InvokeOption) LookupZeroTrustAccessAiControlsMcpServersResultOutput> Note: This function is named LookupZeroTrustAccessAiControlsMcpServers in the Go SDK.
public static class GetZeroTrustAccessAiControlsMcpServers
{
public static Task<GetZeroTrustAccessAiControlsMcpServersResult> InvokeAsync(GetZeroTrustAccessAiControlsMcpServersArgs args, InvokeOptions? opts = null)
public static Output<GetZeroTrustAccessAiControlsMcpServersResult> Invoke(GetZeroTrustAccessAiControlsMcpServersInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetZeroTrustAccessAiControlsMcpServersResult> Invoke(GetZeroTrustAccessAiControlsMcpServersInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetZeroTrustAccessAiControlsMcpServersResult> getZeroTrustAccessAiControlsMcpServers(GetZeroTrustAccessAiControlsMcpServersArgs args, InvokeOptions options)
public static Output<GetZeroTrustAccessAiControlsMcpServersResult> getZeroTrustAccessAiControlsMcpServers(GetZeroTrustAccessAiControlsMcpServersArgs args, InvokeOptions options)
public static Output<GetZeroTrustAccessAiControlsMcpServersResult> getZeroTrustAccessAiControlsMcpServers(GetZeroTrustAccessAiControlsMcpServersArgs args, InvokeOutputOptions options)
fn::invoke:
function: cloudflare:index/getZeroTrustAccessAiControlsMcpServers:getZeroTrustAccessAiControlsMcpServers
arguments:
# arguments dictionarydata "cloudflare_get_zero_trust_access_ai_controls_mcp_servers" "name" {
# arguments
}The following arguments are supported:
- account_
id string - max_
items number - Max items to fetch, default: 1000
- search string
- Search by id, name
- account_
id str - max_
items int - Max items to fetch, default: 1000
- search str
- Search by id, name
getZeroTrustAccessAiControlsMcpServers Result
The following output properties are available:
- Results
List<Get
Zero Trust Access Ai Controls Mcp Servers Result> - The items returned by the data source
- Account
Id string - Max
Items int - Max items to fetch, default: 1000
- Search string
- Search by id, name
- Results
[]Get
Zero Trust Access Ai Controls Mcp Servers Result - The items returned by the data source
- Account
Id string - Max
Items int - Max items to fetch, default: 1000
- Search string
- Search by id, name
- results list(object)
- The items returned by the data source
- account_
id string - max_
items number - Max items to fetch, default: 1000
- search string
- Search by id, name
- results
List<Get
Zero Trust Access Ai Controls Mcp Servers Result> - The items returned by the data source
- account
Id String - max
Items Integer - Max items to fetch, default: 1000
- search String
- Search by id, name
- results
Get
Zero Trust Access Ai Controls Mcp Servers Result[] - The items returned by the data source
- account
Id string - max
Items number - Max items to fetch, default: 1000
- search string
- Search by id, name
- results
Sequence[Get
Zero Trust Access Ai Controls Mcp Servers Result] - The items returned by the data source
- account_
id str - max_
items int - Max items to fetch, default: 1000
- search str
- Search by id, name
- results List<Property Map>
- The items returned by the data source
- account
Id String - max
Items Number - Max items to fetch, default: 1000
- search String
- Search by id, name
Supporting Types
GetZeroTrustAccessAiControlsMcpServersResult
- Auth
Config GetSummary Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary - Safe subset of authcredentials surfaced to the dashboard. Includes authmode (dcr|manual), hasclientsecret, clientsecretversion, and the OAuth endpoints + client*id for manual servers. Never includes the secret value.
- Auth
Type string - Authentication method used to connect to the upstream MCP server. Available values: "oauth", "bearer", "unauthenticated".
- Authentication
Status string - Whether administrative authentication is required before capabilities can be synced. Manual OAuth is user-managed and has no administrative authentication flow. Available values: "notRequired", "required", "connected", "stale", "manual".
- Created
At string - Created
By string - Description string
- Optional description of the MCP server.
- Error string
- Error
Details GetZero Trust Access Ai Controls Mcp Servers Result Error Details - Hostname string
- URL of the upstream MCP endpoint.
- Id string
- Unique identifier for the MCP server.
- bool
- When true, the gateway worker uses the shared Cloudflare-owned OAuth callback endpoint as the redirectUri for upstream on-behalf OAuth, instead of the customer portal hostname. New public server creates default to true; existing servers default to false from migration until explicitly updated. Effective behavior is gated by the gateway worker's per-env rollout mode KV key.
- Last
Successful stringSync - Last
Synced string - Modified
At string - Modified
By string - Name string
- Display name for the MCP server.
- Prompts
List<Immutable
Dictionary<string, string>> - Secure
Web boolGateway - Route outbound traffic to this MCP server through Zero Trust Secure Web Gateway.
- Status string
- Current sync state of the server Available values: "waiting", "ready", "stale", "error".
- Tools
List<Immutable
Dictionary<string, string>> - Updated
Prompts List<GetZero Trust Access Ai Controls Mcp Servers Result Updated Prompt> - Server-wide prompt capability overrides.
- Updated
Tools List<GetZero Trust Access Ai Controls Mcp Servers Result Updated Tool> - Server-wide tool capability overrides.
- Auth
Config GetSummary Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary - Safe subset of authcredentials surfaced to the dashboard. Includes authmode (dcr|manual), hasclientsecret, clientsecretversion, and the OAuth endpoints + client*id for manual servers. Never includes the secret value.
- Auth
Type string - Authentication method used to connect to the upstream MCP server. Available values: "oauth", "bearer", "unauthenticated".
- Authentication
Status string - Whether administrative authentication is required before capabilities can be synced. Manual OAuth is user-managed and has no administrative authentication flow. Available values: "notRequired", "required", "connected", "stale", "manual".
- Created
At string - Created
By string - Description string
- Optional description of the MCP server.
- Error string
- Error
Details GetZero Trust Access Ai Controls Mcp Servers Result Error Details - Hostname string
- URL of the upstream MCP endpoint.
- Id string
- Unique identifier for the MCP server.
- bool
- When true, the gateway worker uses the shared Cloudflare-owned OAuth callback endpoint as the redirectUri for upstream on-behalf OAuth, instead of the customer portal hostname. New public server creates default to true; existing servers default to false from migration until explicitly updated. Effective behavior is gated by the gateway worker's per-env rollout mode KV key.
- Last
Successful stringSync - Last
Synced string - Modified
At string - Modified
By string - Name string
- Display name for the MCP server.
- Prompts []map[string]string
- Secure
Web boolGateway - Route outbound traffic to this MCP server through Zero Trust Secure Web Gateway.
- Status string
- Current sync state of the server Available values: "waiting", "ready", "stale", "error".
- Tools []map[string]string
- Updated
Prompts []GetZero Trust Access Ai Controls Mcp Servers Result Updated Prompt - Server-wide prompt capability overrides.
- Updated
Tools []GetZero Trust Access Ai Controls Mcp Servers Result Updated Tool - Server-wide tool capability overrides.
- auth_
config_ objectsummary - Safe subset of authcredentials surfaced to the dashboard. Includes authmode (dcr|manual), hasclientsecret, clientsecretversion, and the OAuth endpoints + client*id for manual servers. Never includes the secret value.
- auth_
type string - Authentication method used to connect to the upstream MCP server. Available values: "oauth", "bearer", "unauthenticated".
- authentication_
status string - Whether administrative authentication is required before capabilities can be synced. Manual OAuth is user-managed and has no administrative authentication flow. Available values: "notRequired", "required", "connected", "stale", "manual".
- created_
at string - created_
by string - description string
- Optional description of the MCP server.
- error string
- error_
details object - hostname string
- URL of the upstream MCP endpoint.
- id string
- Unique identifier for the MCP server.
- bool
- When true, the gateway worker uses the shared Cloudflare-owned OAuth callback endpoint as the redirectUri for upstream on-behalf OAuth, instead of the customer portal hostname. New public server creates default to true; existing servers default to false from migration until explicitly updated. Effective behavior is gated by the gateway worker's per-env rollout mode KV key.
- last_
successful_ stringsync - last_
synced string - modified_
at string - modified_
by string - name string
- Display name for the MCP server.
- prompts list(map(string))
- secure_
web_ boolgateway - Route outbound traffic to this MCP server through Zero Trust Secure Web Gateway.
- status string
- Current sync state of the server Available values: "waiting", "ready", "stale", "error".
- tools list(map(string))
- updated_
prompts list(object) - Server-wide prompt capability overrides.
- updated_
tools list(object) - Server-wide tool capability overrides.
- auth
Config GetSummary Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary - Safe subset of authcredentials surfaced to the dashboard. Includes authmode (dcr|manual), hasclientsecret, clientsecretversion, and the OAuth endpoints + client*id for manual servers. Never includes the secret value.
- auth
Type String - Authentication method used to connect to the upstream MCP server. Available values: "oauth", "bearer", "unauthenticated".
- authentication
Status String - Whether administrative authentication is required before capabilities can be synced. Manual OAuth is user-managed and has no administrative authentication flow. Available values: "notRequired", "required", "connected", "stale", "manual".
- created
At String - created
By String - description String
- Optional description of the MCP server.
- error String
- error
Details GetZero Trust Access Ai Controls Mcp Servers Result Error Details - hostname String
- URL of the upstream MCP endpoint.
- id String
- Unique identifier for the MCP server.
- Boolean
- When true, the gateway worker uses the shared Cloudflare-owned OAuth callback endpoint as the redirectUri for upstream on-behalf OAuth, instead of the customer portal hostname. New public server creates default to true; existing servers default to false from migration until explicitly updated. Effective behavior is gated by the gateway worker's per-env rollout mode KV key.
- last
Successful StringSync - last
Synced String - modified
At String - modified
By String - name String
- Display name for the MCP server.
- prompts List<Map<String,String>>
- secure
Web BooleanGateway - Route outbound traffic to this MCP server through Zero Trust Secure Web Gateway.
- status String
- Current sync state of the server Available values: "waiting", "ready", "stale", "error".
- tools List<Map<String,String>>
- updated
Prompts List<GetZero Trust Access Ai Controls Mcp Servers Result Updated Prompt> - Server-wide prompt capability overrides.
- updated
Tools List<GetZero Trust Access Ai Controls Mcp Servers Result Updated Tool> - Server-wide tool capability overrides.
- auth
Config GetSummary Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary - Safe subset of authcredentials surfaced to the dashboard. Includes authmode (dcr|manual), hasclientsecret, clientsecretversion, and the OAuth endpoints + client*id for manual servers. Never includes the secret value.
- auth
Type string - Authentication method used to connect to the upstream MCP server. Available values: "oauth", "bearer", "unauthenticated".
- authentication
Status string - Whether administrative authentication is required before capabilities can be synced. Manual OAuth is user-managed and has no administrative authentication flow. Available values: "notRequired", "required", "connected", "stale", "manual".
- created
At string - created
By string - description string
- Optional description of the MCP server.
- error string
- error
Details GetZero Trust Access Ai Controls Mcp Servers Result Error Details - hostname string
- URL of the upstream MCP endpoint.
- id string
- Unique identifier for the MCP server.
- boolean
- When true, the gateway worker uses the shared Cloudflare-owned OAuth callback endpoint as the redirectUri for upstream on-behalf OAuth, instead of the customer portal hostname. New public server creates default to true; existing servers default to false from migration until explicitly updated. Effective behavior is gated by the gateway worker's per-env rollout mode KV key.
- last
Successful stringSync - last
Synced string - modified
At string - modified
By string - name string
- Display name for the MCP server.
- prompts {[key: string]: string}[]
- secure
Web booleanGateway - Route outbound traffic to this MCP server through Zero Trust Secure Web Gateway.
- status string
- Current sync state of the server Available values: "waiting", "ready", "stale", "error".
- tools {[key: string]: string}[]
- updated
Prompts GetZero Trust Access Ai Controls Mcp Servers Result Updated Prompt[] - Server-wide prompt capability overrides.
- updated
Tools GetZero Trust Access Ai Controls Mcp Servers Result Updated Tool[] - Server-wide tool capability overrides.
- auth_
config_ Getsummary Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary - Safe subset of authcredentials surfaced to the dashboard. Includes authmode (dcr|manual), hasclientsecret, clientsecretversion, and the OAuth endpoints + client*id for manual servers. Never includes the secret value.
- auth_
type str - Authentication method used to connect to the upstream MCP server. Available values: "oauth", "bearer", "unauthenticated".
- authentication_
status str - Whether administrative authentication is required before capabilities can be synced. Manual OAuth is user-managed and has no administrative authentication flow. Available values: "notRequired", "required", "connected", "stale", "manual".
- created_
at str - created_
by str - description str
- Optional description of the MCP server.
- error str
- error_
details GetZero Trust Access Ai Controls Mcp Servers Result Error Details - hostname str
- URL of the upstream MCP endpoint.
- id str
- Unique identifier for the MCP server.
- bool
- When true, the gateway worker uses the shared Cloudflare-owned OAuth callback endpoint as the redirectUri for upstream on-behalf OAuth, instead of the customer portal hostname. New public server creates default to true; existing servers default to false from migration until explicitly updated. Effective behavior is gated by the gateway worker's per-env rollout mode KV key.
- last_
successful_ strsync - last_
synced str - modified_
at str - modified_
by str - name str
- Display name for the MCP server.
- prompts Sequence[Mapping[str, str]]
- secure_
web_ boolgateway - Route outbound traffic to this MCP server through Zero Trust Secure Web Gateway.
- status str
- Current sync state of the server Available values: "waiting", "ready", "stale", "error".
- tools Sequence[Mapping[str, str]]
- updated_
prompts Sequence[GetZero Trust Access Ai Controls Mcp Servers Result Updated Prompt] - Server-wide prompt capability overrides.
- updated_
tools Sequence[GetZero Trust Access Ai Controls Mcp Servers Result Updated Tool] - Server-wide tool capability overrides.
- auth
Config Property MapSummary - Safe subset of authcredentials surfaced to the dashboard. Includes authmode (dcr|manual), hasclientsecret, clientsecretversion, and the OAuth endpoints + client*id for manual servers. Never includes the secret value.
- auth
Type String - Authentication method used to connect to the upstream MCP server. Available values: "oauth", "bearer", "unauthenticated".
- authentication
Status String - Whether administrative authentication is required before capabilities can be synced. Manual OAuth is user-managed and has no administrative authentication flow. Available values: "notRequired", "required", "connected", "stale", "manual".
- created
At String - created
By String - description String
- Optional description of the MCP server.
- error String
- error
Details Property Map - hostname String
- URL of the upstream MCP endpoint.
- id String
- Unique identifier for the MCP server.
- Boolean
- When true, the gateway worker uses the shared Cloudflare-owned OAuth callback endpoint as the redirectUri for upstream on-behalf OAuth, instead of the customer portal hostname. New public server creates default to true; existing servers default to false from migration until explicitly updated. Effective behavior is gated by the gateway worker's per-env rollout mode KV key.
- last
Successful StringSync - last
Synced String - modified
At String - modified
By String - name String
- Display name for the MCP server.
- prompts List<Map<String>>
- secure
Web BooleanGateway - Route outbound traffic to this MCP server through Zero Trust Secure Web Gateway.
- status String
- Current sync state of the server Available values: "waiting", "ready", "stale", "error".
- tools List<Map<String>>
- updated
Prompts List<Property Map> - Server-wide prompt capability overrides.
- updated
Tools List<Property Map> - Server-wide tool capability overrides.
GetZeroTrustAccessAiControlsMcpServersResultAuthConfigSummary
- Auth
Mode string - Available values: "dcr", "manual".
- Client
Secret doubleVersion - Config
Get
Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Config - Has
Client boolSecret - Registration
Info GetZero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Registration Info
- Auth
Mode string - Available values: "dcr", "manual".
- Client
Secret float64Version - Config
Get
Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Config - Has
Client boolSecret - Registration
Info GetZero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Registration Info
- auth_
mode string - Available values: "dcr", "manual".
- client_
secret_ numberversion - config object
- has_
client_ boolsecret - registration_
info object
- auth
Mode String - Available values: "dcr", "manual".
- client
Secret DoubleVersion - config
Get
Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Config - has
Client BooleanSecret - registration
Info GetZero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Registration Info
- auth
Mode string - Available values: "dcr", "manual".
- client
Secret numberVersion - config
Get
Zero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Config - has
Client booleanSecret - registration
Info GetZero Trust Access Ai Controls Mcp Servers Result Auth Config Summary Registration Info
- auth
Mode String - Available values: "dcr", "manual".
- client
Secret NumberVersion - config Property Map
- has
Client BooleanSecret - registration
Info Property Map
GetZeroTrustAccessAiControlsMcpServersResultAuthConfigSummaryConfig
- string
- Issuer string
- Resource string
- Revocation
Endpoint string - Token
Endpoint string
- string
- Issuer string
- Resource string
- Revocation
Endpoint string - Token
Endpoint string
- string
- issuer string
- resource string
- revocation_
endpoint string - token_
endpoint string
- String
- issuer String
- resource String
- revocation
Endpoint String - token
Endpoint String
- string
- issuer string
- resource string
- revocation
Endpoint string - token
Endpoint string
- str
- issuer str
- resource str
- revocation_
endpoint str - token_
endpoint str
- String
- issuer String
- resource String
- revocation
Endpoint String - token
Endpoint String
GetZeroTrustAccessAiControlsMcpServersResultAuthConfigSummaryRegistrationInfo
- Client
Id string - Redirect
Uris List<string> - Scope string
- Token
Endpoint stringAuth Method
- Client
Id string - Redirect
Uris []string - Scope string
- Token
Endpoint stringAuth Method
- client_
id string - redirect_
uris list(string) - scope string
- token_
endpoint_ stringauth_ method
- client
Id String - redirect
Uris List<String> - scope String
- token
Endpoint StringAuth Method
- client
Id string - redirect
Uris string[] - scope string
- token
Endpoint stringAuth Method
- client_
id str - redirect_
uris Sequence[str] - scope str
- token_
endpoint_ strauth_ method
- client
Id String - redirect
Uris List<String> - scope String
- token
Endpoint StringAuth Method
GetZeroTrustAccessAiControlsMcpServersResultErrorDetails
- Cause string
- Underlying error message
- Is
Upstream bool - True = MCP server returned an error. False = couldn't reach the server
- Mcp
Code double - MCP protocol error code
- Retryable bool
- Whether the error is transient and worth retrying
- Status
Code double - HTTP status code from the server
- Cause string
- Underlying error message
- Is
Upstream bool - True = MCP server returned an error. False = couldn't reach the server
- Mcp
Code float64 - MCP protocol error code
- Retryable bool
- Whether the error is transient and worth retrying
- Status
Code float64 - HTTP status code from the server
- cause string
- Underlying error message
- is_
upstream bool - True = MCP server returned an error. False = couldn't reach the server
- mcp_
code number - MCP protocol error code
- retryable bool
- Whether the error is transient and worth retrying
- status_
code number - HTTP status code from the server
- cause String
- Underlying error message
- is
Upstream Boolean - True = MCP server returned an error. False = couldn't reach the server
- mcp
Code Double - MCP protocol error code
- retryable Boolean
- Whether the error is transient and worth retrying
- status
Code Double - HTTP status code from the server
- cause string
- Underlying error message
- is
Upstream boolean - True = MCP server returned an error. False = couldn't reach the server
- mcp
Code number - MCP protocol error code
- retryable boolean
- Whether the error is transient and worth retrying
- status
Code number - HTTP status code from the server
- cause str
- Underlying error message
- is_
upstream bool - True = MCP server returned an error. False = couldn't reach the server
- mcp_
code float - MCP protocol error code
- retryable bool
- Whether the error is transient and worth retrying
- status_
code float - HTTP status code from the server
- cause String
- Underlying error message
- is
Upstream Boolean - True = MCP server returned an error. False = couldn't reach the server
- mcp
Code Number - MCP protocol error code
- retryable Boolean
- Whether the error is transient and worth retrying
- status
Code Number - HTTP status code from the server
GetZeroTrustAccessAiControlsMcpServersResultUpdatedPrompt
- Alias string
- Custom name exposed for the capability.
- Description string
- Custom description exposed for the capability.
- Enabled bool
- Whether the capability is available through the MCP server.
- Name string
- Name of the tool or prompt capability to override.
- Alias string
- Custom name exposed for the capability.
- Description string
- Custom description exposed for the capability.
- Enabled bool
- Whether the capability is available through the MCP server.
- Name string
- Name of the tool or prompt capability to override.
- alias string
- Custom name exposed for the capability.
- description string
- Custom description exposed for the capability.
- enabled bool
- Whether the capability is available through the MCP server.
- name string
- Name of the tool or prompt capability to override.
- alias String
- Custom name exposed for the capability.
- description String
- Custom description exposed for the capability.
- enabled Boolean
- Whether the capability is available through the MCP server.
- name String
- Name of the tool or prompt capability to override.
- alias string
- Custom name exposed for the capability.
- description string
- Custom description exposed for the capability.
- enabled boolean
- Whether the capability is available through the MCP server.
- name string
- Name of the tool or prompt capability to override.
- alias str
- Custom name exposed for the capability.
- description str
- Custom description exposed for the capability.
- enabled bool
- Whether the capability is available through the MCP server.
- name str
- Name of the tool or prompt capability to override.
- alias String
- Custom name exposed for the capability.
- description String
- Custom description exposed for the capability.
- enabled Boolean
- Whether the capability is available through the MCP server.
- name String
- Name of the tool or prompt capability to override.
GetZeroTrustAccessAiControlsMcpServersResultUpdatedTool
- Alias string
- Custom name exposed for the capability.
- Description string
- Custom description exposed for the capability.
- Enabled bool
- Whether the capability is available through the MCP server.
- Name string
- Name of the tool or prompt capability to override.
- Alias string
- Custom name exposed for the capability.
- Description string
- Custom description exposed for the capability.
- Enabled bool
- Whether the capability is available through the MCP server.
- Name string
- Name of the tool or prompt capability to override.
- alias string
- Custom name exposed for the capability.
- description string
- Custom description exposed for the capability.
- enabled bool
- Whether the capability is available through the MCP server.
- name string
- Name of the tool or prompt capability to override.
- alias String
- Custom name exposed for the capability.
- description String
- Custom description exposed for the capability.
- enabled Boolean
- Whether the capability is available through the MCP server.
- name String
- Name of the tool or prompt capability to override.
- alias string
- Custom name exposed for the capability.
- description string
- Custom description exposed for the capability.
- enabled boolean
- Whether the capability is available through the MCP server.
- name string
- Name of the tool or prompt capability to override.
- alias str
- Custom name exposed for the capability.
- description str
- Custom description exposed for the capability.
- enabled bool
- Whether the capability is available through the MCP server.
- name str
- Name of the tool or prompt capability to override.
- alias String
- Custom name exposed for the capability.
- description String
- Custom description exposed for the capability.
- enabled Boolean
- Whether the capability is available through the MCP server.
- name String
- Name of the tool or prompt capability to override.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflareTerraform Provider.
Viewing docs for Cloudflare v6.20.0
published on Tuesday, Aug 25, 2026 by Pulumi
published on Tuesday, Aug 25, 2026 by Pulumi