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 ObjectStorageCredential Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectStorageCredential(name: string, args: ObjectStorageCredentialArgs, opts?: CustomResourceOptions);@overload
def ObjectStorageCredential(resource_name: str,
args: ObjectStorageCredentialArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectStorageCredential(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
active: Optional[bool] = None)func NewObjectStorageCredential(ctx *Context, name string, args ObjectStorageCredentialArgs, opts ...ResourceOption) (*ObjectStorageCredential, error)public ObjectStorageCredential(string name, ObjectStorageCredentialArgs args, CustomResourceOptions? opts = null)
public ObjectStorageCredential(String name, ObjectStorageCredentialArgs args)
public ObjectStorageCredential(String name, ObjectStorageCredentialArgs args, CustomResourceOptions options)
type: biznetgio:ObjectStorageCredential
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "biznetgio_object_storage_credential" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ObjectStorageCredentialArgs
- 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 ObjectStorageCredentialArgs
- 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 ObjectStorageCredentialArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectStorageCredentialArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectStorageCredentialArgs
- 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 objectStorageCredentialResource = new Biznetgio.ObjectStorageCredential("objectStorageCredentialResource", new()
{
AccountId = "string",
Active = false,
});
example, err := biznetgio.NewObjectStorageCredential(ctx, "objectStorageCredentialResource", &biznetgio.ObjectStorageCredentialArgs{
AccountId: pulumi.String("string"),
Active: pulumi.Bool(false),
})
resource "biznetgio_object_storage_credential" "objectStorageCredentialResource" {
pulumi {
replace_on_changes = [account_id]
}
lifecycle {
create_before_destroy = true
}
account_id = "string"
active = false
}
var objectStorageCredentialResource = new ObjectStorageCredential("objectStorageCredentialResource", ObjectStorageCredentialArgs.builder()
.accountId("string")
.active(false)
.build());
object_storage_credential_resource = biznetgio.ObjectStorageCredential("objectStorageCredentialResource",
account_id="string",
active=False)
const objectStorageCredentialResource = new biznetgio.ObjectStorageCredential("objectStorageCredentialResource", {
accountId: "string",
active: false,
});
type: biznetgio:ObjectStorageCredential
properties:
accountId: string
active: false
ObjectStorageCredential 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 ObjectStorageCredential resource accepts the following input properties:
- account_
id string - Object storage instance account id. Create-only.
- active bool
- Whether the credential is enabled. Set false to disable without deleting. Defaults to true.
- account_
id str - Object storage instance account id. Create-only.
- active bool
- Whether the credential is enabled. Set false to disable without deleting. Defaults to true.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectStorageCredential resource produces the following output properties:
- Access
Key string - Credential access key, returned once at create.
- Id string
- The provider-assigned unique ID for this managed resource.
- Raw string
- Raw JSON of the last read response, for anything not modeled yet.
- Secret
Key string - Credential secret key, shown only once at create; keeps its last state value on refresh.
- Access
Key string - Credential access key, returned once at create.
- Id string
- The provider-assigned unique ID for this managed resource.
- Raw string
- Raw JSON of the last read response, for anything not modeled yet.
- Secret
Key string - Credential secret key, shown only once at create; keeps its last state value on refresh.
- access_
key string - Credential access key, returned once at create.
- id string
- The provider-assigned unique ID for this managed resource.
- raw string
- Raw JSON of the last read response, for anything not modeled yet.
- secret_
key string - Credential secret key, shown only once at create; keeps its last state value on refresh.
- access
Key String - Credential access key, returned once at create.
- id String
- The provider-assigned unique ID for this managed resource.
- raw String
- Raw JSON of the last read response, for anything not modeled yet.
- secret
Key String - Credential secret key, shown only once at create; keeps its last state value on refresh.
- access
Key string - Credential access key, returned once at create.
- id string
- The provider-assigned unique ID for this managed resource.
- raw string
- Raw JSON of the last read response, for anything not modeled yet.
- secret
Key string - Credential secret key, shown only once at create; keeps its last state value on refresh.
- access_
key str - Credential access key, returned once at create.
- id str
- The provider-assigned unique ID for this managed resource.
- raw str
- Raw JSON of the last read response, for anything not modeled yet.
- secret_
key str - Credential secret key, shown only once at create; keeps its last state value on refresh.
- access
Key String - Credential access key, returned once at create.
- id String
- The provider-assigned unique ID for this managed resource.
- raw String
- Raw JSON of the last read response, for anything not modeled yet.
- secret
Key String - Credential secret key, shown only once at create; keeps its last state value on refresh.
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