Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren
published on Wednesday, Aug 19, 2026 by shirasakaren
Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren
published on Wednesday, Aug 19, 2026 by shirasakaren
Create ObjectStorageBucket Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectStorageBucket(name: string, args: ObjectStorageBucketArgs, opts?: CustomResourceOptions);@overload
def ObjectStorageBucket(resource_name: str,
args: ObjectStorageBucketArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectStorageBucket(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
name: Optional[str] = None,
acl: Optional[str] = None)func NewObjectStorageBucket(ctx *Context, name string, args ObjectStorageBucketArgs, opts ...ResourceOption) (*ObjectStorageBucket, error)public ObjectStorageBucket(string name, ObjectStorageBucketArgs args, CustomResourceOptions? opts = null)
public ObjectStorageBucket(String name, ObjectStorageBucketArgs args)
public ObjectStorageBucket(String name, ObjectStorageBucketArgs args, CustomResourceOptions options)
type: biznetgio:ObjectStorageBucket
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "biznetgio_object_storage_bucket" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ObjectStorageBucketArgs
- 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 ObjectStorageBucketArgs
- 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 ObjectStorageBucketArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectStorageBucketArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectStorageBucketArgs
- 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 objectStorageBucketResource = new Biznetgio.ObjectStorageBucket("objectStorageBucketResource", new()
{
AccountId = "string",
Name = "string",
Acl = "string",
});
example, err := biznetgio.NewObjectStorageBucket(ctx, "objectStorageBucketResource", &biznetgio.ObjectStorageBucketArgs{
AccountId: pulumi.String("string"),
Name: pulumi.String("string"),
Acl: pulumi.String("string"),
})
resource "biznetgio_object_storage_bucket" "objectStorageBucketResource" {
pulumi {
replace_on_changes = [account_id, name]
}
lifecycle {
create_before_destroy = true
}
account_id = "string"
name = "string"
acl = "string"
}
var objectStorageBucketResource = new ObjectStorageBucket("objectStorageBucketResource", ObjectStorageBucketArgs.builder()
.accountId("string")
.name("string")
.acl("string")
.build());
object_storage_bucket_resource = biznetgio.ObjectStorageBucket("objectStorageBucketResource",
account_id="string",
name="string",
acl="string")
const objectStorageBucketResource = new biznetgio.ObjectStorageBucket("objectStorageBucketResource", {
accountId: "string",
name: "string",
acl: "string",
});
type: biznetgio:ObjectStorageBucket
properties:
accountId: string
acl: string
name: string
ObjectStorageBucket 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 ObjectStorageBucket resource accepts the following input properties:
- Account
Id string - Object storage instance account id. Create-only.
- Name string
- Bucket name, minimum 3 chars,
[a-zA-Z0-9-_]. Immutable, changing it replaces the bucket. - Acl string
- S3-style canned ACL: empty (default private), private, public-read, public-read-write, authenticated-read, log-delivery-write. Defaults to empty.
- Account
Id string - Object storage instance account id. Create-only.
- Name string
- Bucket name, minimum 3 chars,
[a-zA-Z0-9-_]. Immutable, changing it replaces the bucket. - Acl string
- S3-style canned ACL: empty (default private), private, public-read, public-read-write, authenticated-read, log-delivery-write. Defaults to empty.
- account_
id string - Object storage instance account id. Create-only.
- name string
- Bucket name, minimum 3 chars,
[a-zA-Z0-9-_]. Immutable, changing it replaces the bucket. - acl string
- S3-style canned ACL: empty (default private), private, public-read, public-read-write, authenticated-read, log-delivery-write. Defaults to empty.
- account
Id String - Object storage instance account id. Create-only.
- name String
- Bucket name, minimum 3 chars,
[a-zA-Z0-9-_]. Immutable, changing it replaces the bucket. - acl String
- S3-style canned ACL: empty (default private), private, public-read, public-read-write, authenticated-read, log-delivery-write. Defaults to empty.
- account
Id string - Object storage instance account id. Create-only.
- name string
- Bucket name, minimum 3 chars,
[a-zA-Z0-9-_]. Immutable, changing it replaces the bucket. - acl string
- S3-style canned ACL: empty (default private), private, public-read, public-read-write, authenticated-read, log-delivery-write. Defaults to empty.
- account_
id str - Object storage instance account id. Create-only.
- name str
- Bucket name, minimum 3 chars,
[a-zA-Z0-9-_]. Immutable, changing it replaces the bucket. - acl str
- S3-style canned ACL: empty (default private), private, public-read, public-read-write, authenticated-read, log-delivery-write. Defaults to empty.
- account
Id String - Object storage instance account id. Create-only.
- name String
- Bucket name, minimum 3 chars,
[a-zA-Z0-9-_]. Immutable, changing it replaces the bucket. - acl String
- S3-style canned ACL: empty (default private), private, public-read, public-read-write, authenticated-read, log-delivery-write. Defaults to empty.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectStorageBucket resource produces the following output properties:
Package Details
- Repository
- biznetgio github.com/shirasakaren/pulumi-biznetgio
- License
- Apache-2.0
Viewing docs for Pulumi BiznetGIO Provider v0.1.7
published on Wednesday, Aug 19, 2026 by shirasakaren
published on Wednesday, Aug 19, 2026 by shirasakaren