pulumi-oci 2.13.0a1729059403__py3-none-any.whl → 2.13.0a1729613556__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/__init__.py +24 -19
- pulumi_oci/containerengine/_inputs.py +341 -0
- pulumi_oci/containerengine/cluster.py +64 -0
- pulumi_oci/containerengine/get_cluster.py +12 -1
- pulumi_oci/containerengine/outputs.py +582 -0
- pulumi_oci/core/_inputs.py +299 -37
- pulumi_oci/core/boot_volume.py +90 -5
- pulumi_oci/core/get_block_volume_replica.py +15 -1
- pulumi_oci/core/get_boot_volume.py +15 -4
- pulumi_oci/core/get_boot_volume_replica.py +15 -1
- pulumi_oci/core/get_volume.py +18 -4
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +573 -46
- pulumi_oci/core/volume.py +110 -12
- pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
- pulumi_oci/core/volume_group.py +56 -5
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
- pulumi_oci/desktops/_inputs.py +175 -13
- pulumi_oci/desktops/desktop_pool.py +67 -0
- pulumi_oci/desktops/get_desktop_pool.py +16 -1
- pulumi_oci/desktops/outputs.py +339 -18
- pulumi_oci/dns/__init__.py +2 -0
- pulumi_oci/dns/_inputs.py +1157 -12
- pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
- pulumi_oci/dns/get_records.py +45 -13
- pulumi_oci/dns/get_resolver.py +8 -6
- pulumi_oci/dns/get_resolver_endpoint.py +8 -6
- pulumi_oci/dns/get_resolver_endpoints.py +2 -2
- pulumi_oci/dns/get_resolvers.py +12 -12
- pulumi_oci/dns/get_rrset.py +16 -16
- pulumi_oci/dns/get_rrsets.py +12 -10
- pulumi_oci/dns/get_view.py +8 -4
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +33 -13
- pulumi_oci/dns/outputs.py +1388 -79
- pulumi_oci/dns/record.py +12 -12
- pulumi_oci/dns/resolver.py +7 -7
- pulumi_oci/dns/resolver_endpoint.py +2 -2
- pulumi_oci/dns/rrset.py +50 -41
- pulumi_oci/dns/zone.py +176 -17
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +165 -0
- pulumi_oci/goldengate/connection.py +49 -35
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +79 -4
- pulumi_oci/goldengate/get_deployment.py +30 -2
- pulumi_oci/goldengate/get_deployment_environments.py +144 -0
- pulumi_oci/goldengate/outputs.py +409 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/RECORD +56 -61
- {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/WHEEL +1 -1
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
- {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/top_level.txt +0 -0
pulumi_oci/desktops/outputs.py
CHANGED
@@ -23,6 +23,9 @@ __all__ = [
|
|
23
23
|
'DesktopPoolImage',
|
24
24
|
'DesktopPoolNetworkConfiguration',
|
25
25
|
'DesktopPoolPrivateAccessDetails',
|
26
|
+
'DesktopPoolSessionLifecycleActions',
|
27
|
+
'DesktopPoolSessionLifecycleActionsDisconnect',
|
28
|
+
'DesktopPoolSessionLifecycleActionsInactivity',
|
26
29
|
'DesktopPoolShapeConfig',
|
27
30
|
'GetDesktopDevicePolicyResult',
|
28
31
|
'GetDesktopHostingOptionResult',
|
@@ -37,6 +40,9 @@ __all__ = [
|
|
37
40
|
'GetDesktopPoolImageResult',
|
38
41
|
'GetDesktopPoolNetworkConfigurationResult',
|
39
42
|
'GetDesktopPoolPrivateAccessDetailResult',
|
43
|
+
'GetDesktopPoolSessionLifecycleActionResult',
|
44
|
+
'GetDesktopPoolSessionLifecycleActionDisconnectResult',
|
45
|
+
'GetDesktopPoolSessionLifecycleActionInactivityResult',
|
40
46
|
'GetDesktopPoolShapeConfigResult',
|
41
47
|
'GetDesktopPoolVolumesDesktopPoolVolumeCollectionResult',
|
42
48
|
'GetDesktopPoolVolumesDesktopPoolVolumeCollectionItemResult',
|
@@ -50,6 +56,9 @@ __all__ = [
|
|
50
56
|
'GetDesktopPoolsDesktopPoolCollectionItemImageResult',
|
51
57
|
'GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult',
|
52
58
|
'GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult',
|
59
|
+
'GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult',
|
60
|
+
'GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult',
|
61
|
+
'GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult',
|
53
62
|
'GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult',
|
54
63
|
'GetDesktopPoolsFilterResult',
|
55
64
|
'GetDesktopsDesktopCollectionResult',
|
@@ -79,18 +88,20 @@ class DesktopPoolAvailabilityPolicy(dict):
|
|
79
88
|
return super().get(key, default)
|
80
89
|
|
81
90
|
def __init__(__self__, *,
|
82
|
-
start_schedule: 'outputs.DesktopPoolAvailabilityPolicyStartSchedule',
|
83
|
-
stop_schedule: 'outputs.DesktopPoolAvailabilityPolicyStopSchedule'):
|
91
|
+
start_schedule: Optional['outputs.DesktopPoolAvailabilityPolicyStartSchedule'] = None,
|
92
|
+
stop_schedule: Optional['outputs.DesktopPoolAvailabilityPolicyStopSchedule'] = None):
|
84
93
|
"""
|
85
94
|
:param 'DesktopPoolAvailabilityPolicyStartScheduleArgs' start_schedule: (Updatable) Provides the schedule information for a desktop.
|
86
95
|
:param 'DesktopPoolAvailabilityPolicyStopScheduleArgs' stop_schedule: (Updatable) Provides the schedule information for a desktop.
|
87
96
|
"""
|
88
|
-
|
89
|
-
|
97
|
+
if start_schedule is not None:
|
98
|
+
pulumi.set(__self__, "start_schedule", start_schedule)
|
99
|
+
if stop_schedule is not None:
|
100
|
+
pulumi.set(__self__, "stop_schedule", stop_schedule)
|
90
101
|
|
91
102
|
@property
|
92
103
|
@pulumi.getter(name="startSchedule")
|
93
|
-
def start_schedule(self) -> 'outputs.DesktopPoolAvailabilityPolicyStartSchedule':
|
104
|
+
def start_schedule(self) -> Optional['outputs.DesktopPoolAvailabilityPolicyStartSchedule']:
|
94
105
|
"""
|
95
106
|
(Updatable) Provides the schedule information for a desktop.
|
96
107
|
"""
|
@@ -98,7 +109,7 @@ class DesktopPoolAvailabilityPolicy(dict):
|
|
98
109
|
|
99
110
|
@property
|
100
111
|
@pulumi.getter(name="stopSchedule")
|
101
|
-
def stop_schedule(self) -> 'outputs.DesktopPoolAvailabilityPolicyStopSchedule':
|
112
|
+
def stop_schedule(self) -> Optional['outputs.DesktopPoolAvailabilityPolicyStopSchedule']:
|
102
113
|
"""
|
103
114
|
(Updatable) Provides the schedule information for a desktop.
|
104
115
|
"""
|
@@ -454,7 +465,7 @@ class DesktopPoolPrivateAccessDetails(dict):
|
|
454
465
|
private_ip: Optional[str] = None,
|
455
466
|
vcn_id: Optional[str] = None):
|
456
467
|
"""
|
457
|
-
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
468
|
+
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
458
469
|
:param str endpoint_fqdn: The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example, xyz.oraclecloud.com).
|
459
470
|
:param Sequence[str] nsg_ids: A list of network security groups for the private access.
|
460
471
|
:param str private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
|
@@ -474,7 +485,7 @@ class DesktopPoolPrivateAccessDetails(dict):
|
|
474
485
|
@pulumi.getter(name="subnetId")
|
475
486
|
def subnet_id(self) -> str:
|
476
487
|
"""
|
477
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
488
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
478
489
|
"""
|
479
490
|
return pulumi.get(self, "subnet_id")
|
480
491
|
|
@@ -511,6 +522,131 @@ class DesktopPoolPrivateAccessDetails(dict):
|
|
511
522
|
return pulumi.get(self, "vcn_id")
|
512
523
|
|
513
524
|
|
525
|
+
@pulumi.output_type
|
526
|
+
class DesktopPoolSessionLifecycleActions(dict):
|
527
|
+
def __init__(__self__, *,
|
528
|
+
disconnect: Optional['outputs.DesktopPoolSessionLifecycleActionsDisconnect'] = None,
|
529
|
+
inactivity: Optional['outputs.DesktopPoolSessionLifecycleActionsInactivity'] = None):
|
530
|
+
"""
|
531
|
+
:param 'DesktopPoolSessionLifecycleActionsDisconnectArgs' disconnect: (Updatable) Action and grace period for disconnect
|
532
|
+
:param 'DesktopPoolSessionLifecycleActionsInactivityArgs' inactivity: (Updatable) Action and grace period for inactivity
|
533
|
+
"""
|
534
|
+
if disconnect is not None:
|
535
|
+
pulumi.set(__self__, "disconnect", disconnect)
|
536
|
+
if inactivity is not None:
|
537
|
+
pulumi.set(__self__, "inactivity", inactivity)
|
538
|
+
|
539
|
+
@property
|
540
|
+
@pulumi.getter
|
541
|
+
def disconnect(self) -> Optional['outputs.DesktopPoolSessionLifecycleActionsDisconnect']:
|
542
|
+
"""
|
543
|
+
(Updatable) Action and grace period for disconnect
|
544
|
+
"""
|
545
|
+
return pulumi.get(self, "disconnect")
|
546
|
+
|
547
|
+
@property
|
548
|
+
@pulumi.getter
|
549
|
+
def inactivity(self) -> Optional['outputs.DesktopPoolSessionLifecycleActionsInactivity']:
|
550
|
+
"""
|
551
|
+
(Updatable) Action and grace period for inactivity
|
552
|
+
"""
|
553
|
+
return pulumi.get(self, "inactivity")
|
554
|
+
|
555
|
+
|
556
|
+
@pulumi.output_type
|
557
|
+
class DesktopPoolSessionLifecycleActionsDisconnect(dict):
|
558
|
+
@staticmethod
|
559
|
+
def __key_warning(key: str):
|
560
|
+
suggest = None
|
561
|
+
if key == "gracePeriodInMinutes":
|
562
|
+
suggest = "grace_period_in_minutes"
|
563
|
+
|
564
|
+
if suggest:
|
565
|
+
pulumi.log.warn(f"Key '{key}' not found in DesktopPoolSessionLifecycleActionsDisconnect. Access the value via the '{suggest}' property getter instead.")
|
566
|
+
|
567
|
+
def __getitem__(self, key: str) -> Any:
|
568
|
+
DesktopPoolSessionLifecycleActionsDisconnect.__key_warning(key)
|
569
|
+
return super().__getitem__(key)
|
570
|
+
|
571
|
+
def get(self, key: str, default = None) -> Any:
|
572
|
+
DesktopPoolSessionLifecycleActionsDisconnect.__key_warning(key)
|
573
|
+
return super().get(key, default)
|
574
|
+
|
575
|
+
def __init__(__self__, *,
|
576
|
+
action: str,
|
577
|
+
grace_period_in_minutes: Optional[int] = None):
|
578
|
+
"""
|
579
|
+
:param str action: (Updatable) a disconnect action to be triggered
|
580
|
+
:param int grace_period_in_minutes: (Updatable) The period of time (in minutes) after disconnect before any action occurs. If the value is not provided, a default value is used.
|
581
|
+
"""
|
582
|
+
pulumi.set(__self__, "action", action)
|
583
|
+
if grace_period_in_minutes is not None:
|
584
|
+
pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
|
585
|
+
|
586
|
+
@property
|
587
|
+
@pulumi.getter
|
588
|
+
def action(self) -> str:
|
589
|
+
"""
|
590
|
+
(Updatable) a disconnect action to be triggered
|
591
|
+
"""
|
592
|
+
return pulumi.get(self, "action")
|
593
|
+
|
594
|
+
@property
|
595
|
+
@pulumi.getter(name="gracePeriodInMinutes")
|
596
|
+
def grace_period_in_minutes(self) -> Optional[int]:
|
597
|
+
"""
|
598
|
+
(Updatable) The period of time (in minutes) after disconnect before any action occurs. If the value is not provided, a default value is used.
|
599
|
+
"""
|
600
|
+
return pulumi.get(self, "grace_period_in_minutes")
|
601
|
+
|
602
|
+
|
603
|
+
@pulumi.output_type
|
604
|
+
class DesktopPoolSessionLifecycleActionsInactivity(dict):
|
605
|
+
@staticmethod
|
606
|
+
def __key_warning(key: str):
|
607
|
+
suggest = None
|
608
|
+
if key == "gracePeriodInMinutes":
|
609
|
+
suggest = "grace_period_in_minutes"
|
610
|
+
|
611
|
+
if suggest:
|
612
|
+
pulumi.log.warn(f"Key '{key}' not found in DesktopPoolSessionLifecycleActionsInactivity. Access the value via the '{suggest}' property getter instead.")
|
613
|
+
|
614
|
+
def __getitem__(self, key: str) -> Any:
|
615
|
+
DesktopPoolSessionLifecycleActionsInactivity.__key_warning(key)
|
616
|
+
return super().__getitem__(key)
|
617
|
+
|
618
|
+
def get(self, key: str, default = None) -> Any:
|
619
|
+
DesktopPoolSessionLifecycleActionsInactivity.__key_warning(key)
|
620
|
+
return super().get(key, default)
|
621
|
+
|
622
|
+
def __init__(__self__, *,
|
623
|
+
action: str,
|
624
|
+
grace_period_in_minutes: Optional[int] = None):
|
625
|
+
"""
|
626
|
+
:param str action: (Updatable) an inactivity action to be triggered
|
627
|
+
:param int grace_period_in_minutes: (Updatable) The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
628
|
+
"""
|
629
|
+
pulumi.set(__self__, "action", action)
|
630
|
+
if grace_period_in_minutes is not None:
|
631
|
+
pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
|
632
|
+
|
633
|
+
@property
|
634
|
+
@pulumi.getter
|
635
|
+
def action(self) -> str:
|
636
|
+
"""
|
637
|
+
(Updatable) an inactivity action to be triggered
|
638
|
+
"""
|
639
|
+
return pulumi.get(self, "action")
|
640
|
+
|
641
|
+
@property
|
642
|
+
@pulumi.getter(name="gracePeriodInMinutes")
|
643
|
+
def grace_period_in_minutes(self) -> Optional[int]:
|
644
|
+
"""
|
645
|
+
(Updatable) The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
646
|
+
"""
|
647
|
+
return pulumi.get(self, "grace_period_in_minutes")
|
648
|
+
|
649
|
+
|
514
650
|
@pulumi.output_type
|
515
651
|
class DesktopPoolShapeConfig(dict):
|
516
652
|
@staticmethod
|
@@ -1089,7 +1225,7 @@ class GetDesktopPoolNetworkConfigurationResult(dict):
|
|
1089
1225
|
subnet_id: str,
|
1090
1226
|
vcn_id: str):
|
1091
1227
|
"""
|
1092
|
-
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
1228
|
+
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1093
1229
|
:param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
|
1094
1230
|
"""
|
1095
1231
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -1099,7 +1235,7 @@ class GetDesktopPoolNetworkConfigurationResult(dict):
|
|
1099
1235
|
@pulumi.getter(name="subnetId")
|
1100
1236
|
def subnet_id(self) -> str:
|
1101
1237
|
"""
|
1102
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
1238
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1103
1239
|
"""
|
1104
1240
|
return pulumi.get(self, "subnet_id")
|
1105
1241
|
|
@@ -1121,10 +1257,10 @@ class GetDesktopPoolPrivateAccessDetailResult(dict):
|
|
1121
1257
|
subnet_id: str,
|
1122
1258
|
vcn_id: str):
|
1123
1259
|
"""
|
1124
|
-
:param str endpoint_fqdn: The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example,
|
1260
|
+
:param str endpoint_fqdn: The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example, xyz.oraclecloud.com).
|
1125
1261
|
:param Sequence[str] nsg_ids: A list of network security groups for the private access.
|
1126
1262
|
:param str private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
|
1127
|
-
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
1263
|
+
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1128
1264
|
:param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
|
1129
1265
|
"""
|
1130
1266
|
pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
|
@@ -1137,7 +1273,7 @@ class GetDesktopPoolPrivateAccessDetailResult(dict):
|
|
1137
1273
|
@pulumi.getter(name="endpointFqdn")
|
1138
1274
|
def endpoint_fqdn(self) -> str:
|
1139
1275
|
"""
|
1140
|
-
The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example,
|
1276
|
+
The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example, xyz.oraclecloud.com).
|
1141
1277
|
"""
|
1142
1278
|
return pulumi.get(self, "endpoint_fqdn")
|
1143
1279
|
|
@@ -1161,7 +1297,7 @@ class GetDesktopPoolPrivateAccessDetailResult(dict):
|
|
1161
1297
|
@pulumi.getter(name="subnetId")
|
1162
1298
|
def subnet_id(self) -> str:
|
1163
1299
|
"""
|
1164
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
1300
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1165
1301
|
"""
|
1166
1302
|
return pulumi.get(self, "subnet_id")
|
1167
1303
|
|
@@ -1174,6 +1310,93 @@ class GetDesktopPoolPrivateAccessDetailResult(dict):
|
|
1174
1310
|
return pulumi.get(self, "vcn_id")
|
1175
1311
|
|
1176
1312
|
|
1313
|
+
@pulumi.output_type
|
1314
|
+
class GetDesktopPoolSessionLifecycleActionResult(dict):
|
1315
|
+
def __init__(__self__, *,
|
1316
|
+
disconnects: Sequence['outputs.GetDesktopPoolSessionLifecycleActionDisconnectResult'],
|
1317
|
+
inactivities: Sequence['outputs.GetDesktopPoolSessionLifecycleActionInactivityResult']):
|
1318
|
+
"""
|
1319
|
+
:param Sequence['GetDesktopPoolSessionLifecycleActionDisconnectArgs'] disconnects: Action and grace period for disconnect
|
1320
|
+
:param Sequence['GetDesktopPoolSessionLifecycleActionInactivityArgs'] inactivities: Action and grace period for inactivity
|
1321
|
+
"""
|
1322
|
+
pulumi.set(__self__, "disconnects", disconnects)
|
1323
|
+
pulumi.set(__self__, "inactivities", inactivities)
|
1324
|
+
|
1325
|
+
@property
|
1326
|
+
@pulumi.getter
|
1327
|
+
def disconnects(self) -> Sequence['outputs.GetDesktopPoolSessionLifecycleActionDisconnectResult']:
|
1328
|
+
"""
|
1329
|
+
Action and grace period for disconnect
|
1330
|
+
"""
|
1331
|
+
return pulumi.get(self, "disconnects")
|
1332
|
+
|
1333
|
+
@property
|
1334
|
+
@pulumi.getter
|
1335
|
+
def inactivities(self) -> Sequence['outputs.GetDesktopPoolSessionLifecycleActionInactivityResult']:
|
1336
|
+
"""
|
1337
|
+
Action and grace period for inactivity
|
1338
|
+
"""
|
1339
|
+
return pulumi.get(self, "inactivities")
|
1340
|
+
|
1341
|
+
|
1342
|
+
@pulumi.output_type
|
1343
|
+
class GetDesktopPoolSessionLifecycleActionDisconnectResult(dict):
|
1344
|
+
def __init__(__self__, *,
|
1345
|
+
action: str,
|
1346
|
+
grace_period_in_minutes: int):
|
1347
|
+
"""
|
1348
|
+
:param str action: an inactivity action to be triggered
|
1349
|
+
:param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
1350
|
+
"""
|
1351
|
+
pulumi.set(__self__, "action", action)
|
1352
|
+
pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
|
1353
|
+
|
1354
|
+
@property
|
1355
|
+
@pulumi.getter
|
1356
|
+
def action(self) -> str:
|
1357
|
+
"""
|
1358
|
+
an inactivity action to be triggered
|
1359
|
+
"""
|
1360
|
+
return pulumi.get(self, "action")
|
1361
|
+
|
1362
|
+
@property
|
1363
|
+
@pulumi.getter(name="gracePeriodInMinutes")
|
1364
|
+
def grace_period_in_minutes(self) -> int:
|
1365
|
+
"""
|
1366
|
+
The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
1367
|
+
"""
|
1368
|
+
return pulumi.get(self, "grace_period_in_minutes")
|
1369
|
+
|
1370
|
+
|
1371
|
+
@pulumi.output_type
|
1372
|
+
class GetDesktopPoolSessionLifecycleActionInactivityResult(dict):
|
1373
|
+
def __init__(__self__, *,
|
1374
|
+
action: str,
|
1375
|
+
grace_period_in_minutes: int):
|
1376
|
+
"""
|
1377
|
+
:param str action: an inactivity action to be triggered
|
1378
|
+
:param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
1379
|
+
"""
|
1380
|
+
pulumi.set(__self__, "action", action)
|
1381
|
+
pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
|
1382
|
+
|
1383
|
+
@property
|
1384
|
+
@pulumi.getter
|
1385
|
+
def action(self) -> str:
|
1386
|
+
"""
|
1387
|
+
an inactivity action to be triggered
|
1388
|
+
"""
|
1389
|
+
return pulumi.get(self, "action")
|
1390
|
+
|
1391
|
+
@property
|
1392
|
+
@pulumi.getter(name="gracePeriodInMinutes")
|
1393
|
+
def grace_period_in_minutes(self) -> int:
|
1394
|
+
"""
|
1395
|
+
The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
1396
|
+
"""
|
1397
|
+
return pulumi.get(self, "grace_period_in_minutes")
|
1398
|
+
|
1399
|
+
|
1177
1400
|
@pulumi.output_type
|
1178
1401
|
class GetDesktopPoolShapeConfigResult(dict):
|
1179
1402
|
def __init__(__self__, *,
|
@@ -1399,6 +1622,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
|
|
1399
1622
|
network_configurations: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult'],
|
1400
1623
|
nsg_ids: Sequence[str],
|
1401
1624
|
private_access_details: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult'],
|
1625
|
+
session_lifecycle_actions: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult'],
|
1402
1626
|
shape_configs: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult'],
|
1403
1627
|
shape_name: str,
|
1404
1628
|
standby_size: int,
|
@@ -1428,6 +1652,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
|
|
1428
1652
|
:param Sequence['GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationArgs'] network_configurations: Provides information about the network configuration of the desktop pool.
|
1429
1653
|
:param Sequence[str] nsg_ids: A list of network security groups for the private access.
|
1430
1654
|
:param Sequence['GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailArgs'] private_access_details: The details of the desktop's private access network connectivity that were used to create the pool.
|
1655
|
+
:param Sequence['GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionArgs'] session_lifecycle_actions: Action to be triggered on inactivity or disconnect
|
1431
1656
|
:param Sequence['GetDesktopPoolsDesktopPoolCollectionItemShapeConfigArgs'] shape_configs: The shape configuration used for each desktop compute instance in the desktop pool.
|
1432
1657
|
:param str shape_name: The shape of the desktop pool.
|
1433
1658
|
:param int standby_size: The maximum number of standby desktops available in the desktop pool.
|
@@ -1457,6 +1682,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
|
|
1457
1682
|
pulumi.set(__self__, "network_configurations", network_configurations)
|
1458
1683
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
1459
1684
|
pulumi.set(__self__, "private_access_details", private_access_details)
|
1685
|
+
pulumi.set(__self__, "session_lifecycle_actions", session_lifecycle_actions)
|
1460
1686
|
pulumi.set(__self__, "shape_configs", shape_configs)
|
1461
1687
|
pulumi.set(__self__, "shape_name", shape_name)
|
1462
1688
|
pulumi.set(__self__, "standby_size", standby_size)
|
@@ -1612,6 +1838,14 @@ class GetDesktopPoolsDesktopPoolCollectionItemResult(dict):
|
|
1612
1838
|
"""
|
1613
1839
|
return pulumi.get(self, "private_access_details")
|
1614
1840
|
|
1841
|
+
@property
|
1842
|
+
@pulumi.getter(name="sessionLifecycleActions")
|
1843
|
+
def session_lifecycle_actions(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult']:
|
1844
|
+
"""
|
1845
|
+
Action to be triggered on inactivity or disconnect
|
1846
|
+
"""
|
1847
|
+
return pulumi.get(self, "session_lifecycle_actions")
|
1848
|
+
|
1615
1849
|
@property
|
1616
1850
|
@pulumi.getter(name="shapeConfigs")
|
1617
1851
|
def shape_configs(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult']:
|
@@ -1910,7 +2144,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
|
|
1910
2144
|
subnet_id: str,
|
1911
2145
|
vcn_id: str):
|
1912
2146
|
"""
|
1913
|
-
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
2147
|
+
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1914
2148
|
:param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
|
1915
2149
|
"""
|
1916
2150
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -1920,7 +2154,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemNetworkConfigurationResult(dict):
|
|
1920
2154
|
@pulumi.getter(name="subnetId")
|
1921
2155
|
def subnet_id(self) -> str:
|
1922
2156
|
"""
|
1923
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
2157
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1924
2158
|
"""
|
1925
2159
|
return pulumi.get(self, "subnet_id")
|
1926
2160
|
|
@@ -1945,7 +2179,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult(dict):
|
|
1945
2179
|
:param str endpoint_fqdn: The three-label FQDN to use for the private endpoint. The customer VCN's DNS records are updated with this FQDN. This enables the customer to use the FQDN instead of the private endpoint's private IP address to access the service (for example, xyz.oraclecloud.com).
|
1946
2180
|
:param Sequence[str] nsg_ids: A list of network security groups for the private access.
|
1947
2181
|
:param str private_ip: The IPv4 address from the provided Oracle Cloud Infrastructure subnet which needs to be assigned to the VNIC. If not provided, it will be auto-assigned with an available IPv4 address from the subnet.
|
1948
|
-
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
2182
|
+
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1949
2183
|
:param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer VCN.
|
1950
2184
|
"""
|
1951
2185
|
pulumi.set(__self__, "endpoint_fqdn", endpoint_fqdn)
|
@@ -1982,7 +2216,7 @@ class GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult(dict):
|
|
1982
2216
|
@pulumi.getter(name="subnetId")
|
1983
2217
|
def subnet_id(self) -> str:
|
1984
2218
|
"""
|
1985
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in the customer VCN where the connectivity will be established.
|
2219
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private subnet in the customer VCN where the connectivity will be established.
|
1986
2220
|
"""
|
1987
2221
|
return pulumi.get(self, "subnet_id")
|
1988
2222
|
|
@@ -1995,6 +2229,93 @@ class GetDesktopPoolsDesktopPoolCollectionItemPrivateAccessDetailResult(dict):
|
|
1995
2229
|
return pulumi.get(self, "vcn_id")
|
1996
2230
|
|
1997
2231
|
|
2232
|
+
@pulumi.output_type
|
2233
|
+
class GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionResult(dict):
|
2234
|
+
def __init__(__self__, *,
|
2235
|
+
disconnects: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult'],
|
2236
|
+
inactivities: Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult']):
|
2237
|
+
"""
|
2238
|
+
:param Sequence['GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectArgs'] disconnects: Action and grace period for disconnect
|
2239
|
+
:param Sequence['GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityArgs'] inactivities: Action and grace period for inactivity
|
2240
|
+
"""
|
2241
|
+
pulumi.set(__self__, "disconnects", disconnects)
|
2242
|
+
pulumi.set(__self__, "inactivities", inactivities)
|
2243
|
+
|
2244
|
+
@property
|
2245
|
+
@pulumi.getter
|
2246
|
+
def disconnects(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult']:
|
2247
|
+
"""
|
2248
|
+
Action and grace period for disconnect
|
2249
|
+
"""
|
2250
|
+
return pulumi.get(self, "disconnects")
|
2251
|
+
|
2252
|
+
@property
|
2253
|
+
@pulumi.getter
|
2254
|
+
def inactivities(self) -> Sequence['outputs.GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult']:
|
2255
|
+
"""
|
2256
|
+
Action and grace period for inactivity
|
2257
|
+
"""
|
2258
|
+
return pulumi.get(self, "inactivities")
|
2259
|
+
|
2260
|
+
|
2261
|
+
@pulumi.output_type
|
2262
|
+
class GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionDisconnectResult(dict):
|
2263
|
+
def __init__(__self__, *,
|
2264
|
+
action: str,
|
2265
|
+
grace_period_in_minutes: int):
|
2266
|
+
"""
|
2267
|
+
:param str action: an inactivity action to be triggered
|
2268
|
+
:param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
2269
|
+
"""
|
2270
|
+
pulumi.set(__self__, "action", action)
|
2271
|
+
pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
|
2272
|
+
|
2273
|
+
@property
|
2274
|
+
@pulumi.getter
|
2275
|
+
def action(self) -> str:
|
2276
|
+
"""
|
2277
|
+
an inactivity action to be triggered
|
2278
|
+
"""
|
2279
|
+
return pulumi.get(self, "action")
|
2280
|
+
|
2281
|
+
@property
|
2282
|
+
@pulumi.getter(name="gracePeriodInMinutes")
|
2283
|
+
def grace_period_in_minutes(self) -> int:
|
2284
|
+
"""
|
2285
|
+
The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
2286
|
+
"""
|
2287
|
+
return pulumi.get(self, "grace_period_in_minutes")
|
2288
|
+
|
2289
|
+
|
2290
|
+
@pulumi.output_type
|
2291
|
+
class GetDesktopPoolsDesktopPoolCollectionItemSessionLifecycleActionInactivityResult(dict):
|
2292
|
+
def __init__(__self__, *,
|
2293
|
+
action: str,
|
2294
|
+
grace_period_in_minutes: int):
|
2295
|
+
"""
|
2296
|
+
:param str action: an inactivity action to be triggered
|
2297
|
+
:param int grace_period_in_minutes: The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
2298
|
+
"""
|
2299
|
+
pulumi.set(__self__, "action", action)
|
2300
|
+
pulumi.set(__self__, "grace_period_in_minutes", grace_period_in_minutes)
|
2301
|
+
|
2302
|
+
@property
|
2303
|
+
@pulumi.getter
|
2304
|
+
def action(self) -> str:
|
2305
|
+
"""
|
2306
|
+
an inactivity action to be triggered
|
2307
|
+
"""
|
2308
|
+
return pulumi.get(self, "action")
|
2309
|
+
|
2310
|
+
@property
|
2311
|
+
@pulumi.getter(name="gracePeriodInMinutes")
|
2312
|
+
def grace_period_in_minutes(self) -> int:
|
2313
|
+
"""
|
2314
|
+
The period of time (in minutes) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.
|
2315
|
+
"""
|
2316
|
+
return pulumi.get(self, "grace_period_in_minutes")
|
2317
|
+
|
2318
|
+
|
1998
2319
|
@pulumi.output_type
|
1999
2320
|
class GetDesktopPoolsDesktopPoolCollectionItemShapeConfigResult(dict):
|
2000
2321
|
def __init__(__self__, *,
|
pulumi_oci/dns/__init__.py
CHANGED
@@ -31,5 +31,7 @@ from .steering_policy_attachment import *
|
|
31
31
|
from .tsig_key import *
|
32
32
|
from .view import *
|
33
33
|
from .zone import *
|
34
|
+
from .zone_promote_dnssec_key_version import *
|
35
|
+
from .zone_stage_dnssec_key_version import *
|
34
36
|
from ._inputs import *
|
35
37
|
from . import outputs
|