getCassanda
# Cassandra Data Source
The Cassandra data source provides information about the existing Aiven Cassandra service.
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var bar = Output.Create(Aiven.GetCassanda.InvokeAsync(new Aiven.GetCassandaArgs
{
Project = data.Aiven_project.Foo.Project,
ServiceName = "test-acc-sr-%s",
}));
}
}
package main
import (
"fmt"
"github.com/pulumi/pulumi-aiven/sdk/v3/go/aiven"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.GetCassanda(ctx, &aiven.GetCassandaArgs{
Project: data.Aiven_project.Foo.Project,
ServiceName: fmt.Sprintf("%v%v%v", "test-acc-sr-", "%", "s"),
}, nil)
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_aiven as aiven
bar = aiven.get_cassanda(project=data["aiven_project"]["foo"]["project"],
service_name="test-acc-sr-%s")
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const bar = aiven.getCassanda({
project: data.aiven_project.foo.project,
serviceName: `test-acc-sr-%s`,
});
Using getCassanda
function getCassanda(args: GetCassandaArgs, opts?: InvokeOptions): Promise<GetCassandaResult>
def get_cassanda(cassandra: Optional[GetCassandaCassandraArgs] = None, cassandra_user_config: Optional[GetCassandaCassandraUserConfigArgs] = None, cloud_name: Optional[str] = None, components: Optional[Sequence[GetCassandaComponentArgs]] = None, maintenance_window_dow: Optional[str] = None, maintenance_window_time: Optional[str] = None, plan: Optional[str] = None, project: Optional[str] = None, project_vpc_id: Optional[str] = None, service_host: Optional[str] = None, service_integrations: Optional[Sequence[GetCassandaServiceIntegrationArgs]] = None, service_name: Optional[str] = None, service_password: Optional[str] = None, service_port: Optional[int] = None, service_type: Optional[str] = None, service_uri: Optional[str] = None, service_username: Optional[str] = None, state: Optional[str] = None, termination_protection: Optional[bool] = None, opts: Optional[InvokeOptions] = None) -> GetCassandaResult
func GetCassanda(ctx *Context, args *GetCassandaArgs, opts ...InvokeOption) (*GetCassandaResult, error)
Note: This function is named
GetCassanda
in the Go SDK.
public static class GetCassanda {
public static Task<GetCassandaResult> InvokeAsync(GetCassandaArgs args, InvokeOptions? opts = null)
}
The following arguments are supported:
- Project string
identifies the project the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- Service
Name string specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Cassandra
Get
Cassanda Cassandra Args Cassandra specific server provided values.
- Cassandra
User GetConfig Cassanda Cassandra User Config Args defines Cassandra specific additional configuration options. The following configuration options available:
- Cloud
Name string defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- Components
List<Get
Cassanda Component Args> - Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string Cassandra hostname.
- Service
Integrations List<GetCassanda Service Integration Args> - Service
Password string Password used for connecting to the Cassandra service, if applicable.
- Service
Port int Cassandra port.
- Service
Type string - Service
Uri string URI for connecting to the Cassandra service.
- Service
Username string Username used for connecting to the Cassandra service, if applicable.
- State string
Service state.
- Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Project string
identifies the project the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- Service
Name string specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Cassandra
Get
Cassanda Cassandra Cassandra specific server provided values.
- Cassandra
User GetConfig Cassanda Cassandra User Config defines Cassandra specific additional configuration options. The following configuration options available:
- Cloud
Name string defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- Components
[]Get
Cassanda Component - Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string Cassandra hostname.
- Service
Integrations []GetCassanda Service Integration - Service
Password string Password used for connecting to the Cassandra service, if applicable.
- Service
Port int Cassandra port.
- Service
Type string - Service
Uri string URI for connecting to the Cassandra service.
- Service
Username string Username used for connecting to the Cassandra service, if applicable.
- State string
Service state.
- Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project string
identifies the project the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- service
Name string specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- cassandra
Get
Cassanda Cassandra Cassandra specific server provided values.
- cassandra
User GetConfig Cassanda Cassandra User Config defines Cassandra specific additional configuration options. The following configuration options available:
- cloud
Name string defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- components
Get
Cassanda Component[] - maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan string
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- project
Vpc stringId optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host string Cassandra hostname.
- service
Integrations GetCassanda Service Integration[] - service
Password string Password used for connecting to the Cassandra service, if applicable.
- service
Port number Cassandra port.
- service
Type string - service
Uri string URI for connecting to the Cassandra service.
- service
Username string Username used for connecting to the Cassandra service, if applicable.
- state string
Service state.
- termination
Protection boolean prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project str
identifies the project the service belongs to. To set up proper dependency between the project and the service, refer to the project as shown in the above example. Project cannot be changed later without destroying and re-creating the service.
- service_
name str specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- cassandra
Get
Cassanda Cassandra Args Cassandra specific server provided values.
- cassandra_
user_ Getconfig Cassanda Cassandra User Config Args defines Cassandra specific additional configuration options. The following configuration options available:
- cloud_
name str defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- components
Sequence[Get
Cassanda Component Args] - maintenance_
window_ strdow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan str
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- project_
vpc_ strid optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
host str Cassandra hostname.
- service_
integrations Sequence[GetCassanda Service Integration Args] - service_
password str Password used for connecting to the Cassandra service, if applicable.
- service_
port int Cassandra port.
- service_
type str - service_
uri str URI for connecting to the Cassandra service.
- service_
username str Username used for connecting to the Cassandra service, if applicable.
- state str
Service state.
- termination_
protection bool prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
getCassanda Result
The following output properties are available:
- Cassandra
Get
Cassanda Cassandra Cassandra specific server provided values.
- Components
List<Get
Cassanda Component> - Id string
The provider-assigned unique ID for this managed resource.
- Project string
- Service
Host string Cassandra hostname.
- Service
Name string - Service
Password string Password used for connecting to the Cassandra service, if applicable.
- Service
Port int Cassandra port.
- Service
Type string - Service
Uri string URI for connecting to the Cassandra service.
- Service
Username string Username used for connecting to the Cassandra service, if applicable.
- State string
Service state.
- Cassandra
User GetConfig Cassanda Cassandra User Config defines Cassandra specific additional configuration options. The following configuration options available:
- Cloud
Name string defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations List<GetCassanda Service Integration> - Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Cassandra
Get
Cassanda Cassandra Cassandra specific server provided values.
- Components
[]Get
Cassanda Component - Id string
The provider-assigned unique ID for this managed resource.
- Project string
- Service
Host string Cassandra hostname.
- Service
Name string - Service
Password string Password used for connecting to the Cassandra service, if applicable.
- Service
Port int Cassandra port.
- Service
Type string - Service
Uri string URI for connecting to the Cassandra service.
- Service
Username string Username used for connecting to the Cassandra service, if applicable.
- State string
Service state.
- Cassandra
User GetConfig Cassanda Cassandra User Config defines Cassandra specific additional configuration options. The following configuration options available:
- Cloud
Name string defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- Maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- Project
Vpc stringId optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations []GetCassanda Service Integration - Termination
Protection bool prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- cassandra
Get
Cassanda Cassandra Cassandra specific server provided values.
- components
Get
Cassanda Component[] - id string
The provider-assigned unique ID for this managed resource.
- project string
- service
Host string Cassandra hostname.
- service
Name string - service
Password string Password used for connecting to the Cassandra service, if applicable.
- service
Port number Cassandra port.
- service
Type string - service
Uri string URI for connecting to the Cassandra service.
- service
Username string Username used for connecting to the Cassandra service, if applicable.
- state string
Service state.
- cassandra
User GetConfig Cassanda Cassandra User Config defines Cassandra specific additional configuration options. The following configuration options available:
- cloud
Name string defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- maintenance
Window stringDow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance
Window stringTime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan string
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- project
Vpc stringId optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations GetCassanda Service Integration[] - termination
Protection boolean prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- cassandra
Get
Cassanda Cassandra Cassandra specific server provided values.
- components
Sequence[Get
Cassanda Component] - id str
The provider-assigned unique ID for this managed resource.
- project str
- service_
host str Cassandra hostname.
- service_
name str - service_
password str Password used for connecting to the Cassandra service, if applicable.
- service_
port int Cassandra port.
- service_
type str - service_
uri str URI for connecting to the Cassandra service.
- service_
username str Username used for connecting to the Cassandra service, if applicable.
- state str
Service state.
- cassandra_
user_ Getconfig Cassanda Cassandra User Config defines Cassandra specific additional configuration options. The following configuration options available:
- cloud_
name str defines the cloud provider and region where the service is hosted. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (
aws
,azure
,do
google
,upcloud
, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider’s own support articles, like here for Google and here for AWS.- maintenance_
window_ strdow day of week when maintenance operations should be performed. On monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan str
defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist
,startup-x
,business-x
andpremium-x
wherex
is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The exact options can be seen from the Aiven web console’s Create Service dialog.- project_
vpc_ strid optionally specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference as shown above to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
integrations Sequence[GetCassanda Service Integration] - termination_
protection bool prevents the service from being deleted. It is recommended to set this to
true
for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
Supporting Types
GetCassandaCassandraUserConfig
- Ip
Filters List<string> allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Migrate
Sstableloader string sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
- Private
Access GetCassanda Cassandra User Config Private Access Args Allow access to selected service ports from private networks.
- Project
To stringFork From - Public
Access GetCassanda Cassandra User Config Public Access Args Allow access to selected service ports from the public Internet
- Service
To stringFork From Name of another service to fork from. This has effect only when a new service is being created.
- Ip
Filters []string allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- Migrate
Sstableloader string sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
- Private
Access GetCassanda Cassandra User Config Private Access Allow access to selected service ports from private networks.
- Project
To stringFork From - Public
Access GetCassanda Cassandra User Config Public Access Allow access to selected service ports from the public Internet
- Service
To stringFork From Name of another service to fork from. This has effect only when a new service is being created.
- ip
Filters string[] allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- migrate
Sstableloader string sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
- private
Access GetCassanda Cassandra User Config Private Access Allow access to selected service ports from private networks.
- project
To stringFork From - public
Access GetCassanda Cassandra User Config Public Access Allow access to selected service ports from the public Internet
- service
To stringFork From Name of another service to fork from. This has effect only when a new service is being created.
- ip_
filters Sequence[str] allow incoming connections from CIDR address block, e.g.
10.20.0.0/16
- migrate_
sstableloader str sets the service into migration mode enabling the sstableloader utility to be used to upload Cassandra data files. Available only on service create.
- private_
access GetCassanda Cassandra User Config Private Access Args Allow access to selected service ports from private networks.
- project_
to_ strfork_ from - public_
access GetCassanda Cassandra User Config Public Access Args Allow access to selected service ports from the public Internet
- service_
to_ strfork_ from Name of another service to fork from. This has effect only when a new service is being created.
GetCassandaCassandraUserConfigPrivateAccess
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus str
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
GetCassandaCassandraUserConfigPublicAccess
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- Prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus string
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
- prometheus str
Allow clients to connect to prometheus from the public internet for service nodes that are in a project VPC or another type of private network.
GetCassandaComponent
GetCassandaServiceIntegration
- Integration
Type string - Source
Service stringName
- Integration
Type string - Source
Service stringName
- integration
Type string - source
Service stringName
Package Details
- Repository
- https://github.com/pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aiven
Terraform Provider.