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