published on Thursday, Apr 23, 2026 by Volcengine
published on Thursday, Apr 23, 2026 by Volcengine
A service is a set of routes exposed as entry points to distinguish traffic sources and protocols, enabling business, environment, and logical tenant isolation. Services can bind independent access domains, allowing access by domain.
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
apigGatewayServiceDemo:
type: volcenginecc:apig:GatewayService
name: ApigGatewayServiceDemo
properties:
serviceName: ccapi-terraform-1
gatewayId: gd6l9lbilgrmdxxxxxx
protocols:
- HTTP
- HTTPS
authSpec:
enable: true
comments: test
serviceType: AIProvider
serviceNetworkSpec:
enable_public_network: true
enable_private_network: false
private_network_ip: []
Create GatewayService Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GatewayService(name: string, args: GatewayServiceArgs, opts?: CustomResourceOptions);@overload
def GatewayService(resource_name: str,
args: GatewayServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GatewayService(resource_name: str,
opts: Optional[ResourceOptions] = None,
auth_spec: Optional[GatewayServiceAuthSpecArgs] = None,
gateway_id: Optional[str] = None,
protocols: Optional[Sequence[str]] = None,
service_name: Optional[str] = None,
comments: Optional[str] = None,
custom_domains: Optional[Sequence[GatewayServiceCustomDomainArgs]] = None,
domain_type: Optional[str] = None,
service_network_spec: Optional[GatewayServiceServiceNetworkSpecArgs] = None,
service_type: Optional[str] = None)func NewGatewayService(ctx *Context, name string, args GatewayServiceArgs, opts ...ResourceOption) (*GatewayService, error)public GatewayService(string name, GatewayServiceArgs args, CustomResourceOptions? opts = null)
public GatewayService(String name, GatewayServiceArgs args)
public GatewayService(String name, GatewayServiceArgs args, CustomResourceOptions options)
type: volcenginecc:apig:GatewayService
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GatewayServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GatewayServiceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GatewayServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GatewayServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var gatewayServiceResource = new Volcenginecc.Apig.GatewayService("gatewayServiceResource", new()
{
AuthSpec = new Volcenginecc.Apig.Inputs.GatewayServiceAuthSpecArgs
{
Enable = false,
},
GatewayId = "string",
Protocols = new[]
{
"string",
},
ServiceName = "string",
Comments = "string",
CustomDomains = new[]
{
null,
},
DomainType = "string",
ServiceNetworkSpec = new Volcenginecc.Apig.Inputs.GatewayServiceServiceNetworkSpecArgs
{
EnablePrivateNetwork = false,
EnablePublicNetwork = false,
PrivateNetworkIps = new[]
{
"string",
},
},
ServiceType = "string",
});
example, err := apig.NewGatewayService(ctx, "gatewayServiceResource", &apig.GatewayServiceArgs{
AuthSpec: &apig.GatewayServiceAuthSpecArgs{
Enable: pulumi.Bool(false),
},
GatewayId: pulumi.String("string"),
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
ServiceName: pulumi.String("string"),
Comments: pulumi.String("string"),
CustomDomains: apig.GatewayServiceCustomDomainArray{
&apig.GatewayServiceCustomDomainArgs{},
},
DomainType: pulumi.String("string"),
ServiceNetworkSpec: &apig.GatewayServiceServiceNetworkSpecArgs{
EnablePrivateNetwork: pulumi.Bool(false),
EnablePublicNetwork: pulumi.Bool(false),
PrivateNetworkIps: pulumi.StringArray{
pulumi.String("string"),
},
},
ServiceType: pulumi.String("string"),
})
var gatewayServiceResource = new GatewayService("gatewayServiceResource", GatewayServiceArgs.builder()
.authSpec(GatewayServiceAuthSpecArgs.builder()
.enable(false)
.build())
.gatewayId("string")
.protocols("string")
.serviceName("string")
.comments("string")
.customDomains(GatewayServiceCustomDomainArgs.builder()
.build())
.domainType("string")
.serviceNetworkSpec(GatewayServiceServiceNetworkSpecArgs.builder()
.enablePrivateNetwork(false)
.enablePublicNetwork(false)
.privateNetworkIps("string")
.build())
.serviceType("string")
.build());
gateway_service_resource = volcenginecc.apig.GatewayService("gatewayServiceResource",
auth_spec={
"enable": False,
},
gateway_id="string",
protocols=["string"],
service_name="string",
comments="string",
custom_domains=[{}],
domain_type="string",
service_network_spec={
"enable_private_network": False,
"enable_public_network": False,
"private_network_ips": ["string"],
},
service_type="string")
const gatewayServiceResource = new volcenginecc.apig.GatewayService("gatewayServiceResource", {
authSpec: {
enable: false,
},
gatewayId: "string",
protocols: ["string"],
serviceName: "string",
comments: "string",
customDomains: [{}],
domainType: "string",
serviceNetworkSpec: {
enablePrivateNetwork: false,
enablePublicNetwork: false,
privateNetworkIps: ["string"],
},
serviceType: "string",
});
type: volcenginecc:apig:GatewayService
properties:
authSpec:
enable: false
comments: string
customDomains:
- {}
domainType: string
gatewayId: string
protocols:
- string
serviceName: string
serviceNetworkSpec:
enablePrivateNetwork: false
enablePublicNetwork: false
privateNetworkIps:
- string
serviceType: string
GatewayService Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The GatewayService resource accepts the following input properties:
- Auth
Spec Volcengine.Gateway Service Auth Spec - Authentication configuration.
- Gateway
Id string - Gateway ID.
- Protocols List<string>
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- Service
Name string - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- Comments string
- Remarks. Length must be 0–253 characters.
- Custom
Domains List<Volcengine.Gateway Service Custom Domain> - Domain
Type string - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- Service
Network Volcengine.Spec Gateway Service Service Network Spec - Default domain network configuration..
- Service
Type string - Service type. Options: AIProvider: AI model proxy.
- Auth
Spec GatewayService Auth Spec Args - Authentication configuration.
- Gateway
Id string - Gateway ID.
- Protocols []string
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- Service
Name string - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- Comments string
- Remarks. Length must be 0–253 characters.
- Custom
Domains []GatewayService Custom Domain Args - Domain
Type string - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- Service
Network GatewaySpec Service Service Network Spec Args - Default domain network configuration..
- Service
Type string - Service type. Options: AIProvider: AI model proxy.
- auth
Spec GatewayService Auth Spec - Authentication configuration.
- gateway
Id String - Gateway ID.
- protocols List<String>
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service
Name String - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- comments String
- Remarks. Length must be 0–253 characters.
- custom
Domains List<GatewayService Custom Domain> - domain
Type String - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- service
Network GatewaySpec Service Service Network Spec - Default domain network configuration..
- service
Type String - Service type. Options: AIProvider: AI model proxy.
- auth
Spec GatewayService Auth Spec - Authentication configuration.
- gateway
Id string - Gateway ID.
- protocols string[]
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service
Name string - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- comments string
- Remarks. Length must be 0–253 characters.
- custom
Domains GatewayService Custom Domain[] - domain
Type string - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- service
Network GatewaySpec Service Service Network Spec - Default domain network configuration..
- service
Type string - Service type. Options: AIProvider: AI model proxy.
- auth_
spec GatewayService Auth Spec Args - Authentication configuration.
- gateway_
id str - Gateway ID.
- protocols Sequence[str]
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service_
name str - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- comments str
- Remarks. Length must be 0–253 characters.
- custom_
domains Sequence[GatewayService Custom Domain Args] - domain_
type str - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- service_
network_ Gatewayspec Service Service Network Spec Args - Default domain network configuration..
- service_
type str - Service type. Options: AIProvider: AI model proxy.
- auth
Spec Property Map - Authentication configuration.
- gateway
Id String - Gateway ID.
- protocols List<String>
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service
Name String - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- comments String
- Remarks. Length must be 0–253 characters.
- custom
Domains List<Property Map> - domain
Type String - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- service
Network Property MapSpec - Default domain network configuration..
- service
Type String - Service type. Options: AIProvider: AI model proxy.
Outputs
All input properties are implicitly available as output properties. Additionally, the GatewayService resource produces the following output properties:
- Created
Time string - Creation time.
- Domain
Spec Volcengine.Gateway Service Domain Spec - Domain details.
- Domains
List<Volcengine.
Gateway Service Domain> - Gateway
Name string - Gateway name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Message string
- Error message for service creation failure, deletion failure, or abnormal status.
- Service
Id string - Service ID.
- Status string
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- Created
Time string - Creation time.
- Domain
Spec GatewayService Domain Spec - Domain details.
- Domains
[]Gateway
Service Domain - Gateway
Name string - Gateway name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Message string
- Error message for service creation failure, deletion failure, or abnormal status.
- Service
Id string - Service ID.
- Status string
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- created
Time String - Creation time.
- domain
Spec GatewayService Domain Spec - Domain details.
- domains
List<Gateway
Service Domain> - gateway
Name String - Gateway name.
- id String
- The provider-assigned unique ID for this managed resource.
- message String
- Error message for service creation failure, deletion failure, or abnormal status.
- service
Id String - Service ID.
- status String
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- created
Time string - Creation time.
- domain
Spec GatewayService Domain Spec - Domain details.
- domains
Gateway
Service Domain[] - gateway
Name string - Gateway name.
- id string
- The provider-assigned unique ID for this managed resource.
- message string
- Error message for service creation failure, deletion failure, or abnormal status.
- service
Id string - Service ID.
- status string
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- created_
time str - Creation time.
- domain_
spec GatewayService Domain Spec - Domain details.
- domains
Sequence[Gateway
Service Domain] - gateway_
name str - Gateway name.
- id str
- The provider-assigned unique ID for this managed resource.
- message str
- Error message for service creation failure, deletion failure, or abnormal status.
- service_
id str - Service ID.
- status str
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- created
Time String - Creation time.
- domain
Spec Property Map - Domain details.
- domains List<Property Map>
- gateway
Name String - Gateway name.
- id String
- The provider-assigned unique ID for this managed resource.
- message String
- Error message for service creation failure, deletion failure, or abnormal status.
- service
Id String - Service ID.
- status String
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
Look up Existing GatewayService Resource
Get an existing GatewayService resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GatewayServiceState, opts?: CustomResourceOptions): GatewayService@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auth_spec: Optional[GatewayServiceAuthSpecArgs] = None,
comments: Optional[str] = None,
created_time: Optional[str] = None,
custom_domains: Optional[Sequence[GatewayServiceCustomDomainArgs]] = None,
domain_spec: Optional[GatewayServiceDomainSpecArgs] = None,
domain_type: Optional[str] = None,
domains: Optional[Sequence[GatewayServiceDomainArgs]] = None,
gateway_id: Optional[str] = None,
gateway_name: Optional[str] = None,
message: Optional[str] = None,
protocols: Optional[Sequence[str]] = None,
service_id: Optional[str] = None,
service_name: Optional[str] = None,
service_network_spec: Optional[GatewayServiceServiceNetworkSpecArgs] = None,
service_type: Optional[str] = None,
status: Optional[str] = None) -> GatewayServicefunc GetGatewayService(ctx *Context, name string, id IDInput, state *GatewayServiceState, opts ...ResourceOption) (*GatewayService, error)public static GatewayService Get(string name, Input<string> id, GatewayServiceState? state, CustomResourceOptions? opts = null)public static GatewayService get(String name, Output<String> id, GatewayServiceState state, CustomResourceOptions options)resources: _: type: volcenginecc:apig:GatewayService get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Auth
Spec Volcengine.Gateway Service Auth Spec - Authentication configuration.
- Comments string
- Remarks. Length must be 0–253 characters.
- Created
Time string - Creation time.
- Custom
Domains List<Volcengine.Gateway Service Custom Domain> - Domain
Spec Volcengine.Gateway Service Domain Spec - Domain details.
- Domain
Type string - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- Domains
List<Volcengine.
Gateway Service Domain> - Gateway
Id string - Gateway ID.
- Gateway
Name string - Gateway name.
- Message string
- Error message for service creation failure, deletion failure, or abnormal status.
- Protocols List<string>
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- Service
Id string - Service ID.
- Service
Name string - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- Service
Network Volcengine.Spec Gateway Service Service Network Spec - Default domain network configuration..
- Service
Type string - Service type. Options: AIProvider: AI model proxy.
- Status string
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- Auth
Spec GatewayService Auth Spec Args - Authentication configuration.
- Comments string
- Remarks. Length must be 0–253 characters.
- Created
Time string - Creation time.
- Custom
Domains []GatewayService Custom Domain Args - Domain
Spec GatewayService Domain Spec Args - Domain details.
- Domain
Type string - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- Domains
[]Gateway
Service Domain Args - Gateway
Id string - Gateway ID.
- Gateway
Name string - Gateway name.
- Message string
- Error message for service creation failure, deletion failure, or abnormal status.
- Protocols []string
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- Service
Id string - Service ID.
- Service
Name string - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- Service
Network GatewaySpec Service Service Network Spec Args - Default domain network configuration..
- Service
Type string - Service type. Options: AIProvider: AI model proxy.
- Status string
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- auth
Spec GatewayService Auth Spec - Authentication configuration.
- comments String
- Remarks. Length must be 0–253 characters.
- created
Time String - Creation time.
- custom
Domains List<GatewayService Custom Domain> - domain
Spec GatewayService Domain Spec - Domain details.
- domain
Type String - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- domains
List<Gateway
Service Domain> - gateway
Id String - Gateway ID.
- gateway
Name String - Gateway name.
- message String
- Error message for service creation failure, deletion failure, or abnormal status.
- protocols List<String>
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service
Id String - Service ID.
- service
Name String - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- service
Network GatewaySpec Service Service Network Spec - Default domain network configuration..
- service
Type String - Service type. Options: AIProvider: AI model proxy.
- status String
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- auth
Spec GatewayService Auth Spec - Authentication configuration.
- comments string
- Remarks. Length must be 0–253 characters.
- created
Time string - Creation time.
- custom
Domains GatewayService Custom Domain[] - domain
Spec GatewayService Domain Spec - Domain details.
- domain
Type string - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- domains
Gateway
Service Domain[] - gateway
Id string - Gateway ID.
- gateway
Name string - Gateway name.
- message string
- Error message for service creation failure, deletion failure, or abnormal status.
- protocols string[]
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service
Id string - Service ID.
- service
Name string - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- service
Network GatewaySpec Service Service Network Spec - Default domain network configuration..
- service
Type string - Service type. Options: AIProvider: AI model proxy.
- status string
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- auth_
spec GatewayService Auth Spec Args - Authentication configuration.
- comments str
- Remarks. Length must be 0–253 characters.
- created_
time str - Creation time.
- custom_
domains Sequence[GatewayService Custom Domain Args] - domain_
spec GatewayService Domain Spec Args - Domain details.
- domain_
type str - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- domains
Sequence[Gateway
Service Domain Args] - gateway_
id str - Gateway ID.
- gateway_
name str - Gateway name.
- message str
- Error message for service creation failure, deletion failure, or abnormal status.
- protocols Sequence[str]
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service_
id str - Service ID.
- service_
name str - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- service_
network_ Gatewayspec Service Service Network Spec Args - Default domain network configuration..
- service_
type str - Service type. Options: AIProvider: AI model proxy.
- status str
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
- auth
Spec Property Map - Authentication configuration.
- comments String
- Remarks. Length must be 0–253 characters.
- created
Time String - Creation time.
- custom
Domains List<Property Map> - domain
Spec Property Map - Domain details.
- domain
Type String - Domain type. Options: DefaultDomain: Default domain. CustomDomain: Custom domain.
- domains List<Property Map>
- gateway
Id String - Gateway ID.
- gateway
Name String - Gateway name.
- message String
- Error message for service creation failure, deletion failure, or abnormal status.
- protocols List<String>
- Supported protocols. Options: HTTP: HTTP. HTTPS: HTTPS.
- service
Id String - Service ID.
- service
Name String - Service name. Supports uppercase and lowercase letters, numbers, and hyphens (-). Length must be 2–128 characters. Cannot start with a hyphen (-).
- service
Network Property MapSpec - Default domain network configuration..
- service
Type String - Service type. Options: AIProvider: AI model proxy.
- status String
- Creating: Creating. CreatedFailed: Creation failed. Running: Running. Deleting: Deleting. DeletedFailed: Deletion failed. Abnormal: Abnormal.
Supporting Types
GatewayServiceAuthSpec, GatewayServiceAuthSpecArgs
- Enable bool
- Whether authentication is enabled.
- Enable bool
- Whether authentication is enabled.
- enable Boolean
- Whether authentication is enabled.
- enable boolean
- Whether authentication is enabled.
- enable bool
- Whether authentication is enabled.
- enable Boolean
- Whether authentication is enabled.
GatewayServiceDomain, GatewayServiceDomainArgs
GatewayServiceDomainSpec, GatewayServiceDomainSpecArgs
- Enable
Public boolResolution - Enable public resolution for private network domains.
- Enable
Public boolResolution - Enable public resolution for private network domains.
- enable
Public BooleanResolution - Enable public resolution for private network domains.
- enable
Public booleanResolution - Enable public resolution for private network domains.
- enable_
public_ boolresolution - Enable public resolution for private network domains.
- enable
Public BooleanResolution - Enable public resolution for private network domains.
GatewayServiceServiceNetworkSpec, GatewayServiceServiceNetworkSpecArgs
- Enable
Private boolNetwork - Enable private network.
- Enable
Public boolNetwork - Enable public network.
- Private
Network List<string>Ips - Target IP for private network domain resolution.
- Enable
Private boolNetwork - Enable private network.
- Enable
Public boolNetwork - Enable public network.
- Private
Network []stringIps - Target IP for private network domain resolution.
- enable
Private BooleanNetwork - Enable private network.
- enable
Public BooleanNetwork - Enable public network.
- private
Network List<String>Ips - Target IP for private network domain resolution.
- enable
Private booleanNetwork - Enable private network.
- enable
Public booleanNetwork - Enable public network.
- private
Network string[]Ips - Target IP for private network domain resolution.
- enable_
private_ boolnetwork - Enable private network.
- enable_
public_ boolnetwork - Enable public network.
- private_
network_ Sequence[str]ips - Target IP for private network domain resolution.
- enable
Private BooleanNetwork - Enable private network.
- enable
Public BooleanNetwork - Enable public network.
- private
Network List<String>Ips - Target IP for private network domain resolution.
Import
$ pulumi import volcenginecc:apig/gatewayService:GatewayService example "service_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Apr 23, 2026 by Volcengine
