pulumi-oci 3.5.0a1756440723__py3-none-any.whl → 3.6.0a1756509375__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_oci/config/__init__.pyi +12 -17
- pulumi_oci/config/vars.py +12 -17
- pulumi_oci/provider.py +44 -63
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.5.0a1756440723.dist-info → pulumi_oci-3.6.0a1756509375.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756440723.dist-info → pulumi_oci-3.6.0a1756509375.dist-info}/RECORD +8 -8
- {pulumi_oci-3.5.0a1756440723.dist-info → pulumi_oci-3.6.0a1756509375.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756440723.dist-info → pulumi_oci-3.6.0a1756509375.dist-info}/top_level.txt +0 -0
pulumi_oci/config/__init__.pyi
CHANGED
@@ -16,8 +16,7 @@ from .. import _utilities
|
|
16
16
|
|
17
17
|
auth: Optional[str]
|
18
18
|
"""
|
19
|
-
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
20
|
-
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
19
|
+
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
21
20
|
"""
|
22
21
|
|
23
22
|
configFileProfile: Optional[str]
|
@@ -27,22 +26,21 @@ configFileProfile: Optional[str]
|
|
27
26
|
|
28
27
|
disableAutoRetries: Optional[bool]
|
29
28
|
"""
|
30
|
-
(Optional) Disable automatic retries for retriable errors.
|
31
|
-
consistency problems but it also introduced performance issues on destroy operations.
|
29
|
+
(Optional) Disable automatic retries for retriable errors.
|
30
|
+
Automatic retries were introduced to solve some eventual consistency problems but it also introduced performance issues on destroy operations.
|
32
31
|
"""
|
33
32
|
|
34
33
|
fingerprint: Optional[str]
|
35
34
|
"""
|
36
|
-
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
37
|
-
console. Required if auth is set to 'ApiKey', ignored otherwise.
|
35
|
+
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
38
36
|
"""
|
39
37
|
|
40
38
|
ignoreDefinedTags: Optional[str]
|
41
39
|
|
42
40
|
privateKey: Optional[str]
|
43
41
|
"""
|
44
|
-
(Optional) A PEM formatted RSA private key for the user.
|
45
|
-
set to 'ApiKey', ignored otherwise.
|
42
|
+
(Optional) A PEM formatted RSA private key for the user.
|
43
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
46
44
|
"""
|
47
45
|
|
48
46
|
privateKeyPassword: Optional[str]
|
@@ -52,8 +50,8 @@ privateKeyPassword: Optional[str]
|
|
52
50
|
|
53
51
|
privateKeyPath: Optional[str]
|
54
52
|
"""
|
55
|
-
(Optional) The path to the user's PEM formatted private key.
|
56
|
-
auth is set to 'ApiKey', ignored otherwise.
|
53
|
+
(Optional) The path to the user's PEM formatted private key.
|
54
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
57
55
|
"""
|
58
56
|
|
59
57
|
realmSpecificServiceEndpointTemplateEnabled: Optional[bool]
|
@@ -68,22 +66,19 @@ region: Optional[str]
|
|
68
66
|
|
69
67
|
retryDurationSeconds: Optional[int]
|
70
68
|
"""
|
71
|
-
(Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
72
|
-
duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field
|
73
|
-
is set to true.
|
69
|
+
(Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
70
|
+
The actual retry duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field is set to true.
|
74
71
|
"""
|
75
72
|
|
76
73
|
tenancyOcid: Optional[str]
|
77
74
|
"""
|
78
|
-
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud
|
79
|
-
Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
75
|
+
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
80
76
|
"""
|
81
77
|
|
82
78
|
testTimeMaintenanceRebootDue: Optional[str]
|
83
79
|
|
84
80
|
userOcid: Optional[str]
|
85
81
|
"""
|
86
|
-
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if
|
87
|
-
auth is set to 'ApiKey', ignored otherwise.
|
82
|
+
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
88
83
|
"""
|
89
84
|
|
pulumi_oci/config/vars.py
CHANGED
@@ -23,8 +23,7 @@ class _ExportableConfig(types.ModuleType):
|
|
23
23
|
@_builtins.property
|
24
24
|
def auth(self) -> Optional[str]:
|
25
25
|
"""
|
26
|
-
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
27
|
-
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
26
|
+
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
28
27
|
"""
|
29
28
|
return __config__.get('auth')
|
30
29
|
|
@@ -38,16 +37,15 @@ class _ExportableConfig(types.ModuleType):
|
|
38
37
|
@_builtins.property
|
39
38
|
def disable_auto_retries(self) -> Optional[bool]:
|
40
39
|
"""
|
41
|
-
(Optional) Disable automatic retries for retriable errors.
|
42
|
-
consistency problems but it also introduced performance issues on destroy operations.
|
40
|
+
(Optional) Disable automatic retries for retriable errors.
|
41
|
+
Automatic retries were introduced to solve some eventual consistency problems but it also introduced performance issues on destroy operations.
|
43
42
|
"""
|
44
43
|
return __config__.get_bool('disableAutoRetries')
|
45
44
|
|
46
45
|
@_builtins.property
|
47
46
|
def fingerprint(self) -> Optional[str]:
|
48
47
|
"""
|
49
|
-
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
50
|
-
console. Required if auth is set to 'ApiKey', ignored otherwise.
|
48
|
+
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
51
49
|
"""
|
52
50
|
return __config__.get('fingerprint')
|
53
51
|
|
@@ -58,8 +56,8 @@ class _ExportableConfig(types.ModuleType):
|
|
58
56
|
@_builtins.property
|
59
57
|
def private_key(self) -> Optional[str]:
|
60
58
|
"""
|
61
|
-
(Optional) A PEM formatted RSA private key for the user.
|
62
|
-
set to 'ApiKey', ignored otherwise.
|
59
|
+
(Optional) A PEM formatted RSA private key for the user.
|
60
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
63
61
|
"""
|
64
62
|
return __config__.get('privateKey')
|
65
63
|
|
@@ -73,8 +71,8 @@ class _ExportableConfig(types.ModuleType):
|
|
73
71
|
@_builtins.property
|
74
72
|
def private_key_path(self) -> Optional[str]:
|
75
73
|
"""
|
76
|
-
(Optional) The path to the user's PEM formatted private key.
|
77
|
-
auth is set to 'ApiKey', ignored otherwise.
|
74
|
+
(Optional) The path to the user's PEM formatted private key.
|
75
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
78
76
|
"""
|
79
77
|
return __config__.get('privateKeyPath')
|
80
78
|
|
@@ -95,17 +93,15 @@ class _ExportableConfig(types.ModuleType):
|
|
95
93
|
@_builtins.property
|
96
94
|
def retry_duration_seconds(self) -> Optional[int]:
|
97
95
|
"""
|
98
|
-
(Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
99
|
-
duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field
|
100
|
-
is set to true.
|
96
|
+
(Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
97
|
+
The actual retry duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field is set to true.
|
101
98
|
"""
|
102
99
|
return __config__.get_int('retryDurationSeconds')
|
103
100
|
|
104
101
|
@_builtins.property
|
105
102
|
def tenancy_ocid(self) -> Optional[str]:
|
106
103
|
"""
|
107
|
-
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud
|
108
|
-
Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
104
|
+
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
109
105
|
"""
|
110
106
|
return __config__.get('tenancyOcid')
|
111
107
|
|
@@ -116,8 +112,7 @@ class _ExportableConfig(types.ModuleType):
|
|
116
112
|
@_builtins.property
|
117
113
|
def user_ocid(self) -> Optional[str]:
|
118
114
|
"""
|
119
|
-
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if
|
120
|
-
auth is set to 'ApiKey', ignored otherwise.
|
115
|
+
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
121
116
|
"""
|
122
117
|
return __config__.get('userOcid')
|
123
118
|
|
pulumi_oci/provider.py
CHANGED
@@ -35,27 +35,22 @@ class ProviderArgs:
|
|
35
35
|
user_ocid: Optional[pulumi.Input[_builtins.str]] = None):
|
36
36
|
"""
|
37
37
|
The set of arguments for constructing a Provider resource.
|
38
|
-
:param pulumi.Input[_builtins.str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
39
|
-
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
38
|
+
:param pulumi.Input[_builtins.str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
40
39
|
:param pulumi.Input[_builtins.str] config_file_profile: (Optional) The profile name to be used from config file, if not set it will be DEFAULT.
|
41
|
-
:param pulumi.Input[_builtins.bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors.
|
42
|
-
consistency problems but it also introduced performance issues on destroy operations.
|
43
|
-
:param pulumi.Input[_builtins.str] fingerprint: (Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
44
|
-
|
45
|
-
|
46
|
-
set to 'ApiKey', ignored otherwise.
|
40
|
+
:param pulumi.Input[_builtins.bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors.
|
41
|
+
Automatic retries were introduced to solve some eventual consistency problems but it also introduced performance issues on destroy operations.
|
42
|
+
:param pulumi.Input[_builtins.str] fingerprint: (Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
43
|
+
:param pulumi.Input[_builtins.str] private_key: (Optional) A PEM formatted RSA private key for the user.
|
44
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
47
45
|
:param pulumi.Input[_builtins.str] private_key_password: (Optional) The password used to secure the private key.
|
48
|
-
:param pulumi.Input[_builtins.str] private_key_path: (Optional) The path to the user's PEM formatted private key.
|
49
|
-
auth is set to 'ApiKey', ignored otherwise.
|
46
|
+
:param pulumi.Input[_builtins.str] private_key_path: (Optional) The path to the user's PEM formatted private key.
|
47
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
50
48
|
:param pulumi.Input[_builtins.bool] realm_specific_service_endpoint_template_enabled: (Optional) flags to enable realm specific service endpoint.
|
51
49
|
:param pulumi.Input[_builtins.str] region: (Required) The region for API connections (e.g. us-ashburn-1).
|
52
|
-
:param pulumi.Input[_builtins.int] retry_duration_seconds: (Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
53
|
-
duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field
|
54
|
-
|
55
|
-
:param pulumi.Input[_builtins.str]
|
56
|
-
Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
57
|
-
:param pulumi.Input[_builtins.str] user_ocid: (Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if
|
58
|
-
auth is set to 'ApiKey', ignored otherwise.
|
50
|
+
:param pulumi.Input[_builtins.int] retry_duration_seconds: (Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
51
|
+
The actual retry duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field is set to true.
|
52
|
+
:param pulumi.Input[_builtins.str] tenancy_ocid: (Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
53
|
+
:param pulumi.Input[_builtins.str] user_ocid: (Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
59
54
|
"""
|
60
55
|
if auth is not None:
|
61
56
|
pulumi.set(__self__, "auth", auth)
|
@@ -90,8 +85,7 @@ class ProviderArgs:
|
|
90
85
|
@pulumi.getter
|
91
86
|
def auth(self) -> Optional[pulumi.Input[_builtins.str]]:
|
92
87
|
"""
|
93
|
-
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
94
|
-
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
88
|
+
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
95
89
|
"""
|
96
90
|
return pulumi.get(self, "auth")
|
97
91
|
|
@@ -115,8 +109,8 @@ class ProviderArgs:
|
|
115
109
|
@pulumi.getter(name="disableAutoRetries")
|
116
110
|
def disable_auto_retries(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
117
111
|
"""
|
118
|
-
(Optional) Disable automatic retries for retriable errors.
|
119
|
-
consistency problems but it also introduced performance issues on destroy operations.
|
112
|
+
(Optional) Disable automatic retries for retriable errors.
|
113
|
+
Automatic retries were introduced to solve some eventual consistency problems but it also introduced performance issues on destroy operations.
|
120
114
|
"""
|
121
115
|
return pulumi.get(self, "disable_auto_retries")
|
122
116
|
|
@@ -128,8 +122,7 @@ class ProviderArgs:
|
|
128
122
|
@pulumi.getter
|
129
123
|
def fingerprint(self) -> Optional[pulumi.Input[_builtins.str]]:
|
130
124
|
"""
|
131
|
-
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
132
|
-
console. Required if auth is set to 'ApiKey', ignored otherwise.
|
125
|
+
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
133
126
|
"""
|
134
127
|
return pulumi.get(self, "fingerprint")
|
135
128
|
|
@@ -150,8 +143,8 @@ class ProviderArgs:
|
|
150
143
|
@pulumi.getter(name="privateKey")
|
151
144
|
def private_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
152
145
|
"""
|
153
|
-
(Optional) A PEM formatted RSA private key for the user.
|
154
|
-
set to 'ApiKey', ignored otherwise.
|
146
|
+
(Optional) A PEM formatted RSA private key for the user.
|
147
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
155
148
|
"""
|
156
149
|
return pulumi.get(self, "private_key")
|
157
150
|
|
@@ -175,8 +168,8 @@ class ProviderArgs:
|
|
175
168
|
@pulumi.getter(name="privateKeyPath")
|
176
169
|
def private_key_path(self) -> Optional[pulumi.Input[_builtins.str]]:
|
177
170
|
"""
|
178
|
-
(Optional) The path to the user's PEM formatted private key.
|
179
|
-
auth is set to 'ApiKey', ignored otherwise.
|
171
|
+
(Optional) The path to the user's PEM formatted private key.
|
172
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
180
173
|
"""
|
181
174
|
return pulumi.get(self, "private_key_path")
|
182
175
|
|
@@ -212,9 +205,8 @@ class ProviderArgs:
|
|
212
205
|
@pulumi.getter(name="retryDurationSeconds")
|
213
206
|
def retry_duration_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
|
214
207
|
"""
|
215
|
-
(Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
216
|
-
duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field
|
217
|
-
is set to true.
|
208
|
+
(Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
209
|
+
The actual retry duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field is set to true.
|
218
210
|
"""
|
219
211
|
return pulumi.get(self, "retry_duration_seconds")
|
220
212
|
|
@@ -226,8 +218,7 @@ class ProviderArgs:
|
|
226
218
|
@pulumi.getter(name="tenancyOcid")
|
227
219
|
def tenancy_ocid(self) -> Optional[pulumi.Input[_builtins.str]]:
|
228
220
|
"""
|
229
|
-
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud
|
230
|
-
Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
221
|
+
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
231
222
|
"""
|
232
223
|
return pulumi.get(self, "tenancy_ocid")
|
233
224
|
|
@@ -248,8 +239,7 @@ class ProviderArgs:
|
|
248
239
|
@pulumi.getter(name="userOcid")
|
249
240
|
def user_ocid(self) -> Optional[pulumi.Input[_builtins.str]]:
|
250
241
|
"""
|
251
|
-
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if
|
252
|
-
auth is set to 'ApiKey', ignored otherwise.
|
242
|
+
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
253
243
|
"""
|
254
244
|
return pulumi.get(self, "user_ocid")
|
255
245
|
|
@@ -287,27 +277,22 @@ class Provider(pulumi.ProviderResource):
|
|
287
277
|
|
288
278
|
:param str resource_name: The name of the resource.
|
289
279
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
290
|
-
:param pulumi.Input[_builtins.str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
291
|
-
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
280
|
+
:param pulumi.Input[_builtins.str] auth: (Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
292
281
|
:param pulumi.Input[_builtins.str] config_file_profile: (Optional) The profile name to be used from config file, if not set it will be DEFAULT.
|
293
|
-
:param pulumi.Input[_builtins.bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors.
|
294
|
-
consistency problems but it also introduced performance issues on destroy operations.
|
295
|
-
:param pulumi.Input[_builtins.str] fingerprint: (Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
296
|
-
|
297
|
-
|
298
|
-
set to 'ApiKey', ignored otherwise.
|
282
|
+
:param pulumi.Input[_builtins.bool] disable_auto_retries: (Optional) Disable automatic retries for retriable errors.
|
283
|
+
Automatic retries were introduced to solve some eventual consistency problems but it also introduced performance issues on destroy operations.
|
284
|
+
:param pulumi.Input[_builtins.str] fingerprint: (Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
285
|
+
:param pulumi.Input[_builtins.str] private_key: (Optional) A PEM formatted RSA private key for the user.
|
286
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
299
287
|
:param pulumi.Input[_builtins.str] private_key_password: (Optional) The password used to secure the private key.
|
300
|
-
:param pulumi.Input[_builtins.str] private_key_path: (Optional) The path to the user's PEM formatted private key.
|
301
|
-
auth is set to 'ApiKey', ignored otherwise.
|
288
|
+
:param pulumi.Input[_builtins.str] private_key_path: (Optional) The path to the user's PEM formatted private key.
|
289
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
302
290
|
:param pulumi.Input[_builtins.bool] realm_specific_service_endpoint_template_enabled: (Optional) flags to enable realm specific service endpoint.
|
303
291
|
:param pulumi.Input[_builtins.str] region: (Required) The region for API connections (e.g. us-ashburn-1).
|
304
|
-
:param pulumi.Input[_builtins.int] retry_duration_seconds: (Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
305
|
-
duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field
|
306
|
-
|
307
|
-
:param pulumi.Input[_builtins.str]
|
308
|
-
Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
309
|
-
:param pulumi.Input[_builtins.str] user_ocid: (Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if
|
310
|
-
auth is set to 'ApiKey', ignored otherwise.
|
292
|
+
:param pulumi.Input[_builtins.int] retry_duration_seconds: (Optional) The minimum duration (in seconds) to retry a resource operation in response to an error.
|
293
|
+
The actual retry duration may be longer due to jittering of retry operations. This value is ignored if the `disable_auto_retries` field is set to true.
|
294
|
+
:param pulumi.Input[_builtins.str] tenancy_ocid: (Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
295
|
+
:param pulumi.Input[_builtins.str] user_ocid: (Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
311
296
|
"""
|
312
297
|
...
|
313
298
|
@overload
|
@@ -385,8 +370,7 @@ class Provider(pulumi.ProviderResource):
|
|
385
370
|
@pulumi.getter
|
386
371
|
def auth(self) -> pulumi.Output[Optional[_builtins.str]]:
|
387
372
|
"""
|
388
|
-
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and
|
389
|
-
'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
373
|
+
(Optional) The type of auth to use. Options are 'ApiKey', 'SecurityToken', 'InstancePrincipal', 'ResourcePrincipal' and 'OKEWorkloadIdentity'. By default, 'ApiKey' will be used.
|
390
374
|
"""
|
391
375
|
return pulumi.get(self, "auth")
|
392
376
|
|
@@ -402,8 +386,7 @@ class Provider(pulumi.ProviderResource):
|
|
402
386
|
@pulumi.getter
|
403
387
|
def fingerprint(self) -> pulumi.Output[Optional[_builtins.str]]:
|
404
388
|
"""
|
405
|
-
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure
|
406
|
-
console. Required if auth is set to 'ApiKey', ignored otherwise.
|
389
|
+
(Optional) The fingerprint for the user's RSA key. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
407
390
|
"""
|
408
391
|
return pulumi.get(self, "fingerprint")
|
409
392
|
|
@@ -411,8 +394,8 @@ class Provider(pulumi.ProviderResource):
|
|
411
394
|
@pulumi.getter(name="privateKey")
|
412
395
|
def private_key(self) -> pulumi.Output[Optional[_builtins.str]]:
|
413
396
|
"""
|
414
|
-
(Optional) A PEM formatted RSA private key for the user.
|
415
|
-
set to 'ApiKey', ignored otherwise.
|
397
|
+
(Optional) A PEM formatted RSA private key for the user.
|
398
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
416
399
|
"""
|
417
400
|
return pulumi.get(self, "private_key")
|
418
401
|
|
@@ -428,8 +411,8 @@ class Provider(pulumi.ProviderResource):
|
|
428
411
|
@pulumi.getter(name="privateKeyPath")
|
429
412
|
def private_key_path(self) -> pulumi.Output[Optional[_builtins.str]]:
|
430
413
|
"""
|
431
|
-
(Optional) The path to the user's PEM formatted private key.
|
432
|
-
auth is set to 'ApiKey', ignored otherwise.
|
414
|
+
(Optional) The path to the user's PEM formatted private key.
|
415
|
+
A private_key or a private_key_path must be provided if auth is set to 'ApiKey', ignored otherwise.
|
433
416
|
"""
|
434
417
|
return pulumi.get(self, "private_key_path")
|
435
418
|
|
@@ -445,8 +428,7 @@ class Provider(pulumi.ProviderResource):
|
|
445
428
|
@pulumi.getter(name="tenancyOcid")
|
446
429
|
def tenancy_ocid(self) -> pulumi.Output[Optional[_builtins.str]]:
|
447
430
|
"""
|
448
|
-
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud
|
449
|
-
Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
431
|
+
(Optional) The tenancy OCID for a user. The tenancy OCID can be found at the bottom of user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
450
432
|
"""
|
451
433
|
return pulumi.get(self, "tenancy_ocid")
|
452
434
|
|
@@ -459,8 +441,7 @@ class Provider(pulumi.ProviderResource):
|
|
459
441
|
@pulumi.getter(name="userOcid")
|
460
442
|
def user_ocid(self) -> pulumi.Output[Optional[_builtins.str]]:
|
461
443
|
"""
|
462
|
-
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if
|
463
|
-
auth is set to 'ApiKey', ignored otherwise.
|
444
|
+
(Optional) The user OCID. This can be found in user settings in the Oracle Cloud Infrastructure console. Required if auth is set to 'ApiKey', ignored otherwise.
|
464
445
|
"""
|
465
446
|
return pulumi.get(self, "user_ocid")
|
466
447
|
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=I8Gt_WGZOfsiLUHaB8AUzqW7qMf5M-dfE1HWmEoiItw,197405
|
2
2
|
pulumi_oci/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
3
|
-
pulumi_oci/provider.py,sha256=
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
3
|
+
pulumi_oci/provider.py,sha256=FfDJRW-BKLGXGNRP4PjksgYcZzQeqTfk5Wfb11nrGbk,27230
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=OPe1peDH9XqwJK068TLHMsysIzNPwOsezjdlK3KAVAU,79
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=XqF4LnJUjr1204jZQHCbrIOpZUazPPCTu4xatHtFmf4,1060
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=BIj462QVRrTRxxWerkqjhlaCH6hGP2Qy2kBONPYlnoY,75428
|
@@ -429,8 +429,8 @@ pulumi_oci/computeinstanceagent/get_instance_agent_plugins.py,sha256=sktAnhTeQs3
|
|
429
429
|
pulumi_oci/computeinstanceagent/get_instance_available_plugin.py,sha256=UhBUFXi1jMO8j7QVBBLHjGyqEMI8uLm8NWhcEuSZW6I,9509
|
430
430
|
pulumi_oci/computeinstanceagent/outputs.py,sha256=67R5QkSWbugzg8wF8uTV6psXUBBglmuA99s_4t9dqQk,5921
|
431
431
|
pulumi_oci/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
432
|
-
pulumi_oci/config/__init__.pyi,sha256=
|
433
|
-
pulumi_oci/config/vars.py,sha256=
|
432
|
+
pulumi_oci/config/__init__.pyi,sha256=XhmLPXpQYMR9aEYfaMhu7zISvPCHB2qAjUG06--dR8U,2844
|
433
|
+
pulumi_oci/config/vars.py,sha256=c7uIUPVPclkxbY9QWBKd9fpN3YNoySHo0wGZPM418X0,4570
|
434
434
|
pulumi_oci/containerengine/__init__.py,sha256=sqrxjHqITdxd5q61rTyVWbpdJATMCLiUMY3-49iqruM,1343
|
435
435
|
pulumi_oci/containerengine/_inputs.py,sha256=z2QtbanAfBjtR3eXNT5WO0spv97XkekuYiwrLEcQzZM,258700
|
436
436
|
pulumi_oci/containerengine/addon.py,sha256=0V6WOiVmKH1ZrJF127JIRiw9MYxjZH1m5o3B63MYnT8,25964
|
@@ -3302,7 +3302,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=8iDJvr5DBbBN11uWApUF1oBxsAzI_JCbOdSwHQ
|
|
3302
3302
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=BAvWU7HJHYqS9Zpj997VanPL4yO0W1f6Sc4SVW2pAgQ,11764
|
3303
3303
|
pulumi_oci/zpr/outputs.py,sha256=Mp_BXNVfMCYirJhAUjln5D42Rf0WoAf0v5trTxwDkTI,9522
|
3304
3304
|
pulumi_oci/zpr/zpr_policy.py,sha256=IV9NngE9yGQfyf5UiMrpoIM5CsJj2cLEJI9dEOtFyhA,34082
|
3305
|
-
pulumi_oci-3.
|
3306
|
-
pulumi_oci-3.
|
3307
|
-
pulumi_oci-3.
|
3308
|
-
pulumi_oci-3.
|
3305
|
+
pulumi_oci-3.6.0a1756509375.dist-info/METADATA,sha256=7tUFUUuS-kugQY82vbD53ffvXoWL09bW8lWsFr27I94,4751
|
3306
|
+
pulumi_oci-3.6.0a1756509375.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
3307
|
+
pulumi_oci-3.6.0a1756509375.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
3308
|
+
pulumi_oci-3.6.0a1756509375.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-3.5.0a1756440723.dist-info → pulumi_oci-3.6.0a1756509375.dist-info}/top_level.txt
RENAMED
File without changes
|