pulumi-oci 2.10.0__py3-none-any.whl → 2.10.0a1724912108__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/database/_inputs.py +24 -32
- pulumi_oci/database/outputs.py +24 -32
- pulumi_oci/database/vm_cluster_network.py +20 -7
- pulumi_oci/managementagent/_inputs.py +0 -44
- pulumi_oci/managementagent/management_agent.py +21 -45
- pulumi_oci/managementagent/outputs.py +0 -44
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.10.0.dist-info → pulumi_oci-2.10.0a1724912108.dist-info}/METADATA +1 -1
- {pulumi_oci-2.10.0.dist-info → pulumi_oci-2.10.0a1724912108.dist-info}/RECORD +11 -11
- {pulumi_oci-2.10.0.dist-info → pulumi_oci-2.10.0a1724912108.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.10.0.dist-info → pulumi_oci-2.10.0a1724912108.dist-info}/top_level.txt +0 -0
pulumi_oci/database/_inputs.py
CHANGED
@@ -11517,16 +11517,12 @@ class VmClusterNetworkVmNetworkArgs:
|
|
11517
11517
|
netmask: Optional[pulumi.Input[str]] = None,
|
11518
11518
|
vlan_id: Optional[pulumi.Input[str]] = None):
|
11519
11519
|
"""
|
11520
|
-
:param pulumi.Input[str] network_type:
|
11521
|
-
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkNodeArgs']]] nodes:
|
11522
|
-
:param pulumi.Input[str] domain_name:
|
11523
|
-
:param pulumi.Input[str] gateway:
|
11524
|
-
:param pulumi.Input[str] netmask:
|
11525
|
-
:param pulumi.Input[str] vlan_id:
|
11526
|
-
|
11527
|
-
|
11528
|
-
** IMPORTANT **
|
11529
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
11520
|
+
:param pulumi.Input[str] network_type: The network type.
|
11521
|
+
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkNodeArgs']]] nodes: The list of node details.
|
11522
|
+
:param pulumi.Input[str] domain_name: The network domain name.
|
11523
|
+
:param pulumi.Input[str] gateway: The network gateway.
|
11524
|
+
:param pulumi.Input[str] netmask: The network netmask.
|
11525
|
+
:param pulumi.Input[str] vlan_id: The network VLAN ID.
|
11530
11526
|
"""
|
11531
11527
|
pulumi.set(__self__, "network_type", network_type)
|
11532
11528
|
pulumi.set(__self__, "nodes", nodes)
|
@@ -11543,7 +11539,7 @@ class VmClusterNetworkVmNetworkArgs:
|
|
11543
11539
|
@pulumi.getter(name="networkType")
|
11544
11540
|
def network_type(self) -> pulumi.Input[str]:
|
11545
11541
|
"""
|
11546
|
-
|
11542
|
+
The network type.
|
11547
11543
|
"""
|
11548
11544
|
return pulumi.get(self, "network_type")
|
11549
11545
|
|
@@ -11555,7 +11551,7 @@ class VmClusterNetworkVmNetworkArgs:
|
|
11555
11551
|
@pulumi.getter
|
11556
11552
|
def nodes(self) -> pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkNodeArgs']]]:
|
11557
11553
|
"""
|
11558
|
-
|
11554
|
+
The list of node details.
|
11559
11555
|
"""
|
11560
11556
|
return pulumi.get(self, "nodes")
|
11561
11557
|
|
@@ -11567,7 +11563,7 @@ class VmClusterNetworkVmNetworkArgs:
|
|
11567
11563
|
@pulumi.getter(name="domainName")
|
11568
11564
|
def domain_name(self) -> Optional[pulumi.Input[str]]:
|
11569
11565
|
"""
|
11570
|
-
|
11566
|
+
The network domain name.
|
11571
11567
|
"""
|
11572
11568
|
return pulumi.get(self, "domain_name")
|
11573
11569
|
|
@@ -11579,7 +11575,7 @@ class VmClusterNetworkVmNetworkArgs:
|
|
11579
11575
|
@pulumi.getter
|
11580
11576
|
def gateway(self) -> Optional[pulumi.Input[str]]:
|
11581
11577
|
"""
|
11582
|
-
|
11578
|
+
The network gateway.
|
11583
11579
|
"""
|
11584
11580
|
return pulumi.get(self, "gateway")
|
11585
11581
|
|
@@ -11591,7 +11587,7 @@ class VmClusterNetworkVmNetworkArgs:
|
|
11591
11587
|
@pulumi.getter
|
11592
11588
|
def netmask(self) -> Optional[pulumi.Input[str]]:
|
11593
11589
|
"""
|
11594
|
-
|
11590
|
+
The network netmask.
|
11595
11591
|
"""
|
11596
11592
|
return pulumi.get(self, "netmask")
|
11597
11593
|
|
@@ -11603,11 +11599,7 @@ class VmClusterNetworkVmNetworkArgs:
|
|
11603
11599
|
@pulumi.getter(name="vlanId")
|
11604
11600
|
def vlan_id(self) -> Optional[pulumi.Input[str]]:
|
11605
11601
|
"""
|
11606
|
-
|
11607
|
-
|
11608
|
-
|
11609
|
-
** IMPORTANT **
|
11610
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
11602
|
+
The network VLAN ID.
|
11611
11603
|
"""
|
11612
11604
|
return pulumi.get(self, "vlan_id")
|
11613
11605
|
|
@@ -11626,12 +11618,12 @@ class VmClusterNetworkVmNetworkNodeArgs:
|
|
11626
11618
|
vip: Optional[pulumi.Input[str]] = None,
|
11627
11619
|
vip_hostname: Optional[pulumi.Input[str]] = None):
|
11628
11620
|
"""
|
11629
|
-
:param pulumi.Input[str] hostname:
|
11630
|
-
:param pulumi.Input[str] ip:
|
11631
|
-
:param pulumi.Input[str] db_server_id:
|
11632
|
-
:param pulumi.Input[str] state:
|
11633
|
-
:param pulumi.Input[str] vip:
|
11634
|
-
:param pulumi.Input[str] vip_hostname:
|
11621
|
+
:param pulumi.Input[str] hostname: The node host name.
|
11622
|
+
:param pulumi.Input[str] ip: The node IP address.
|
11623
|
+
:param pulumi.Input[str] db_server_id: The Db server associated with the node.
|
11624
|
+
:param pulumi.Input[str] state: The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
11625
|
+
:param pulumi.Input[str] vip: The node virtual IP (VIP) address.
|
11626
|
+
:param pulumi.Input[str] vip_hostname: The node virtual IP (VIP) host name.
|
11635
11627
|
"""
|
11636
11628
|
pulumi.set(__self__, "hostname", hostname)
|
11637
11629
|
pulumi.set(__self__, "ip", ip)
|
@@ -11648,7 +11640,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
|
|
11648
11640
|
@pulumi.getter
|
11649
11641
|
def hostname(self) -> pulumi.Input[str]:
|
11650
11642
|
"""
|
11651
|
-
|
11643
|
+
The node host name.
|
11652
11644
|
"""
|
11653
11645
|
return pulumi.get(self, "hostname")
|
11654
11646
|
|
@@ -11660,7 +11652,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
|
|
11660
11652
|
@pulumi.getter
|
11661
11653
|
def ip(self) -> pulumi.Input[str]:
|
11662
11654
|
"""
|
11663
|
-
|
11655
|
+
The node IP address.
|
11664
11656
|
"""
|
11665
11657
|
return pulumi.get(self, "ip")
|
11666
11658
|
|
@@ -11672,7 +11664,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
|
|
11672
11664
|
@pulumi.getter(name="dbServerId")
|
11673
11665
|
def db_server_id(self) -> Optional[pulumi.Input[str]]:
|
11674
11666
|
"""
|
11675
|
-
|
11667
|
+
The Db server associated with the node.
|
11676
11668
|
"""
|
11677
11669
|
return pulumi.get(self, "db_server_id")
|
11678
11670
|
|
@@ -11684,7 +11676,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
|
|
11684
11676
|
@pulumi.getter
|
11685
11677
|
def state(self) -> Optional[pulumi.Input[str]]:
|
11686
11678
|
"""
|
11687
|
-
|
11679
|
+
The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
11688
11680
|
"""
|
11689
11681
|
return pulumi.get(self, "state")
|
11690
11682
|
|
@@ -11696,7 +11688,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
|
|
11696
11688
|
@pulumi.getter
|
11697
11689
|
def vip(self) -> Optional[pulumi.Input[str]]:
|
11698
11690
|
"""
|
11699
|
-
|
11691
|
+
The node virtual IP (VIP) address.
|
11700
11692
|
"""
|
11701
11693
|
return pulumi.get(self, "vip")
|
11702
11694
|
|
@@ -11708,7 +11700,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
|
|
11708
11700
|
@pulumi.getter(name="vipHostname")
|
11709
11701
|
def vip_hostname(self) -> Optional[pulumi.Input[str]]:
|
11710
11702
|
"""
|
11711
|
-
|
11703
|
+
The node virtual IP (VIP) host name.
|
11712
11704
|
"""
|
11713
11705
|
return pulumi.get(self, "vip_hostname")
|
11714
11706
|
|
pulumi_oci/database/outputs.py
CHANGED
@@ -12166,16 +12166,12 @@ class VmClusterNetworkVmNetwork(dict):
|
|
12166
12166
|
netmask: Optional[str] = None,
|
12167
12167
|
vlan_id: Optional[str] = None):
|
12168
12168
|
"""
|
12169
|
-
:param str network_type:
|
12170
|
-
:param Sequence['VmClusterNetworkVmNetworkNodeArgs'] nodes:
|
12171
|
-
:param str domain_name:
|
12172
|
-
:param str gateway:
|
12173
|
-
:param str netmask:
|
12174
|
-
:param str vlan_id:
|
12175
|
-
|
12176
|
-
|
12177
|
-
** IMPORTANT **
|
12178
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
12169
|
+
:param str network_type: The network type.
|
12170
|
+
:param Sequence['VmClusterNetworkVmNetworkNodeArgs'] nodes: The list of node details.
|
12171
|
+
:param str domain_name: The network domain name.
|
12172
|
+
:param str gateway: The network gateway.
|
12173
|
+
:param str netmask: The network netmask.
|
12174
|
+
:param str vlan_id: The network VLAN ID.
|
12179
12175
|
"""
|
12180
12176
|
pulumi.set(__self__, "network_type", network_type)
|
12181
12177
|
pulumi.set(__self__, "nodes", nodes)
|
@@ -12192,7 +12188,7 @@ class VmClusterNetworkVmNetwork(dict):
|
|
12192
12188
|
@pulumi.getter(name="networkType")
|
12193
12189
|
def network_type(self) -> str:
|
12194
12190
|
"""
|
12195
|
-
|
12191
|
+
The network type.
|
12196
12192
|
"""
|
12197
12193
|
return pulumi.get(self, "network_type")
|
12198
12194
|
|
@@ -12200,7 +12196,7 @@ class VmClusterNetworkVmNetwork(dict):
|
|
12200
12196
|
@pulumi.getter
|
12201
12197
|
def nodes(self) -> Sequence['outputs.VmClusterNetworkVmNetworkNode']:
|
12202
12198
|
"""
|
12203
|
-
|
12199
|
+
The list of node details.
|
12204
12200
|
"""
|
12205
12201
|
return pulumi.get(self, "nodes")
|
12206
12202
|
|
@@ -12208,7 +12204,7 @@ class VmClusterNetworkVmNetwork(dict):
|
|
12208
12204
|
@pulumi.getter(name="domainName")
|
12209
12205
|
def domain_name(self) -> Optional[str]:
|
12210
12206
|
"""
|
12211
|
-
|
12207
|
+
The network domain name.
|
12212
12208
|
"""
|
12213
12209
|
return pulumi.get(self, "domain_name")
|
12214
12210
|
|
@@ -12216,7 +12212,7 @@ class VmClusterNetworkVmNetwork(dict):
|
|
12216
12212
|
@pulumi.getter
|
12217
12213
|
def gateway(self) -> Optional[str]:
|
12218
12214
|
"""
|
12219
|
-
|
12215
|
+
The network gateway.
|
12220
12216
|
"""
|
12221
12217
|
return pulumi.get(self, "gateway")
|
12222
12218
|
|
@@ -12224,7 +12220,7 @@ class VmClusterNetworkVmNetwork(dict):
|
|
12224
12220
|
@pulumi.getter
|
12225
12221
|
def netmask(self) -> Optional[str]:
|
12226
12222
|
"""
|
12227
|
-
|
12223
|
+
The network netmask.
|
12228
12224
|
"""
|
12229
12225
|
return pulumi.get(self, "netmask")
|
12230
12226
|
|
@@ -12232,11 +12228,7 @@ class VmClusterNetworkVmNetwork(dict):
|
|
12232
12228
|
@pulumi.getter(name="vlanId")
|
12233
12229
|
def vlan_id(self) -> Optional[str]:
|
12234
12230
|
"""
|
12235
|
-
|
12236
|
-
|
12237
|
-
|
12238
|
-
** IMPORTANT **
|
12239
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
12231
|
+
The network VLAN ID.
|
12240
12232
|
"""
|
12241
12233
|
return pulumi.get(self, "vlan_id")
|
12242
12234
|
|
@@ -12270,12 +12262,12 @@ class VmClusterNetworkVmNetworkNode(dict):
|
|
12270
12262
|
vip: Optional[str] = None,
|
12271
12263
|
vip_hostname: Optional[str] = None):
|
12272
12264
|
"""
|
12273
|
-
:param str hostname:
|
12274
|
-
:param str ip:
|
12275
|
-
:param str db_server_id:
|
12276
|
-
:param str state:
|
12277
|
-
:param str vip:
|
12278
|
-
:param str vip_hostname:
|
12265
|
+
:param str hostname: The node host name.
|
12266
|
+
:param str ip: The node IP address.
|
12267
|
+
:param str db_server_id: The Db server associated with the node.
|
12268
|
+
:param str state: The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
12269
|
+
:param str vip: The node virtual IP (VIP) address.
|
12270
|
+
:param str vip_hostname: The node virtual IP (VIP) host name.
|
12279
12271
|
"""
|
12280
12272
|
pulumi.set(__self__, "hostname", hostname)
|
12281
12273
|
pulumi.set(__self__, "ip", ip)
|
@@ -12292,7 +12284,7 @@ class VmClusterNetworkVmNetworkNode(dict):
|
|
12292
12284
|
@pulumi.getter
|
12293
12285
|
def hostname(self) -> str:
|
12294
12286
|
"""
|
12295
|
-
|
12287
|
+
The node host name.
|
12296
12288
|
"""
|
12297
12289
|
return pulumi.get(self, "hostname")
|
12298
12290
|
|
@@ -12300,7 +12292,7 @@ class VmClusterNetworkVmNetworkNode(dict):
|
|
12300
12292
|
@pulumi.getter
|
12301
12293
|
def ip(self) -> str:
|
12302
12294
|
"""
|
12303
|
-
|
12295
|
+
The node IP address.
|
12304
12296
|
"""
|
12305
12297
|
return pulumi.get(self, "ip")
|
12306
12298
|
|
@@ -12308,7 +12300,7 @@ class VmClusterNetworkVmNetworkNode(dict):
|
|
12308
12300
|
@pulumi.getter(name="dbServerId")
|
12309
12301
|
def db_server_id(self) -> Optional[str]:
|
12310
12302
|
"""
|
12311
|
-
|
12303
|
+
The Db server associated with the node.
|
12312
12304
|
"""
|
12313
12305
|
return pulumi.get(self, "db_server_id")
|
12314
12306
|
|
@@ -12316,7 +12308,7 @@ class VmClusterNetworkVmNetworkNode(dict):
|
|
12316
12308
|
@pulumi.getter
|
12317
12309
|
def state(self) -> Optional[str]:
|
12318
12310
|
"""
|
12319
|
-
|
12311
|
+
The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
12320
12312
|
"""
|
12321
12313
|
return pulumi.get(self, "state")
|
12322
12314
|
|
@@ -12324,7 +12316,7 @@ class VmClusterNetworkVmNetworkNode(dict):
|
|
12324
12316
|
@pulumi.getter
|
12325
12317
|
def vip(self) -> Optional[str]:
|
12326
12318
|
"""
|
12327
|
-
|
12319
|
+
The node virtual IP (VIP) address.
|
12328
12320
|
"""
|
12329
12321
|
return pulumi.get(self, "vip")
|
12330
12322
|
|
@@ -12332,7 +12324,7 @@ class VmClusterNetworkVmNetworkNode(dict):
|
|
12332
12324
|
@pulumi.getter(name="vipHostname")
|
12333
12325
|
def vip_hostname(self) -> Optional[str]:
|
12334
12326
|
"""
|
12335
|
-
|
12327
|
+
The node virtual IP (VIP) host name.
|
12336
12328
|
"""
|
12337
12329
|
return pulumi.get(self, "vip_hostname")
|
12338
12330
|
|
@@ -34,12 +34,13 @@ class VmClusterNetworkArgs:
|
|
34
34
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.
|
35
35
|
:param pulumi.Input[str] exadata_infrastructure_id: The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
36
36
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]] scans: (Updatable) The SCAN details.
|
37
|
-
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks:
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks: Details of the client and backup networks.
|
38
38
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
39
39
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkDrScanArgs']]] dr_scans: (Updatable) The SCAN details for DR network
|
41
41
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
42
42
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
43
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
43
44
|
"""
|
44
45
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
45
46
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -113,7 +114,7 @@ class VmClusterNetworkArgs:
|
|
113
114
|
@pulumi.getter(name="vmNetworks")
|
114
115
|
def vm_networks(self) -> pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]]:
|
115
116
|
"""
|
116
|
-
|
117
|
+
Details of the client and backup networks.
|
117
118
|
"""
|
118
119
|
return pulumi.get(self, "vm_networks")
|
119
120
|
|
@@ -193,6 +194,9 @@ class VmClusterNetworkArgs:
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter(name="validateVmClusterNetwork")
|
195
196
|
def validate_vm_cluster_network(self) -> Optional[pulumi.Input[bool]]:
|
197
|
+
"""
|
198
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
199
|
+
"""
|
196
200
|
return pulumi.get(self, "validate_vm_cluster_network")
|
197
201
|
|
198
202
|
@validate_vm_cluster_network.setter
|
@@ -233,8 +237,9 @@ class _VmClusterNetworkState:
|
|
233
237
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]] scans: (Updatable) The SCAN details.
|
234
238
|
:param pulumi.Input[str] state: The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
235
239
|
:param pulumi.Input[str] time_created: The date and time when the VM cluster network was created.
|
240
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
236
241
|
:param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
237
|
-
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks:
|
242
|
+
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks: Details of the client and backup networks.
|
238
243
|
"""
|
239
244
|
if action is not None:
|
240
245
|
pulumi.set(__self__, "action", action)
|
@@ -425,6 +430,9 @@ class _VmClusterNetworkState:
|
|
425
430
|
@property
|
426
431
|
@pulumi.getter(name="validateVmClusterNetwork")
|
427
432
|
def validate_vm_cluster_network(self) -> Optional[pulumi.Input[bool]]:
|
433
|
+
"""
|
434
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
435
|
+
"""
|
428
436
|
return pulumi.get(self, "validate_vm_cluster_network")
|
429
437
|
|
430
438
|
@validate_vm_cluster_network.setter
|
@@ -447,7 +455,7 @@ class _VmClusterNetworkState:
|
|
447
455
|
@pulumi.getter(name="vmNetworks")
|
448
456
|
def vm_networks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]]]:
|
449
457
|
"""
|
450
|
-
|
458
|
+
Details of the client and backup networks.
|
451
459
|
"""
|
452
460
|
return pulumi.get(self, "vm_networks")
|
453
461
|
|
@@ -545,7 +553,8 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
545
553
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
546
554
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
547
555
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkScanArgs', 'VmClusterNetworkScanArgsDict']]]] scans: (Updatable) The SCAN details.
|
548
|
-
:param pulumi.Input[
|
556
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
557
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkVmNetworkArgs', 'VmClusterNetworkVmNetworkArgsDict']]]] vm_networks: Details of the client and backup networks.
|
549
558
|
"""
|
550
559
|
...
|
551
560
|
@overload
|
@@ -720,8 +729,9 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
720
729
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkScanArgs', 'VmClusterNetworkScanArgsDict']]]] scans: (Updatable) The SCAN details.
|
721
730
|
:param pulumi.Input[str] state: The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
722
731
|
:param pulumi.Input[str] time_created: The date and time when the VM cluster network was created.
|
732
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
723
733
|
:param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
724
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkVmNetworkArgs', 'VmClusterNetworkVmNetworkArgsDict']]]] vm_networks:
|
734
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkVmNetworkArgs', 'VmClusterNetworkVmNetworkArgsDict']]]] vm_networks: Details of the client and backup networks.
|
725
735
|
"""
|
726
736
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
727
737
|
|
@@ -849,6 +859,9 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
849
859
|
@property
|
850
860
|
@pulumi.getter(name="validateVmClusterNetwork")
|
851
861
|
def validate_vm_cluster_network(self) -> pulumi.Output[Optional[bool]]:
|
862
|
+
"""
|
863
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
864
|
+
"""
|
852
865
|
return pulumi.get(self, "validate_vm_cluster_network")
|
853
866
|
|
854
867
|
@property
|
@@ -863,7 +876,7 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
863
876
|
@pulumi.getter(name="vmNetworks")
|
864
877
|
def vm_networks(self) -> pulumi.Output[Sequence['outputs.VmClusterNetworkVmNetwork']]:
|
865
878
|
"""
|
866
|
-
|
879
|
+
Details of the client and backup networks.
|
867
880
|
"""
|
868
881
|
return pulumi.get(self, "vm_networks")
|
869
882
|
|
@@ -46,15 +46,7 @@ class ManagementAgentDataSourceListArgs:
|
|
46
46
|
type: Optional[pulumi.Input[str]] = None,
|
47
47
|
url: Optional[pulumi.Input[str]] = None):
|
48
48
|
"""
|
49
|
-
:param pulumi.Input[str] allow_metrics: Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
|
50
|
-
:param pulumi.Input[str] compartment_id: Compartment owning this DataSource.
|
51
|
-
:param pulumi.Input[int] connection_timeout: Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
|
52
|
-
:param pulumi.Input[bool] is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
|
53
|
-
:param pulumi.Input[str] key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
54
|
-
:param pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListMetricDimensionArgs']]] metric_dimensions: The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
|
55
49
|
:param pulumi.Input[str] name: Name of the property
|
56
|
-
:param pulumi.Input[str] namespace: The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
|
57
|
-
:param pulumi.Input[str] proxy_url: The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
|
58
50
|
:param pulumi.Input[int] read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
59
51
|
:param pulumi.Input[int] read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
60
52
|
:param pulumi.Input[str] resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
@@ -105,9 +97,6 @@ class ManagementAgentDataSourceListArgs:
|
|
105
97
|
@property
|
106
98
|
@pulumi.getter(name="allowMetrics")
|
107
99
|
def allow_metrics(self) -> Optional[pulumi.Input[str]]:
|
108
|
-
"""
|
109
|
-
Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
|
110
|
-
"""
|
111
100
|
return pulumi.get(self, "allow_metrics")
|
112
101
|
|
113
102
|
@allow_metrics.setter
|
@@ -117,9 +106,6 @@ class ManagementAgentDataSourceListArgs:
|
|
117
106
|
@property
|
118
107
|
@pulumi.getter(name="compartmentId")
|
119
108
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
120
|
-
"""
|
121
|
-
Compartment owning this DataSource.
|
122
|
-
"""
|
123
109
|
return pulumi.get(self, "compartment_id")
|
124
110
|
|
125
111
|
@compartment_id.setter
|
@@ -129,9 +115,6 @@ class ManagementAgentDataSourceListArgs:
|
|
129
115
|
@property
|
130
116
|
@pulumi.getter(name="connectionTimeout")
|
131
117
|
def connection_timeout(self) -> Optional[pulumi.Input[int]]:
|
132
|
-
"""
|
133
|
-
Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
|
134
|
-
"""
|
135
118
|
return pulumi.get(self, "connection_timeout")
|
136
119
|
|
137
120
|
@connection_timeout.setter
|
@@ -141,9 +124,6 @@ class ManagementAgentDataSourceListArgs:
|
|
141
124
|
@property
|
142
125
|
@pulumi.getter(name="isDaemonSet")
|
143
126
|
def is_daemon_set(self) -> Optional[pulumi.Input[bool]]:
|
144
|
-
"""
|
145
|
-
If the Kubernetes cluster type is Daemon set then this will be set to true.
|
146
|
-
"""
|
147
127
|
return pulumi.get(self, "is_daemon_set")
|
148
128
|
|
149
129
|
@is_daemon_set.setter
|
@@ -153,9 +133,6 @@ class ManagementAgentDataSourceListArgs:
|
|
153
133
|
@property
|
154
134
|
@pulumi.getter
|
155
135
|
def key(self) -> Optional[pulumi.Input[str]]:
|
156
|
-
"""
|
157
|
-
Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
158
|
-
"""
|
159
136
|
return pulumi.get(self, "key")
|
160
137
|
|
161
138
|
@key.setter
|
@@ -165,9 +142,6 @@ class ManagementAgentDataSourceListArgs:
|
|
165
142
|
@property
|
166
143
|
@pulumi.getter(name="metricDimensions")
|
167
144
|
def metric_dimensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListMetricDimensionArgs']]]]:
|
168
|
-
"""
|
169
|
-
The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
|
170
|
-
"""
|
171
145
|
return pulumi.get(self, "metric_dimensions")
|
172
146
|
|
173
147
|
@metric_dimensions.setter
|
@@ -189,9 +163,6 @@ class ManagementAgentDataSourceListArgs:
|
|
189
163
|
@property
|
190
164
|
@pulumi.getter
|
191
165
|
def namespace(self) -> Optional[pulumi.Input[str]]:
|
192
|
-
"""
|
193
|
-
The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
|
194
|
-
"""
|
195
166
|
return pulumi.get(self, "namespace")
|
196
167
|
|
197
168
|
@namespace.setter
|
@@ -201,9 +172,6 @@ class ManagementAgentDataSourceListArgs:
|
|
201
172
|
@property
|
202
173
|
@pulumi.getter(name="proxyUrl")
|
203
174
|
def proxy_url(self) -> Optional[pulumi.Input[str]]:
|
204
|
-
"""
|
205
|
-
The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
|
206
|
-
"""
|
207
175
|
return pulumi.get(self, "proxy_url")
|
208
176
|
|
209
177
|
@proxy_url.setter
|
@@ -326,7 +294,6 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
|
|
326
294
|
value: Optional[pulumi.Input[str]] = None):
|
327
295
|
"""
|
328
296
|
:param pulumi.Input[str] name: Name of the property
|
329
|
-
:param pulumi.Input[str] value: Value of the metric dimension
|
330
297
|
"""
|
331
298
|
if name is not None:
|
332
299
|
pulumi.set(__self__, "name", name)
|
@@ -348,9 +315,6 @@ class ManagementAgentDataSourceListMetricDimensionArgs:
|
|
348
315
|
@property
|
349
316
|
@pulumi.getter
|
350
317
|
def value(self) -> Optional[pulumi.Input[str]]:
|
351
|
-
"""
|
352
|
-
Value of the metric dimension
|
353
|
-
"""
|
354
318
|
return pulumi.get(self, "value")
|
355
319
|
|
356
320
|
@value.setter
|
@@ -403,8 +367,6 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
403
367
|
name: Optional[pulumi.Input[str]] = None,
|
404
368
|
type: Optional[pulumi.Input[str]] = None):
|
405
369
|
"""
|
406
|
-
:param pulumi.Input[bool] is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
|
407
|
-
:param pulumi.Input[str] key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
408
370
|
:param pulumi.Input[str] name: Name of the property
|
409
371
|
:param pulumi.Input[str] type: The type of the DataSource.
|
410
372
|
"""
|
@@ -420,9 +382,6 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
420
382
|
@property
|
421
383
|
@pulumi.getter(name="isDaemonSet")
|
422
384
|
def is_daemon_set(self) -> Optional[pulumi.Input[bool]]:
|
423
|
-
"""
|
424
|
-
If the Kubernetes cluster type is Daemon set then this will be set to true.
|
425
|
-
"""
|
426
385
|
return pulumi.get(self, "is_daemon_set")
|
427
386
|
|
428
387
|
@is_daemon_set.setter
|
@@ -432,9 +391,6 @@ class ManagementAgentDataSourceSummaryListArgs:
|
|
432
391
|
@property
|
433
392
|
@pulumi.getter
|
434
393
|
def key(self) -> Optional[pulumi.Input[str]]:
|
435
|
-
"""
|
436
|
-
Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
437
|
-
"""
|
438
394
|
return pulumi.get(self, "key")
|
439
395
|
|
440
396
|
@key.setter
|
@@ -24,9 +24,9 @@ class ManagementAgentArgs:
|
|
24
24
|
"""
|
25
25
|
The set of arguments for constructing a ManagementAgent resource.
|
26
26
|
:param pulumi.Input[str] managed_agent_id: Unique Management Agent identifier
|
27
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags:
|
28
|
-
:param pulumi.Input[str] display_name:
|
29
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags:
|
27
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
28
|
+
:param pulumi.Input[str] display_name: Management Agent Name
|
29
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
30
30
|
"""
|
31
31
|
pulumi.set(__self__, "managed_agent_id", managed_agent_id)
|
32
32
|
if defined_tags is not None:
|
@@ -54,7 +54,7 @@ class ManagementAgentArgs:
|
|
54
54
|
@pulumi.getter(name="definedTags")
|
55
55
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
56
56
|
"""
|
57
|
-
|
57
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
58
58
|
"""
|
59
59
|
return pulumi.get(self, "defined_tags")
|
60
60
|
|
@@ -75,7 +75,7 @@ class ManagementAgentArgs:
|
|
75
75
|
@pulumi.getter(name="displayName")
|
76
76
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
77
77
|
"""
|
78
|
-
|
78
|
+
Management Agent Name
|
79
79
|
"""
|
80
80
|
return pulumi.get(self, "display_name")
|
81
81
|
|
@@ -87,7 +87,7 @@ class ManagementAgentArgs:
|
|
87
87
|
@pulumi.getter(name="freeformTags")
|
88
88
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
89
89
|
"""
|
90
|
-
|
90
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
91
91
|
"""
|
92
92
|
return pulumi.get(self, "freeform_tags")
|
93
93
|
|
@@ -129,12 +129,9 @@ class _ManagementAgentState:
|
|
129
129
|
version: Optional[pulumi.Input[str]] = None):
|
130
130
|
"""
|
131
131
|
Input properties used for looking up and filtering ManagementAgent resources.
|
132
|
-
:param pulumi.Input[str]
|
133
|
-
:param pulumi.Input[str]
|
134
|
-
:param pulumi.Input[
|
135
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
136
|
-
:param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
|
137
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
132
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
133
|
+
:param pulumi.Input[str] display_name: Management Agent Name
|
134
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
138
135
|
:param pulumi.Input[str] host: Management Agent host machine name
|
139
136
|
:param pulumi.Input[str] host_id: Host resource ocid
|
140
137
|
:param pulumi.Input[str] install_key_id: agent install key identifier
|
@@ -216,9 +213,6 @@ class _ManagementAgentState:
|
|
216
213
|
@property
|
217
214
|
@pulumi.getter(name="availabilityStatus")
|
218
215
|
def availability_status(self) -> Optional[pulumi.Input[str]]:
|
219
|
-
"""
|
220
|
-
The current availability status of managementAgent
|
221
|
-
"""
|
222
216
|
return pulumi.get(self, "availability_status")
|
223
217
|
|
224
218
|
@availability_status.setter
|
@@ -228,9 +222,6 @@ class _ManagementAgentState:
|
|
228
222
|
@property
|
229
223
|
@pulumi.getter(name="compartmentId")
|
230
224
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
231
|
-
"""
|
232
|
-
Compartment owning this DataSource.
|
233
|
-
"""
|
234
225
|
return pulumi.get(self, "compartment_id")
|
235
226
|
|
236
227
|
@compartment_id.setter
|
@@ -240,9 +231,6 @@ class _ManagementAgentState:
|
|
240
231
|
@property
|
241
232
|
@pulumi.getter(name="dataSourceLists")
|
242
233
|
def data_source_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagementAgentDataSourceListArgs']]]]:
|
243
|
-
"""
|
244
|
-
list of dataSources associated with the agent
|
245
|
-
"""
|
246
234
|
return pulumi.get(self, "data_source_lists")
|
247
235
|
|
248
236
|
@data_source_lists.setter
|
@@ -262,7 +250,7 @@ class _ManagementAgentState:
|
|
262
250
|
@pulumi.getter(name="definedTags")
|
263
251
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
264
252
|
"""
|
265
|
-
|
253
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
266
254
|
"""
|
267
255
|
return pulumi.get(self, "defined_tags")
|
268
256
|
|
@@ -283,7 +271,7 @@ class _ManagementAgentState:
|
|
283
271
|
@pulumi.getter(name="displayName")
|
284
272
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
285
273
|
"""
|
286
|
-
|
274
|
+
Management Agent Name
|
287
275
|
"""
|
288
276
|
return pulumi.get(self, "display_name")
|
289
277
|
|
@@ -295,7 +283,7 @@ class _ManagementAgentState:
|
|
295
283
|
@pulumi.getter(name="freeformTags")
|
296
284
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
297
285
|
"""
|
298
|
-
|
286
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
299
287
|
"""
|
300
288
|
return pulumi.get(self, "freeform_tags")
|
301
289
|
|
@@ -580,9 +568,9 @@ class ManagementAgent(pulumi.CustomResource):
|
|
580
568
|
|
581
569
|
:param str resource_name: The name of the resource.
|
582
570
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
583
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags:
|
584
|
-
:param pulumi.Input[str] display_name:
|
585
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags:
|
571
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
572
|
+
:param pulumi.Input[str] display_name: Management Agent Name
|
573
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
586
574
|
:param pulumi.Input[str] managed_agent_id: Unique Management Agent identifier
|
587
575
|
"""
|
588
576
|
...
|
@@ -718,12 +706,9 @@ class ManagementAgent(pulumi.CustomResource):
|
|
718
706
|
:param str resource_name: The unique name of the resulting resource.
|
719
707
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
720
708
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
721
|
-
:param pulumi.Input[str]
|
722
|
-
:param pulumi.Input[str]
|
723
|
-
:param pulumi.Input[
|
724
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
725
|
-
:param pulumi.Input[str] display_name: (Updatable) New displayName of Agent.
|
726
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
709
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
710
|
+
:param pulumi.Input[str] display_name: Management Agent Name
|
711
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
727
712
|
:param pulumi.Input[str] host: Management Agent host machine name
|
728
713
|
:param pulumi.Input[str] host_id: Host resource ocid
|
729
714
|
:param pulumi.Input[str] install_key_id: agent install key identifier
|
@@ -782,25 +767,16 @@ class ManagementAgent(pulumi.CustomResource):
|
|
782
767
|
@property
|
783
768
|
@pulumi.getter(name="availabilityStatus")
|
784
769
|
def availability_status(self) -> pulumi.Output[str]:
|
785
|
-
"""
|
786
|
-
The current availability status of managementAgent
|
787
|
-
"""
|
788
770
|
return pulumi.get(self, "availability_status")
|
789
771
|
|
790
772
|
@property
|
791
773
|
@pulumi.getter(name="compartmentId")
|
792
774
|
def compartment_id(self) -> pulumi.Output[str]:
|
793
|
-
"""
|
794
|
-
Compartment owning this DataSource.
|
795
|
-
"""
|
796
775
|
return pulumi.get(self, "compartment_id")
|
797
776
|
|
798
777
|
@property
|
799
778
|
@pulumi.getter(name="dataSourceLists")
|
800
779
|
def data_source_lists(self) -> pulumi.Output[Sequence['outputs.ManagementAgentDataSourceList']]:
|
801
|
-
"""
|
802
|
-
list of dataSources associated with the agent
|
803
|
-
"""
|
804
780
|
return pulumi.get(self, "data_source_lists")
|
805
781
|
|
806
782
|
@property
|
@@ -812,7 +788,7 @@ class ManagementAgent(pulumi.CustomResource):
|
|
812
788
|
@pulumi.getter(name="definedTags")
|
813
789
|
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
814
790
|
"""
|
815
|
-
|
791
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
816
792
|
"""
|
817
793
|
return pulumi.get(self, "defined_tags")
|
818
794
|
|
@@ -825,7 +801,7 @@ class ManagementAgent(pulumi.CustomResource):
|
|
825
801
|
@pulumi.getter(name="displayName")
|
826
802
|
def display_name(self) -> pulumi.Output[str]:
|
827
803
|
"""
|
828
|
-
|
804
|
+
Management Agent Name
|
829
805
|
"""
|
830
806
|
return pulumi.get(self, "display_name")
|
831
807
|
|
@@ -833,7 +809,7 @@ class ManagementAgent(pulumi.CustomResource):
|
|
833
809
|
@pulumi.getter(name="freeformTags")
|
834
810
|
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
835
811
|
"""
|
836
|
-
|
812
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
837
813
|
"""
|
838
814
|
return pulumi.get(self, "freeform_tags")
|
839
815
|
|
@@ -108,15 +108,7 @@ class ManagementAgentDataSourceList(dict):
|
|
108
108
|
type: Optional[str] = None,
|
109
109
|
url: Optional[str] = None):
|
110
110
|
"""
|
111
|
-
:param str allow_metrics: Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
|
112
|
-
:param str compartment_id: Compartment owning this DataSource.
|
113
|
-
:param int connection_timeout: Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
|
114
|
-
:param bool is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
|
115
|
-
:param str key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
116
|
-
:param Sequence['ManagementAgentDataSourceListMetricDimensionArgs'] metric_dimensions: The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
|
117
111
|
:param str name: Name of the property
|
118
|
-
:param str namespace: The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
|
119
|
-
:param str proxy_url: The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
|
120
112
|
:param int read_data_limit: Number in kilobytes. The limit on the data being sent, not to exceed the agent's fixed limit of 400 (KB).
|
121
113
|
:param int read_timeout: Number in milliseconds. The timeout for reading the response from the Prometheus Exporter's endpoint.
|
122
114
|
:param str resource_group: Oracle Cloud Infrastructure monitoring resource group to assign the metric to.
|
@@ -167,49 +159,31 @@ class ManagementAgentDataSourceList(dict):
|
|
167
159
|
@property
|
168
160
|
@pulumi.getter(name="allowMetrics")
|
169
161
|
def allow_metrics(self) -> Optional[str]:
|
170
|
-
"""
|
171
|
-
Comma separated metric name list. The complete set of desired scraped metrics. Use this property to limit the set of metrics uploaded if required.
|
172
|
-
"""
|
173
162
|
return pulumi.get(self, "allow_metrics")
|
174
163
|
|
175
164
|
@property
|
176
165
|
@pulumi.getter(name="compartmentId")
|
177
166
|
def compartment_id(self) -> Optional[str]:
|
178
|
-
"""
|
179
|
-
Compartment owning this DataSource.
|
180
|
-
"""
|
181
167
|
return pulumi.get(self, "compartment_id")
|
182
168
|
|
183
169
|
@property
|
184
170
|
@pulumi.getter(name="connectionTimeout")
|
185
171
|
def connection_timeout(self) -> Optional[int]:
|
186
|
-
"""
|
187
|
-
Number in milliseconds. The timeout for connecting to the Prometheus Exporter's endpoint.
|
188
|
-
"""
|
189
172
|
return pulumi.get(self, "connection_timeout")
|
190
173
|
|
191
174
|
@property
|
192
175
|
@pulumi.getter(name="isDaemonSet")
|
193
176
|
def is_daemon_set(self) -> Optional[bool]:
|
194
|
-
"""
|
195
|
-
If the Kubernetes cluster type is Daemon set then this will be set to true.
|
196
|
-
"""
|
197
177
|
return pulumi.get(self, "is_daemon_set")
|
198
178
|
|
199
179
|
@property
|
200
180
|
@pulumi.getter
|
201
181
|
def key(self) -> Optional[str]:
|
202
|
-
"""
|
203
|
-
Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
204
|
-
"""
|
205
182
|
return pulumi.get(self, "key")
|
206
183
|
|
207
184
|
@property
|
208
185
|
@pulumi.getter(name="metricDimensions")
|
209
186
|
def metric_dimensions(self) -> Optional[Sequence['outputs.ManagementAgentDataSourceListMetricDimension']]:
|
210
|
-
"""
|
211
|
-
The names of other user-supplied properties expressed as fixed values to be used as dimensions for every uploaded datapoint.
|
212
|
-
"""
|
213
187
|
return pulumi.get(self, "metric_dimensions")
|
214
188
|
|
215
189
|
@property
|
@@ -223,17 +197,11 @@ class ManagementAgentDataSourceList(dict):
|
|
223
197
|
@property
|
224
198
|
@pulumi.getter
|
225
199
|
def namespace(self) -> Optional[str]:
|
226
|
-
"""
|
227
|
-
The Oracle Cloud Infrastructure monitoring namespace to which scraped metrics should be uploaded.
|
228
|
-
"""
|
229
200
|
return pulumi.get(self, "namespace")
|
230
201
|
|
231
202
|
@property
|
232
203
|
@pulumi.getter(name="proxyUrl")
|
233
204
|
def proxy_url(self) -> Optional[str]:
|
234
|
-
"""
|
235
|
-
The url of the network proxy that provides access to the Prometheus Exporter's endpoint (url required property).
|
236
|
-
"""
|
237
205
|
return pulumi.get(self, "proxy_url")
|
238
206
|
|
239
207
|
@property
|
@@ -316,7 +284,6 @@ class ManagementAgentDataSourceListMetricDimension(dict):
|
|
316
284
|
value: Optional[str] = None):
|
317
285
|
"""
|
318
286
|
:param str name: Name of the property
|
319
|
-
:param str value: Value of the metric dimension
|
320
287
|
"""
|
321
288
|
if name is not None:
|
322
289
|
pulumi.set(__self__, "name", name)
|
@@ -334,9 +301,6 @@ class ManagementAgentDataSourceListMetricDimension(dict):
|
|
334
301
|
@property
|
335
302
|
@pulumi.getter
|
336
303
|
def value(self) -> Optional[str]:
|
337
|
-
"""
|
338
|
-
Value of the metric dimension
|
339
|
-
"""
|
340
304
|
return pulumi.get(self, "value")
|
341
305
|
|
342
306
|
|
@@ -394,8 +358,6 @@ class ManagementAgentDataSourceSummaryList(dict):
|
|
394
358
|
name: Optional[str] = None,
|
395
359
|
type: Optional[str] = None):
|
396
360
|
"""
|
397
|
-
:param bool is_daemon_set: If the Kubernetes cluster type is Daemon set then this will be set to true.
|
398
|
-
:param str key: Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
399
361
|
:param str name: Name of the property
|
400
362
|
:param str type: The type of the DataSource.
|
401
363
|
"""
|
@@ -411,17 +373,11 @@ class ManagementAgentDataSourceSummaryList(dict):
|
|
411
373
|
@property
|
412
374
|
@pulumi.getter(name="isDaemonSet")
|
413
375
|
def is_daemon_set(self) -> Optional[bool]:
|
414
|
-
"""
|
415
|
-
If the Kubernetes cluster type is Daemon set then this will be set to true.
|
416
|
-
"""
|
417
376
|
return pulumi.get(self, "is_daemon_set")
|
418
377
|
|
419
378
|
@property
|
420
379
|
@pulumi.getter
|
421
380
|
def key(self) -> Optional[str]:
|
422
|
-
"""
|
423
|
-
Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
|
424
|
-
"""
|
425
381
|
return pulumi.get(self, "key")
|
426
382
|
|
427
383
|
@property
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=4uTj286c2Nca0NvEVTlM68UyZofxfjDHfpCAKiEgtus,164128
|
2
2
|
pulumi_oci/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
3
3
|
pulumi_oci/provider.py,sha256=9MXW-Zeh5jJ_T7w9PgSlFcu0s4_tylBZIVYdFLmo_fU,23922
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=4hh_GI_H_m1wdEAKzMPlMDH6kRAjwxnohCynygTCiSY,80
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=n4ozaAimIFDEfAPLr2v0G1P1LFcavRfGG_SdmyyyDGQ,53339
|
@@ -658,7 +658,7 @@ pulumi_oci/core/volume_group.py,sha256=uNPw3Zr3UpAsCLYAcEKBqOBaaqIQ7UbXept2zefEk
|
|
658
658
|
pulumi_oci/core/volume_group_backup.py,sha256=gYEVRsYqF_lSAwlNM1bdh6NqdW7Aj9XFLpDYbgkBL94,44533
|
659
659
|
pulumi_oci/core/vtap.py,sha256=GHC-Y98EFyuwzKXH3cZP2zrS6bJbIFsqBryn_KPGIno,62627
|
660
660
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
661
|
-
pulumi_oci/database/_inputs.py,sha256=
|
661
|
+
pulumi_oci/database/_inputs.py,sha256=TX5EKzTLPR1pky1qrCz6rthRSNytPyk5eX60vYlJ9EU,701771
|
662
662
|
pulumi_oci/database/application_vip.py,sha256=eoL2Qe_ajH0T5ENsZZXrhKHdSbdqsnYnDRUoWkvy5C0,29151
|
663
663
|
pulumi_oci/database/autonomous_container_database.py,sha256=MEzfyfF0XV2Qgh2q0S8TWpSFLX7PjwqU8_K-OjMSH2k,162865
|
664
664
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=8360eR9E3DX9CMGFBKhMFmLxoiAkmtK5HizuY-vzir0,75338
|
@@ -848,14 +848,14 @@ pulumi_oci/database/get_vm_clusters.py,sha256=xP29YtPcMIp3H67d7u3wjSDuYlMoPqrNQw
|
|
848
848
|
pulumi_oci/database/key_store.py,sha256=dG1I-PEq_v_9DMEzE2ftXKI_KxMADsUunjYehQxABug,27615
|
849
849
|
pulumi_oci/database/maintenance_run.py,sha256=o1swLjSL5DUkr5U28J_fr0RXxBSGaI_ow8_CGTkIfgM,61969
|
850
850
|
pulumi_oci/database/oneoff_patch.py,sha256=fIBCaiKbpcEnOWljP5C5elcf5-WKJI2lNXUSQFUAEA4,38780
|
851
|
-
pulumi_oci/database/outputs.py,sha256=
|
851
|
+
pulumi_oci/database/outputs.py,sha256=58Wmd09GFucSQ1pO4RSZKTE2Qcn7E8zXdIWotJdrkuU,2247981
|
852
852
|
pulumi_oci/database/pluggable_database.py,sha256=vU6z1Iqab2k3tvHMzcLyvjxORR4PvOrPgZ_xtUjeRhY,73835
|
853
853
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=fXgBUT0BGYwBvvs-84awzTQdfANyWD4j6-rsQ2MtxSY,52723
|
854
854
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=JYqZFFx28ijKHxxo5ZCsXDluwnraH6vnh2jUMxLzaa8,50932
|
855
855
|
pulumi_oci/database/pluggable_databases_remote_clone.py,sha256=2i0Gh_AISUZfXSHTJAIN82CXp2F-q15e9gfSeu39T4k,57603
|
856
856
|
pulumi_oci/database/vm_cluster.py,sha256=cmfYI2zWuceQRvDyFgUdELRD7dSwBfBclDPJM1nWamI,78929
|
857
857
|
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=gF6Scpe7l5CTi-t4A_lg8r5b_yJI9gLLU9NMS4IxruM,53276
|
858
|
-
pulumi_oci/database/vm_cluster_network.py,sha256=
|
858
|
+
pulumi_oci/database/vm_cluster_network.py,sha256=XXRyF0dcOv1oAHVR7g4KjUT4wLxWoQbZj-OSf32wF2E,50739
|
859
859
|
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=1idjLiJDzQNiYcrWOXBvhs_lPeZL0v3zZAJLs_heAYM,51019
|
860
860
|
pulumi_oci/databasemanagement/__init__.py,sha256=yd8oU2rEb_imqdI2eKtdVVY7VLXKzjCwoFMmUNI0TRA,7131
|
861
861
|
pulumi_oci/databasemanagement/_inputs.py,sha256=D8pO6n93OzC6aQL-TW6U06KngabG6cXaxanNq3vjMag,439105
|
@@ -2021,7 +2021,7 @@ pulumi_oci/logging/log_saved_search.py,sha256=1zVz1FYpkxEy9Nr_Ikh6jrWJo9kvwCacsp
|
|
2021
2021
|
pulumi_oci/logging/outputs.py,sha256=0xYBngA2srj6kAu08j9m1dL2BUIoWKADdLTnsCogleU,282600
|
2022
2022
|
pulumi_oci/logging/unified_agent_configuration.py,sha256=Ymg2bqRy5Xo3bLgmFVvS0zISkLWKzT_s9UHdy5G2Oxc,32942
|
2023
2023
|
pulumi_oci/managementagent/__init__.py,sha256=bpFmeztqSBwuPQZDXXW0deLSXXdocRC6M6YH1JRvpc4,998
|
2024
|
-
pulumi_oci/managementagent/_inputs.py,sha256=
|
2024
|
+
pulumi_oci/managementagent/_inputs.py,sha256=R_Cn-8iZEiOLgWsRsbvVruixtD7yMRMGX9EWrKpeghk,28494
|
2025
2025
|
pulumi_oci/managementagent/get_management_agent.py,sha256=TwEvp71ZSaUzd2XSO711mXM9z2re5aZSB5MW8Jyupuw,20507
|
2026
2026
|
pulumi_oci/managementagent/get_management_agent_available_histories.py,sha256=aCpdAyB4wTbCf_Ijz0wCEO13TWGrn0gTn6iTOfI828g,10038
|
2027
2027
|
pulumi_oci/managementagent/get_management_agent_count.py,sha256=bJSN983dE6VIYAr8frD7YLudHHa-U9GHCsYyzoXaQy0,7991
|
@@ -2034,10 +2034,10 @@ pulumi_oci/managementagent/get_management_agent_install_keys.py,sha256=0hPRkesNI
|
|
2034
2034
|
pulumi_oci/managementagent/get_management_agent_plugin_count.py,sha256=RJsaEsm9pDmB93Hu8CZ153yZ4driQrXHx6fg16-f8L0,5470
|
2035
2035
|
pulumi_oci/managementagent/get_management_agent_plugins.py,sha256=-nQ-FKLrQDsnQok3FfVKkgGrn2gbaiVdcZqIomuySQM,9358
|
2036
2036
|
pulumi_oci/managementagent/get_management_agents.py,sha256=sgbePaxk2fMdOabROY4ZQCj8ERaDSHiubgZqRj-Faoc,22586
|
2037
|
-
pulumi_oci/managementagent/management_agent.py,sha256=
|
2037
|
+
pulumi_oci/managementagent/management_agent.py,sha256=wFjLLG4ZlAniC44wVDSf5GcfFZPe29ITHq-6tIVZzus,47255
|
2038
2038
|
pulumi_oci/managementagent/management_agent_data_source.py,sha256=fWjOPog2CKYvd__00NfZOpqYdRa_NwBztGakEko8Slo,50054
|
2039
2039
|
pulumi_oci/managementagent/management_agent_install_key.py,sha256=UHjbja03w0OXt-NTM1MWzFEW5y_Cf2Q9Zm222xz6R38,26818
|
2040
|
-
pulumi_oci/managementagent/outputs.py,sha256=
|
2040
|
+
pulumi_oci/managementagent/outputs.py,sha256=s0VnMi1JHk-cw_bC1TzUdYUS3xKZBWFfOzLqZKTpn5g,91851
|
2041
2041
|
pulumi_oci/managementdashboard/__init__.py,sha256=Ohu8GPc8iwS8GcB2YP3XDMI1V5g1yxIDlCOFPh7rZqg,361
|
2042
2042
|
pulumi_oci/managementdashboard/get_management_dashboards_export.py,sha256=fYnQDHOoPr13DkwvqgMuAuOOUnv0eATQ1S5Kt_5XZI4,5938
|
2043
2043
|
pulumi_oci/managementdashboard/management_dashboards_import.py,sha256=-3XTlN_3E6OME2Fr4ocuB9R9P9HukMD_N2XLY6aGLM0,12455
|
@@ -2809,7 +2809,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=O7VSdioW26YIEVlUqhNq3kMmC
|
|
2809
2809
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=7appT-JjWaUc0yM3SygrdohUQfgguEAkGTRKH1Fr3EE,14234
|
2810
2810
|
pulumi_oci/waf/network_address_list.py,sha256=O-HiNiCu77OCRHsXQ8bmTdivdcU4ReLuXtPV4XU-NQU,33677
|
2811
2811
|
pulumi_oci/waf/outputs.py,sha256=Hsb3A2LkAnl-d7DEvFGaGIGrzKc_zyRCeNwUWuwUcW4,227838
|
2812
|
-
pulumi_oci-2.10.
|
2813
|
-
pulumi_oci-2.10.
|
2814
|
-
pulumi_oci-2.10.
|
2815
|
-
pulumi_oci-2.10.
|
2812
|
+
pulumi_oci-2.10.0a1724912108.dist-info/METADATA,sha256=zuC8FAs71u-vd8W2EU2G2b6abpzV1ZaV9GWn6cbtceU,3902
|
2813
|
+
pulumi_oci-2.10.0a1724912108.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
2814
|
+
pulumi_oci-2.10.0a1724912108.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2815
|
+
pulumi_oci-2.10.0a1724912108.dist-info/RECORD,,
|
File without changes
|