All URIs are relative to https://s3.eu-central-3.ionoscloud.com
Method | HTTP request | Description |
---|---|---|
DeleteBucketPolicy | Delete /{Bucket}?policy | DeleteBucketPolicy |
GetBucketPolicy | Get /{Bucket}?policy | GetBucketPolicy |
GetBucketPolicyStatus | Get /{Bucket}?policyStatus | GetBucketPolicyStatus |
PutBucketPolicy | Put /{Bucket}?policy | PutBucketPolicy |
var result = DeleteBucketPolicy(ctx, bucket)
.Execute()
DeleteBucketPolicy
package main
import (
"context"
"fmt"
"os"
ionoscloud "github.com/ionos-cloud/sdk-go-object-storage"
)
func main() {
bucket := "bucket_example" // string |
configuration := ionoscloud.NewConfiguration("USERNAME", "PASSWORD", "TOKEN", "HOST_URL")
apiClient := ionoscloud.NewAPIClient(configuration)
resource, resp, err := apiClient.PolicyApi.DeleteBucketPolicy(context.Background(), bucket).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PolicyApi.DeleteBucketPolicy``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", resp)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
bucket | string |
Other parameters are passed through a pointer to an apiDeleteBucketPolicyRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
(empty response body)
- Content-Type: Not defined
- Accept: application/xml
Each operation can use different server URL defined using OperationServers
map in the Configuration
.
An operation is uniquely identified by "PolicyApiService.DeleteBucketPolicy"
string.
Similar rules for overriding default operation server index and variables apply by using sw.ContextOperationServerIndices
and sw.ContextOperationServerVariables
context maps.
ctx := context.WithValue(context.Background(), {packageName}.ContextOperationServerIndices, map[string]int{
"PolicyApiService.DeleteBucketPolicy": 2,
})
ctx = context.WithValue(context.Background(), {packageName}.ContextOperationServerVariables, map[string]map[string]string{
"PolicyApiService.DeleteBucketPolicy": {
"port": "8443",
},
})
var result BucketPolicy = GetBucketPolicy(ctx, bucket)
.Execute()
GetBucketPolicy
package main
import (
"context"
"fmt"
"os"
ionoscloud "github.com/ionos-cloud/sdk-go-object-storage"
)
func main() {
bucket := "bucket_example" // string |
configuration := ionoscloud.NewConfiguration("USERNAME", "PASSWORD", "TOKEN", "HOST_URL")
apiClient := ionoscloud.NewAPIClient(configuration)
resource, resp, err := apiClient.PolicyApi.GetBucketPolicy(context.Background(), bucket).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PolicyApi.GetBucketPolicy``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", resp)
}
// response from `GetBucketPolicy`: BucketPolicy
fmt.Fprintf(os.Stdout, "Response from `PolicyApi.GetBucketPolicy`: %v\n", resource)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
bucket | string |
Other parameters are passed through a pointer to an apiGetBucketPolicyRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/jsonapplication/xml
Each operation can use different server URL defined using OperationServers
map in the Configuration
.
An operation is uniquely identified by "PolicyApiService.GetBucketPolicy"
string.
Similar rules for overriding default operation server index and variables apply by using sw.ContextOperationServerIndices
and sw.ContextOperationServerVariables
context maps.
ctx := context.WithValue(context.Background(), {packageName}.ContextOperationServerIndices, map[string]int{
"PolicyApiService.GetBucketPolicy": 2,
})
ctx = context.WithValue(context.Background(), {packageName}.ContextOperationServerVariables, map[string]map[string]string{
"PolicyApiService.GetBucketPolicy": {
"port": "8443",
},
})
var result PolicyStatus = GetBucketPolicyStatus(ctx, bucket)
.Execute()
GetBucketPolicyStatus
package main
import (
"context"
"fmt"
"os"
ionoscloud "github.com/ionos-cloud/sdk-go-object-storage"
)
func main() {
bucket := "bucket_example" // string |
configuration := ionoscloud.NewConfiguration("USERNAME", "PASSWORD", "TOKEN", "HOST_URL")
apiClient := ionoscloud.NewAPIClient(configuration)
resource, resp, err := apiClient.PolicyApi.GetBucketPolicyStatus(context.Background(), bucket).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PolicyApi.GetBucketPolicyStatus``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", resp)
}
// response from `GetBucketPolicyStatus`: PolicyStatus
fmt.Fprintf(os.Stdout, "Response from `PolicyApi.GetBucketPolicyStatus`: %v\n", resource)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
bucket | string |
Other parameters are passed through a pointer to an apiGetBucketPolicyStatusRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/xml
Each operation can use different server URL defined using OperationServers
map in the Configuration
.
An operation is uniquely identified by "PolicyApiService.GetBucketPolicyStatus"
string.
Similar rules for overriding default operation server index and variables apply by using sw.ContextOperationServerIndices
and sw.ContextOperationServerVariables
context maps.
ctx := context.WithValue(context.Background(), {packageName}.ContextOperationServerIndices, map[string]int{
"PolicyApiService.GetBucketPolicyStatus": 2,
})
ctx = context.WithValue(context.Background(), {packageName}.ContextOperationServerVariables, map[string]map[string]string{
"PolicyApiService.GetBucketPolicyStatus": {
"port": "8443",
},
})
var result = PutBucketPolicy(ctx, bucket)
.BucketPolicy(bucketPolicy)
.ContentMD5(contentMD5)
.Execute()
PutBucketPolicy
package main
import (
"context"
"fmt"
"os"
ionoscloud "github.com/ionos-cloud/sdk-go-object-storage"
)
func main() {
bucket := "bucket_example" // string |
bucketPolicy := *openapiclient.NewBucketPolicy([]openapiclient.BucketPolicyStatement{*openapiclient.NewBucketPolicyStatement([]string{"Action_example"}, "Effect_example", []string{"Resource_example"})}) // BucketPolicy |
contentMD5 := "contentMD5_example" // string | (optional)
configuration := ionoscloud.NewConfiguration("USERNAME", "PASSWORD", "TOKEN", "HOST_URL")
apiClient := ionoscloud.NewAPIClient(configuration)
resource, resp, err := apiClient.PolicyApi.PutBucketPolicy(context.Background(), bucket).BucketPolicy(bucketPolicy).ContentMD5(contentMD5).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PolicyApi.PutBucketPolicy``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", resp)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
bucket | string |
Other parameters are passed through a pointer to an apiPutBucketPolicyRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
bucketPolicy | BucketPolicy | ||
contentMD5 | string |
(empty response body)
- Content-Type: application/json
- Accept: application/xml
Each operation can use different server URL defined using OperationServers
map in the Configuration
.
An operation is uniquely identified by "PolicyApiService.PutBucketPolicy"
string.
Similar rules for overriding default operation server index and variables apply by using sw.ContextOperationServerIndices
and sw.ContextOperationServerVariables
context maps.
ctx := context.WithValue(context.Background(), {packageName}.ContextOperationServerIndices, map[string]int{
"PolicyApiService.PutBucketPolicy": 2,
})
ctx = context.WithValue(context.Background(), {packageName}.ContextOperationServerVariables, map[string]map[string]string{
"PolicyApiService.PutBucketPolicy": {
"port": "8443",
},
})