Viewing docs for bytepluscc v0.0.29
published on Friday, May 22, 2026 by Byteplus
published on Friday, May 22, 2026 by Byteplus
Bytepluscc Provider: Installation & Configuration
I want to use the Pulumi bytepluscc package (bytepluscc) in my project.
## Provider details
- Package: bytepluscc
- Version: v0.0.29
- Publisher: Byteplus
- Source: pulumi
- Repository: https://github.com/byteplus-sdk/pulumi-bytepluscc
## Documentation
The Pulumi Cloud Registry API serves canonical, up-to-date docs for this package — including private packages and every published version. Send the "Accept: text/markdown" header for clean readable content, or "application/json" for structured data.
Start at the navigation tree, which cross-links to the readme, installation guide, and per-resource docs URL template:
- https://api.pulumi.com/api/registry/packages/pulumi/Byteplus/bytepluscc/versions/latest/nav
Returns a summary by default. The full tree can be hundreds of kB for large providers, so prefer targeted search: append "?q=<query>&depth=full" to filter by resource/function title or token (for example "?q=bucket&depth=full"). Only request the full nav without a query if you actually need to enumerate every resource.
Other endpoints:
- Overview and getting started: https://api.pulumi.com/api/registry/packages/pulumi/Byteplus/bytepluscc/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/Byteplus/bytepluscc/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/Byteplus/bytepluscc/versions/latest/docs/{token}?lang={lang}
Replace {token} with the percent-encoded token from the nav response (for example aws:s3/bucket:Bucket).
Replace {lang} with typescript, python, go, csharp, java, or yaml.
Fetch the installation endpoint above for the correct setup steps — install instructions vary between native providers, bridged Terraform providers, and component packages.
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for bytepluscc v0.0.29
published on Friday, May 22, 2026 by Byteplus
published on Friday, May 22, 2026 by Byteplus
Installation
The Bytepluscc provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript:
@byteplus/pulumi-bytepluscc - Python:
pulumi-bytepluscc - Go:
github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc - .NET:
Byteplus.Pulumi.Bytepluscc - Java:
com.byteplus/bytepluscc
Provider Binary
The provider binary is a third party binary. It can be installed using the pulumi plugin command.
pulumi plugin install resource bytepluscc --server github://api.github.com/byteplus-sdk
Overview
The Bytepluscc provider is used to interact with the many resources supported by Byteplus. The provider needs to be configured with the proper credentials before it can be used.
Use the navigation on the left to read about the available resources.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as bp from "@byteplus/pulumi-bytepluscc"
// ⚠️ Sensitive information should not be hardcoded in the source code.
// This example is for demonstration purposes only.
// It’s recommended to manage such data using environment variables,
// secure configuration files, or a secret management service.
const provider = new bp.Provider("bp-provider",{
accessKey:"*******************",
secretKey:"*******************",
region:"ap-southeast-1",
endpoints:{
cloudcontrolapi:"cloudcontrol.ap-southeast-1.byteplusapi.com"
}
})
export const CrRepository = (provider:any) => {
return new bp.cr.Repository("pulumi-node-crRepository",{
namespace:"ccapi-test",
registry:"ccapi-test",
name:"pulumi-bp-nodejs-test",
description:"pulumi test replace",
accessLevel:"Public"
},{provider})
}
Example currently unavailable in this language
# Pulumi.yaml provider configuration file
name: pulumi-dotnet-example
runtime: dotnet
Example currently unavailable in this language
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
myprovider "github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc"
"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/clb"
)
func createTags(tagMap map[string]string) clb.ListenerTagArray {
var tags []clb.ListenerTagInput
for key, value := range tagMap {
tags = append(tags, &clb.ListenerTagArgs{
Key: pulumi.String(key),
Value: pulumi.String(value),
})
}
return tags
}
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// ⚠️ Sensitive information should not be hardcoded in the source code.
// This example is for demonstration purposes only.
// It’s recommended to manage such data using environment variables,
// secure configuration files, or a secret management service.
prov, err := myprovider.NewProvider(ctx, "pulumi", &myprovider.ProviderArgs{
AccessKey: pulumi.String("******************"),
SecretKey: pulumi.String("******************"),
Region: pulumi.String("ap-southeast-1"),
Endpoints: &myprovider.ProviderEndpointsArgs{
Cloudcontrolapi: pulumi.String("cloudcontrol.ap-southeast-1.byteplusapi.com"),
},
})
if err != nil {
return err
}
clbListener, err := clb.NewListener(ctx, "clb-listener-http", &clb.ListenerArgs{
AclIds: pulumi.StringArray{
pulumi.String("acl-14x5k4odrr3ls3tvs81th56kw"),
},
AclStatus: pulumi.String("on"),
AclType: pulumi.String("black"),
Description: pulumi.String("Clb listener http endpoint"),
Enabled: pulumi.String("on"),
HealthCheck: &clb.ListenerHealthCheckArgs{
Enabled: pulumi.String("on"),
HealthyThreshold: pulumi.Int(3),
Interval: pulumi.Int(5),
Timeout: pulumi.Int(2),
UnhealthyThreshold: pulumi.Int(3),
Domain: pulumi.String("www.yjtest.com"),
Method: pulumi.String("GET"),
Uri: pulumi.String("/"),
HttpCode: pulumi.String("http_2xx,http_3xx"),
Port: pulumi.Int(0),
},
ListenerName: pulumi.String("clb-listener-http-pulumi"),
LoadBalancerId: pulumi.String("clb-14w0vmlz0qi2o3tvs80m4dfrj"),
PersistenceType: pulumi.String("server"),
Cookie: pulumi.String("cookie123"),
Protocol: pulumi.String("HTTP"),
Port: pulumi.Int(2005),
Scheduler: pulumi.String("wrr"),
Bandwidth: pulumi.Int(10),
ServerGroupId: pulumi.String("rsp-22qx2ligwir5sds3n8d5tizs"),
ClientHeaderTimeout: pulumi.Int(60),
ClientBodyTimeout: pulumi.Int(40),
KeepaliveTimeout: pulumi.Int(90),
ProxyConnectTimeout: pulumi.Int(10),
ProxySendTimeout: pulumi.Int(30),
ProxyReadTimeout: pulumi.Int(90),
SendTimeout: pulumi.Int(150),
Tags: createTags(map[string]string{
"key1": "2000000191",
"key2": "2000000192",
"key3": "",
}),
}, pulumi.Provider(prov))
if err != nil {
return err
}
return err
})
}
# Pulumi.yaml provider configuration file
name: configuration-example
runtime: yaml
Example currently unavailable in this language
Example currently unavailable in this language
Viewing docs for bytepluscc v0.0.29
published on Friday, May 22, 2026 by Byteplus
published on Friday, May 22, 2026 by Byteplus