pulumi-minio 1.0.0a1753337518__py3-none-any.whl → 1.0.0a1753510218__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_minio/__init__.py +1 -1
- pulumi_minio/_inputs.py +114 -115
- pulumi_minio/config/__init__.py +1 -1
- pulumi_minio/config/__init__.pyi +1 -2
- pulumi_minio/config/vars.py +14 -15
- pulumi_minio/get_iam_policy_document.py +22 -23
- pulumi_minio/iam_group.py +51 -52
- pulumi_minio/iam_group_membership.py +52 -53
- pulumi_minio/iam_group_policy.py +53 -54
- pulumi_minio/iam_group_policy_attachment.py +27 -28
- pulumi_minio/iam_group_user_attachment.py +27 -28
- pulumi_minio/iam_policy.py +40 -41
- pulumi_minio/iam_service_account.py +86 -87
- pulumi_minio/iam_user.py +94 -95
- pulumi_minio/iam_user_policy_attachment.py +27 -28
- pulumi_minio/ilm_policy.py +17 -18
- pulumi_minio/kms_key.py +14 -15
- pulumi_minio/outputs.py +70 -71
- pulumi_minio/provider.py +122 -123
- pulumi_minio/pulumi-plugin.json +1 -1
- pulumi_minio/s3_bucket.py +93 -94
- pulumi_minio/s3_bucket_notification.py +17 -18
- pulumi_minio/s3_bucket_policy.py +27 -28
- pulumi_minio/s3_bucket_server_side_encryption.py +40 -41
- pulumi_minio/s3_bucket_versioning.py +17 -18
- pulumi_minio/s3_object.py +105 -106
- {pulumi_minio-1.0.0a1753337518.dist-info → pulumi_minio-1.0.0a1753510218.dist-info}/METADATA +1 -1
- pulumi_minio-1.0.0a1753510218.dist-info/RECORD +32 -0
- pulumi_minio-1.0.0a1753337518.dist-info/RECORD +0 -32
- {pulumi_minio-1.0.0a1753337518.dist-info → pulumi_minio-1.0.0a1753510218.dist-info}/WHEEL +0 -0
- {pulumi_minio-1.0.0a1753337518.dist-info → pulumi_minio-1.0.0a1753510218.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
6
|
-
import copy
|
5
|
+
import builtins as _builtins
|
7
6
|
import warnings
|
8
7
|
import sys
|
9
8
|
import pulumi
|
@@ -20,9 +19,9 @@ __all__ = ['S3BucketServerSideEncryptionArgs', 'S3BucketServerSideEncryption']
|
|
20
19
|
@pulumi.input_type
|
21
20
|
class S3BucketServerSideEncryptionArgs:
|
22
21
|
def __init__(__self__, *,
|
23
|
-
bucket: pulumi.Input[
|
24
|
-
encryption_type: pulumi.Input[
|
25
|
-
kms_key_id: pulumi.Input[
|
22
|
+
bucket: pulumi.Input[_builtins.str],
|
23
|
+
encryption_type: pulumi.Input[_builtins.str],
|
24
|
+
kms_key_id: pulumi.Input[_builtins.str]):
|
26
25
|
"""
|
27
26
|
The set of arguments for constructing a S3BucketServerSideEncryption resource.
|
28
27
|
"""
|
@@ -30,40 +29,40 @@ class S3BucketServerSideEncryptionArgs:
|
|
30
29
|
pulumi.set(__self__, "encryption_type", encryption_type)
|
31
30
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
32
31
|
|
33
|
-
@property
|
32
|
+
@_builtins.property
|
34
33
|
@pulumi.getter
|
35
|
-
def bucket(self) -> pulumi.Input[
|
34
|
+
def bucket(self) -> pulumi.Input[_builtins.str]:
|
36
35
|
return pulumi.get(self, "bucket")
|
37
36
|
|
38
37
|
@bucket.setter
|
39
|
-
def bucket(self, value: pulumi.Input[
|
38
|
+
def bucket(self, value: pulumi.Input[_builtins.str]):
|
40
39
|
pulumi.set(self, "bucket", value)
|
41
40
|
|
42
|
-
@property
|
41
|
+
@_builtins.property
|
43
42
|
@pulumi.getter(name="encryptionType")
|
44
|
-
def encryption_type(self) -> pulumi.Input[
|
43
|
+
def encryption_type(self) -> pulumi.Input[_builtins.str]:
|
45
44
|
return pulumi.get(self, "encryption_type")
|
46
45
|
|
47
46
|
@encryption_type.setter
|
48
|
-
def encryption_type(self, value: pulumi.Input[
|
47
|
+
def encryption_type(self, value: pulumi.Input[_builtins.str]):
|
49
48
|
pulumi.set(self, "encryption_type", value)
|
50
49
|
|
51
|
-
@property
|
50
|
+
@_builtins.property
|
52
51
|
@pulumi.getter(name="kmsKeyId")
|
53
|
-
def kms_key_id(self) -> pulumi.Input[
|
52
|
+
def kms_key_id(self) -> pulumi.Input[_builtins.str]:
|
54
53
|
return pulumi.get(self, "kms_key_id")
|
55
54
|
|
56
55
|
@kms_key_id.setter
|
57
|
-
def kms_key_id(self, value: pulumi.Input[
|
56
|
+
def kms_key_id(self, value: pulumi.Input[_builtins.str]):
|
58
57
|
pulumi.set(self, "kms_key_id", value)
|
59
58
|
|
60
59
|
|
61
60
|
@pulumi.input_type
|
62
61
|
class _S3BucketServerSideEncryptionState:
|
63
62
|
def __init__(__self__, *,
|
64
|
-
bucket: Optional[pulumi.Input[
|
65
|
-
encryption_type: Optional[pulumi.Input[
|
66
|
-
kms_key_id: Optional[pulumi.Input[
|
63
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
64
|
+
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
65
|
+
kms_key_id: Optional[pulumi.Input[_builtins.str]] = None):
|
67
66
|
"""
|
68
67
|
Input properties used for looking up and filtering S3BucketServerSideEncryption resources.
|
69
68
|
"""
|
@@ -74,31 +73,31 @@ class _S3BucketServerSideEncryptionState:
|
|
74
73
|
if kms_key_id is not None:
|
75
74
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
76
75
|
|
77
|
-
@property
|
76
|
+
@_builtins.property
|
78
77
|
@pulumi.getter
|
79
|
-
def bucket(self) -> Optional[pulumi.Input[
|
78
|
+
def bucket(self) -> Optional[pulumi.Input[_builtins.str]]:
|
80
79
|
return pulumi.get(self, "bucket")
|
81
80
|
|
82
81
|
@bucket.setter
|
83
|
-
def bucket(self, value: Optional[pulumi.Input[
|
82
|
+
def bucket(self, value: Optional[pulumi.Input[_builtins.str]]):
|
84
83
|
pulumi.set(self, "bucket", value)
|
85
84
|
|
86
|
-
@property
|
85
|
+
@_builtins.property
|
87
86
|
@pulumi.getter(name="encryptionType")
|
88
|
-
def encryption_type(self) -> Optional[pulumi.Input[
|
87
|
+
def encryption_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
89
88
|
return pulumi.get(self, "encryption_type")
|
90
89
|
|
91
90
|
@encryption_type.setter
|
92
|
-
def encryption_type(self, value: Optional[pulumi.Input[
|
91
|
+
def encryption_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
93
92
|
pulumi.set(self, "encryption_type", value)
|
94
93
|
|
95
|
-
@property
|
94
|
+
@_builtins.property
|
96
95
|
@pulumi.getter(name="kmsKeyId")
|
97
|
-
def kms_key_id(self) -> Optional[pulumi.Input[
|
96
|
+
def kms_key_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
98
97
|
return pulumi.get(self, "kms_key_id")
|
99
98
|
|
100
99
|
@kms_key_id.setter
|
101
|
-
def kms_key_id(self, value: Optional[pulumi.Input[
|
100
|
+
def kms_key_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
102
101
|
pulumi.set(self, "kms_key_id", value)
|
103
102
|
|
104
103
|
|
@@ -108,9 +107,9 @@ class S3BucketServerSideEncryption(pulumi.CustomResource):
|
|
108
107
|
def __init__(__self__,
|
109
108
|
resource_name: str,
|
110
109
|
opts: Optional[pulumi.ResourceOptions] = None,
|
111
|
-
bucket: Optional[pulumi.Input[
|
112
|
-
encryption_type: Optional[pulumi.Input[
|
113
|
-
kms_key_id: Optional[pulumi.Input[
|
110
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
111
|
+
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
112
|
+
kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
|
114
113
|
__props__=None):
|
115
114
|
"""
|
116
115
|
Create a S3BucketServerSideEncryption resource with the given unique name, props, and options.
|
@@ -140,9 +139,9 @@ class S3BucketServerSideEncryption(pulumi.CustomResource):
|
|
140
139
|
def _internal_init(__self__,
|
141
140
|
resource_name: str,
|
142
141
|
opts: Optional[pulumi.ResourceOptions] = None,
|
143
|
-
bucket: Optional[pulumi.Input[
|
144
|
-
encryption_type: Optional[pulumi.Input[
|
145
|
-
kms_key_id: Optional[pulumi.Input[
|
142
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
143
|
+
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
144
|
+
kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
|
146
145
|
__props__=None):
|
147
146
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
148
147
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -171,9 +170,9 @@ class S3BucketServerSideEncryption(pulumi.CustomResource):
|
|
171
170
|
def get(resource_name: str,
|
172
171
|
id: pulumi.Input[str],
|
173
172
|
opts: Optional[pulumi.ResourceOptions] = None,
|
174
|
-
bucket: Optional[pulumi.Input[
|
175
|
-
encryption_type: Optional[pulumi.Input[
|
176
|
-
kms_key_id: Optional[pulumi.Input[
|
173
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
174
|
+
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
175
|
+
kms_key_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'S3BucketServerSideEncryption':
|
177
176
|
"""
|
178
177
|
Get an existing S3BucketServerSideEncryption resource's state with the given name, id, and optional extra
|
179
178
|
properties used to qualify the lookup.
|
@@ -191,18 +190,18 @@ class S3BucketServerSideEncryption(pulumi.CustomResource):
|
|
191
190
|
__props__.__dict__["kms_key_id"] = kms_key_id
|
192
191
|
return S3BucketServerSideEncryption(resource_name, opts=opts, __props__=__props__)
|
193
192
|
|
194
|
-
@property
|
193
|
+
@_builtins.property
|
195
194
|
@pulumi.getter
|
196
|
-
def bucket(self) -> pulumi.Output[
|
195
|
+
def bucket(self) -> pulumi.Output[_builtins.str]:
|
197
196
|
return pulumi.get(self, "bucket")
|
198
197
|
|
199
|
-
@property
|
198
|
+
@_builtins.property
|
200
199
|
@pulumi.getter(name="encryptionType")
|
201
|
-
def encryption_type(self) -> pulumi.Output[
|
200
|
+
def encryption_type(self) -> pulumi.Output[_builtins.str]:
|
202
201
|
return pulumi.get(self, "encryption_type")
|
203
202
|
|
204
|
-
@property
|
203
|
+
@_builtins.property
|
205
204
|
@pulumi.getter(name="kmsKeyId")
|
206
|
-
def kms_key_id(self) -> pulumi.Output[
|
205
|
+
def kms_key_id(self) -> pulumi.Output[_builtins.str]:
|
207
206
|
return pulumi.get(self, "kms_key_id")
|
208
207
|
|
@@ -2,8 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
-
import builtins
|
6
|
-
import copy
|
5
|
+
import builtins as _builtins
|
7
6
|
import warnings
|
8
7
|
import sys
|
9
8
|
import pulumi
|
@@ -22,7 +21,7 @@ __all__ = ['S3BucketVersioningArgs', 'S3BucketVersioning']
|
|
22
21
|
@pulumi.input_type
|
23
22
|
class S3BucketVersioningArgs:
|
24
23
|
def __init__(__self__, *,
|
25
|
-
bucket: pulumi.Input[
|
24
|
+
bucket: pulumi.Input[_builtins.str],
|
26
25
|
versioning_configuration: pulumi.Input['S3BucketVersioningVersioningConfigurationArgs']):
|
27
26
|
"""
|
28
27
|
The set of arguments for constructing a S3BucketVersioning resource.
|
@@ -30,16 +29,16 @@ class S3BucketVersioningArgs:
|
|
30
29
|
pulumi.set(__self__, "bucket", bucket)
|
31
30
|
pulumi.set(__self__, "versioning_configuration", versioning_configuration)
|
32
31
|
|
33
|
-
@property
|
32
|
+
@_builtins.property
|
34
33
|
@pulumi.getter
|
35
|
-
def bucket(self) -> pulumi.Input[
|
34
|
+
def bucket(self) -> pulumi.Input[_builtins.str]:
|
36
35
|
return pulumi.get(self, "bucket")
|
37
36
|
|
38
37
|
@bucket.setter
|
39
|
-
def bucket(self, value: pulumi.Input[
|
38
|
+
def bucket(self, value: pulumi.Input[_builtins.str]):
|
40
39
|
pulumi.set(self, "bucket", value)
|
41
40
|
|
42
|
-
@property
|
41
|
+
@_builtins.property
|
43
42
|
@pulumi.getter(name="versioningConfiguration")
|
44
43
|
def versioning_configuration(self) -> pulumi.Input['S3BucketVersioningVersioningConfigurationArgs']:
|
45
44
|
return pulumi.get(self, "versioning_configuration")
|
@@ -52,7 +51,7 @@ class S3BucketVersioningArgs:
|
|
52
51
|
@pulumi.input_type
|
53
52
|
class _S3BucketVersioningState:
|
54
53
|
def __init__(__self__, *,
|
55
|
-
bucket: Optional[pulumi.Input[
|
54
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
56
55
|
versioning_configuration: Optional[pulumi.Input['S3BucketVersioningVersioningConfigurationArgs']] = None):
|
57
56
|
"""
|
58
57
|
Input properties used for looking up and filtering S3BucketVersioning resources.
|
@@ -62,16 +61,16 @@ class _S3BucketVersioningState:
|
|
62
61
|
if versioning_configuration is not None:
|
63
62
|
pulumi.set(__self__, "versioning_configuration", versioning_configuration)
|
64
63
|
|
65
|
-
@property
|
64
|
+
@_builtins.property
|
66
65
|
@pulumi.getter
|
67
|
-
def bucket(self) -> Optional[pulumi.Input[
|
66
|
+
def bucket(self) -> Optional[pulumi.Input[_builtins.str]]:
|
68
67
|
return pulumi.get(self, "bucket")
|
69
68
|
|
70
69
|
@bucket.setter
|
71
|
-
def bucket(self, value: Optional[pulumi.Input[
|
70
|
+
def bucket(self, value: Optional[pulumi.Input[_builtins.str]]):
|
72
71
|
pulumi.set(self, "bucket", value)
|
73
72
|
|
74
|
-
@property
|
73
|
+
@_builtins.property
|
75
74
|
@pulumi.getter(name="versioningConfiguration")
|
76
75
|
def versioning_configuration(self) -> Optional[pulumi.Input['S3BucketVersioningVersioningConfigurationArgs']]:
|
77
76
|
return pulumi.get(self, "versioning_configuration")
|
@@ -87,7 +86,7 @@ class S3BucketVersioning(pulumi.CustomResource):
|
|
87
86
|
def __init__(__self__,
|
88
87
|
resource_name: str,
|
89
88
|
opts: Optional[pulumi.ResourceOptions] = None,
|
90
|
-
bucket: Optional[pulumi.Input[
|
89
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
91
90
|
versioning_configuration: Optional[pulumi.Input[Union['S3BucketVersioningVersioningConfigurationArgs', 'S3BucketVersioningVersioningConfigurationArgsDict']]] = None,
|
92
91
|
__props__=None):
|
93
92
|
"""
|
@@ -118,7 +117,7 @@ class S3BucketVersioning(pulumi.CustomResource):
|
|
118
117
|
def _internal_init(__self__,
|
119
118
|
resource_name: str,
|
120
119
|
opts: Optional[pulumi.ResourceOptions] = None,
|
121
|
-
bucket: Optional[pulumi.Input[
|
120
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
122
121
|
versioning_configuration: Optional[pulumi.Input[Union['S3BucketVersioningVersioningConfigurationArgs', 'S3BucketVersioningVersioningConfigurationArgsDict']]] = None,
|
123
122
|
__props__=None):
|
124
123
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -145,7 +144,7 @@ class S3BucketVersioning(pulumi.CustomResource):
|
|
145
144
|
def get(resource_name: str,
|
146
145
|
id: pulumi.Input[str],
|
147
146
|
opts: Optional[pulumi.ResourceOptions] = None,
|
148
|
-
bucket: Optional[pulumi.Input[
|
147
|
+
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
149
148
|
versioning_configuration: Optional[pulumi.Input[Union['S3BucketVersioningVersioningConfigurationArgs', 'S3BucketVersioningVersioningConfigurationArgsDict']]] = None) -> 'S3BucketVersioning':
|
150
149
|
"""
|
151
150
|
Get an existing S3BucketVersioning resource's state with the given name, id, and optional extra
|
@@ -163,12 +162,12 @@ class S3BucketVersioning(pulumi.CustomResource):
|
|
163
162
|
__props__.__dict__["versioning_configuration"] = versioning_configuration
|
164
163
|
return S3BucketVersioning(resource_name, opts=opts, __props__=__props__)
|
165
164
|
|
166
|
-
@property
|
165
|
+
@_builtins.property
|
167
166
|
@pulumi.getter
|
168
|
-
def bucket(self) -> pulumi.Output[
|
167
|
+
def bucket(self) -> pulumi.Output[_builtins.str]:
|
169
168
|
return pulumi.get(self, "bucket")
|
170
169
|
|
171
|
-
@property
|
170
|
+
@_builtins.property
|
172
171
|
@pulumi.getter(name="versioningConfiguration")
|
173
172
|
def versioning_configuration(self) -> pulumi.Output['outputs.S3BucketVersioningVersioningConfiguration']:
|
174
173
|
return pulumi.get(self, "versioning_configuration")
|