alicloud.oos.ServiceSetting
Explore with Pulumi AI
Provides a OOS Service Setting resource.
For information about OOS Service Setting and how to use it, see What is Service Setting.
NOTE: Available in v1.147.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf-testaccoossetting";
const _default = new alicloud.oss.Bucket("default", {bucket: name});
const defaultBucketAcl = new alicloud.oss.BucketAcl("default", {
bucket: _default.bucket,
acl: "public-read-write",
});
const defaultProject = new alicloud.log.Project("default", {projectName: name});
const defaultServiceSetting = new alicloud.oos.ServiceSetting("default", {
deliveryOssEnabled: true,
deliveryOssKeyPrefix: "path1/",
deliveryOssBucketName: _default.bucket,
deliverySlsEnabled: true,
deliverySlsProjectName: defaultProject.projectName,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf-testaccoossetting"
default = alicloud.oss.Bucket("default", bucket=name)
default_bucket_acl = alicloud.oss.BucketAcl("default",
bucket=default.bucket,
acl="public-read-write")
default_project = alicloud.log.Project("default", project_name=name)
default_service_setting = alicloud.oos.ServiceSetting("default",
delivery_oss_enabled=True,
delivery_oss_key_prefix="path1/",
delivery_oss_bucket_name=default.bucket,
delivery_sls_enabled=True,
delivery_sls_project_name=default_project.project_name)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/log"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/oos"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/oss"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tf-testaccoossetting"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := oss.NewBucket(ctx, "default", &oss.BucketArgs{
Bucket: pulumi.String(name),
})
if err != nil {
return err
}
_, err = oss.NewBucketAcl(ctx, "default", &oss.BucketAclArgs{
Bucket: _default.Bucket,
Acl: pulumi.String("public-read-write"),
})
if err != nil {
return err
}
defaultProject, err := log.NewProject(ctx, "default", &log.ProjectArgs{
ProjectName: pulumi.String(name),
})
if err != nil {
return err
}
_, err = oos.NewServiceSetting(ctx, "default", &oos.ServiceSettingArgs{
DeliveryOssEnabled: pulumi.Bool(true),
DeliveryOssKeyPrefix: pulumi.String("path1/"),
DeliveryOssBucketName: _default.Bucket,
DeliverySlsEnabled: pulumi.Bool(true),
DeliverySlsProjectName: defaultProject.ProjectName,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf-testaccoossetting";
var @default = new AliCloud.Oss.Bucket("default", new()
{
BucketName = name,
});
var defaultBucketAcl = new AliCloud.Oss.BucketAcl("default", new()
{
Bucket = @default.BucketName,
Acl = "public-read-write",
});
var defaultProject = new AliCloud.Log.Project("default", new()
{
ProjectName = name,
});
var defaultServiceSetting = new AliCloud.Oos.ServiceSetting("default", new()
{
DeliveryOssEnabled = true,
DeliveryOssKeyPrefix = "path1/",
DeliveryOssBucketName = @default.BucketName,
DeliverySlsEnabled = true,
DeliverySlsProjectName = defaultProject.ProjectName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.oss.Bucket;
import com.pulumi.alicloud.oss.BucketArgs;
import com.pulumi.alicloud.oss.BucketAcl;
import com.pulumi.alicloud.oss.BucketAclArgs;
import com.pulumi.alicloud.log.Project;
import com.pulumi.alicloud.log.ProjectArgs;
import com.pulumi.alicloud.oos.ServiceSetting;
import com.pulumi.alicloud.oos.ServiceSettingArgs;
import java.util.List;
import java.util.ArrayList;
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 config = ctx.config();
final var name = config.get("name").orElse("tf-testaccoossetting");
var default_ = new Bucket("default", BucketArgs.builder()
.bucket(name)
.build());
var defaultBucketAcl = new BucketAcl("defaultBucketAcl", BucketAclArgs.builder()
.bucket(default_.bucket())
.acl("public-read-write")
.build());
var defaultProject = new Project("defaultProject", ProjectArgs.builder()
.projectName(name)
.build());
var defaultServiceSetting = new ServiceSetting("defaultServiceSetting", ServiceSettingArgs.builder()
.deliveryOssEnabled(true)
.deliveryOssKeyPrefix("path1/")
.deliveryOssBucketName(default_.bucket())
.deliverySlsEnabled(true)
.deliverySlsProjectName(defaultProject.projectName())
.build());
}
}
configuration:
name:
type: string
default: tf-testaccoossetting
resources:
default:
type: alicloud:oss:Bucket
properties:
bucket: ${name}
defaultBucketAcl:
type: alicloud:oss:BucketAcl
name: default
properties:
bucket: ${default.bucket}
acl: public-read-write
defaultProject:
type: alicloud:log:Project
name: default
properties:
projectName: ${name}
defaultServiceSetting:
type: alicloud:oos:ServiceSetting
name: default
properties:
deliveryOssEnabled: true
deliveryOssKeyPrefix: path1/
deliveryOssBucketName: ${default.bucket}
deliverySlsEnabled: true
deliverySlsProjectName: ${defaultProject.projectName}
Create ServiceSetting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceSetting(name: string, args?: ServiceSettingArgs, opts?: CustomResourceOptions);
@overload
def ServiceSetting(resource_name: str,
args: Optional[ServiceSettingArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceSetting(resource_name: str,
opts: Optional[ResourceOptions] = None,
delivery_oss_bucket_name: Optional[str] = None,
delivery_oss_enabled: Optional[bool] = None,
delivery_oss_key_prefix: Optional[str] = None,
delivery_sls_enabled: Optional[bool] = None,
delivery_sls_project_name: Optional[str] = None)
func NewServiceSetting(ctx *Context, name string, args *ServiceSettingArgs, opts ...ResourceOption) (*ServiceSetting, error)
public ServiceSetting(string name, ServiceSettingArgs? args = null, CustomResourceOptions? opts = null)
public ServiceSetting(String name, ServiceSettingArgs args)
public ServiceSetting(String name, ServiceSettingArgs args, CustomResourceOptions options)
type: alicloud:oos:ServiceSetting
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 ServiceSettingArgs
- 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 ServiceSettingArgs
- 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 ServiceSettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceSettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceSettingArgs
- 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 serviceSettingResource = new AliCloud.Oos.ServiceSetting("serviceSettingResource", new()
{
DeliveryOssBucketName = "string",
DeliveryOssEnabled = false,
DeliveryOssKeyPrefix = "string",
DeliverySlsEnabled = false,
DeliverySlsProjectName = "string",
});
example, err := oos.NewServiceSetting(ctx, "serviceSettingResource", &oos.ServiceSettingArgs{
DeliveryOssBucketName: pulumi.String("string"),
DeliveryOssEnabled: pulumi.Bool(false),
DeliveryOssKeyPrefix: pulumi.String("string"),
DeliverySlsEnabled: pulumi.Bool(false),
DeliverySlsProjectName: pulumi.String("string"),
})
var serviceSettingResource = new ServiceSetting("serviceSettingResource", ServiceSettingArgs.builder()
.deliveryOssBucketName("string")
.deliveryOssEnabled(false)
.deliveryOssKeyPrefix("string")
.deliverySlsEnabled(false)
.deliverySlsProjectName("string")
.build());
service_setting_resource = alicloud.oos.ServiceSetting("serviceSettingResource",
delivery_oss_bucket_name="string",
delivery_oss_enabled=False,
delivery_oss_key_prefix="string",
delivery_sls_enabled=False,
delivery_sls_project_name="string")
const serviceSettingResource = new alicloud.oos.ServiceSetting("serviceSettingResource", {
deliveryOssBucketName: "string",
deliveryOssEnabled: false,
deliveryOssKeyPrefix: "string",
deliverySlsEnabled: false,
deliverySlsProjectName: "string",
});
type: alicloud:oos:ServiceSetting
properties:
deliveryOssBucketName: string
deliveryOssEnabled: false
deliveryOssKeyPrefix: string
deliverySlsEnabled: false
deliverySlsProjectName: string
ServiceSetting Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ServiceSetting resource accepts the following input properties:
- Delivery
Oss stringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Oss boolEnabled - Is the recording function for the OSS delivery template enabled.
- Delivery
Oss stringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Sls boolEnabled - Is the execution record function to SLS delivery Template turned on.
- Delivery
Sls stringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- Delivery
Oss stringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Oss boolEnabled - Is the recording function for the OSS delivery template enabled.
- Delivery
Oss stringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Sls boolEnabled - Is the execution record function to SLS delivery Template turned on.
- Delivery
Sls stringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery
Oss StringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Oss BooleanEnabled - Is the recording function for the OSS delivery template enabled.
- delivery
Oss StringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Sls BooleanEnabled - Is the execution record function to SLS delivery Template turned on.
- delivery
Sls StringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery
Oss stringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Oss booleanEnabled - Is the recording function for the OSS delivery template enabled.
- delivery
Oss stringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Sls booleanEnabled - Is the execution record function to SLS delivery Template turned on.
- delivery
Sls stringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery_
oss_ strbucket_ name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery_
oss_ boolenabled - Is the recording function for the OSS delivery template enabled.
- delivery_
oss_ strkey_ prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery_
sls_ boolenabled - Is the execution record function to SLS delivery Template turned on.
- delivery_
sls_ strproject_ name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery
Oss StringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Oss BooleanEnabled - Is the recording function for the OSS delivery template enabled.
- delivery
Oss StringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Sls BooleanEnabled - Is the execution record function to SLS delivery Template turned on.
- delivery
Sls StringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceSetting resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ServiceSetting Resource
Get an existing ServiceSetting 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?: ServiceSettingState, opts?: CustomResourceOptions): ServiceSetting
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
delivery_oss_bucket_name: Optional[str] = None,
delivery_oss_enabled: Optional[bool] = None,
delivery_oss_key_prefix: Optional[str] = None,
delivery_sls_enabled: Optional[bool] = None,
delivery_sls_project_name: Optional[str] = None) -> ServiceSetting
func GetServiceSetting(ctx *Context, name string, id IDInput, state *ServiceSettingState, opts ...ResourceOption) (*ServiceSetting, error)
public static ServiceSetting Get(string name, Input<string> id, ServiceSettingState? state, CustomResourceOptions? opts = null)
public static ServiceSetting get(String name, Output<String> id, ServiceSettingState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Delivery
Oss stringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Oss boolEnabled - Is the recording function for the OSS delivery template enabled.
- Delivery
Oss stringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Sls boolEnabled - Is the execution record function to SLS delivery Template turned on.
- Delivery
Sls stringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- Delivery
Oss stringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Oss boolEnabled - Is the recording function for the OSS delivery template enabled.
- Delivery
Oss stringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - Delivery
Sls boolEnabled - Is the execution record function to SLS delivery Template turned on.
- Delivery
Sls stringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery
Oss StringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Oss BooleanEnabled - Is the recording function for the OSS delivery template enabled.
- delivery
Oss StringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Sls BooleanEnabled - Is the execution record function to SLS delivery Template turned on.
- delivery
Sls StringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery
Oss stringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Oss booleanEnabled - Is the recording function for the OSS delivery template enabled.
- delivery
Oss stringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Sls booleanEnabled - Is the execution record function to SLS delivery Template turned on.
- delivery
Sls stringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery_
oss_ strbucket_ name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery_
oss_ boolenabled - Is the recording function for the OSS delivery template enabled.
- delivery_
oss_ strkey_ prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery_
sls_ boolenabled - Is the execution record function to SLS delivery Template turned on.
- delivery_
sls_ strproject_ name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
- delivery
Oss StringBucket Name - The name of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Oss BooleanEnabled - Is the recording function for the OSS delivery template enabled.
- delivery
Oss StringKey Prefix - The Directory of the OSS bucket. NOTE: When the
delivery_oss_enabled
istrue
, Thedelivery_oss_bucket_name
is valid. - delivery
Sls BooleanEnabled - Is the execution record function to SLS delivery Template turned on.
- delivery
Sls StringProject Name - The name of SLS Project. NOTE: When the
delivery_sls_enabled
istrue
, Thedelivery_sls_project_name
is valid.
Import
OOS Service Setting can be imported using the id, e.g.
$ pulumi import alicloud:oos/serviceSetting:ServiceSetting example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.