pulumi-azure 6.27.0a1758868424__py3-none-any.whl → 6.27.0a1759511969__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.
Potentially problematic release.
This version of pulumi-azure might be problematic. Click here for more details.
- pulumi_azure/__init__.py +32 -0
- pulumi_azure/apimanagement/backend.py +2 -2
- pulumi_azure/appservice/_inputs.py +78 -6
- pulumi_azure/appservice/app_flex_consumption.py +61 -0
- pulumi_azure/appservice/outputs.py +52 -4
- pulumi_azure/appservice/service_plan.py +14 -14
- pulumi_azure/billing/account_cost_management_export.py +2 -2
- pulumi_azure/cdn/_inputs.py +57 -95
- pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
- pulumi_azure/cdn/frontdoor_profile.py +87 -2
- pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
- pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
- pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
- pulumi_azure/cdn/outputs.py +79 -21
- pulumi_azure/cognitive/account.py +7 -7
- pulumi_azure/compute/__init__.py +1 -0
- pulumi_azure/compute/_inputs.py +79 -47
- pulumi_azure/compute/get_managed_disks.py +140 -0
- pulumi_azure/compute/linux_virtual_machine.py +97 -23
- pulumi_azure/compute/outputs.py +362 -34
- pulumi_azure/compute/windows_virtual_machine.py +172 -42
- pulumi_azure/containerservice/_inputs.py +209 -17
- pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
- pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
- pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
- pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
- pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
- pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
- pulumi_azure/containerservice/outputs.py +173 -11
- pulumi_azure/core/_inputs.py +0 -54
- pulumi_azure/core/outputs.py +0 -36
- pulumi_azure/core/resource_group_cost_management_export.py +2 -2
- pulumi_azure/core/resource_group_policy_assignment.py +7 -7
- pulumi_azure/core/resource_policy_assignment.py +7 -7
- pulumi_azure/core/subscription_cost_management_export.py +2 -2
- pulumi_azure/core/subscription_policy_assignment.py +7 -7
- pulumi_azure/datafactory/__init__.py +1 -0
- pulumi_azure/datafactory/customer_managed_key.py +439 -0
- pulumi_azure/datafactory/factory.py +2 -2
- pulumi_azure/dataprotection/_inputs.py +36 -6
- pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
- pulumi_azure/dataprotection/outputs.py +24 -4
- pulumi_azure/devcenter/get_project_pool.py +15 -1
- pulumi_azure/devcenter/project_pool.py +47 -0
- pulumi_azure/eventgrid/domain.py +2 -2
- pulumi_azure/eventgrid/domain_topic.py +2 -2
- pulumi_azure/eventgrid/event_subscription.py +2 -2
- pulumi_azure/eventgrid/get_domain.py +2 -2
- pulumi_azure/eventgrid/get_domain_topic.py +2 -2
- pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
- pulumi_azure/eventgrid/get_partner_registration.py +2 -2
- pulumi_azure/eventgrid/get_system_topic.py +28 -6
- pulumi_azure/eventgrid/get_topic.py +2 -2
- pulumi_azure/eventgrid/partner_configuration.py +2 -2
- pulumi_azure/eventgrid/partner_namespace.py +2 -2
- pulumi_azure/eventgrid/partner_registration.py +2 -2
- pulumi_azure/eventgrid/system_topic.py +97 -35
- pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
- pulumi_azure/eventgrid/topic.py +2 -2
- pulumi_azure/eventhub/domain.py +2 -2
- pulumi_azure/eventhub/event_grid_topic.py +2 -2
- pulumi_azure/eventhub/event_subscription.py +2 -2
- pulumi_azure/hpc/cache_blob_target.py +2 -2
- pulumi_azure/iot/_inputs.py +27 -1
- pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
- pulumi_azure/iot/endpoint_eventhub.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
- pulumi_azure/iot/endpoint_storage_container.py +64 -3
- pulumi_azure/iot/outputs.py +19 -1
- pulumi_azure/keyvault/_inputs.py +3 -17
- pulumi_azure/keyvault/get_key_vault.py +13 -1
- pulumi_azure/keyvault/key_vault.py +78 -35
- pulumi_azure/keyvault/outputs.py +2 -10
- pulumi_azure/kusto/_inputs.py +16 -6
- pulumi_azure/kusto/cluster.py +95 -66
- pulumi_azure/kusto/outputs.py +10 -4
- pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
- pulumi_azure/lb/get_lb_rule.py +28 -4
- pulumi_azure/lb/load_balancer.py +94 -0
- pulumi_azure/lb/nat_rule.py +115 -29
- pulumi_azure/lb/outbound_rule.py +60 -17
- pulumi_azure/lb/rule.py +116 -30
- pulumi_azure/loadtest/_inputs.py +6 -3
- pulumi_azure/loadtest/load_test.py +0 -4
- pulumi_azure/loadtest/outputs.py +4 -2
- pulumi_azure/logicapps/_inputs.py +46 -987
- pulumi_azure/logicapps/get_standard.py +0 -7
- pulumi_azure/logicapps/outputs.py +117 -101
- pulumi_azure/logicapps/standard.py +7 -7
- pulumi_azure/machinelearning/_inputs.py +24 -4
- pulumi_azure/machinelearning/compute_instance.py +35 -7
- pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
- pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
- pulumi_azure/machinelearning/inference_cluster.py +2 -2
- pulumi_azure/machinelearning/outputs.py +17 -3
- pulumi_azure/machinelearning/workspace.py +61 -0
- pulumi_azure/management/_inputs.py +0 -18
- pulumi_azure/management/group_policy_assignment.py +7 -7
- pulumi_azure/management/outputs.py +0 -12
- pulumi_azure/management/private_link_association.py +0 -70
- pulumi_azure/mobile/_inputs.py +14 -6
- pulumi_azure/mobile/network_sim.py +2 -6
- pulumi_azure/mobile/network_sim_policy.py +2 -6
- pulumi_azure/mobile/network_slice.py +116 -31
- pulumi_azure/mobile/outputs.py +6 -4
- pulumi_azure/monitoring/_inputs.py +15 -9
- pulumi_azure/monitoring/activity_log_alert.py +7 -7
- pulumi_azure/monitoring/outputs.py +10 -6
- pulumi_azure/mssql/job_step.py +11 -11
- pulumi_azure/mysql/_inputs.py +20 -0
- pulumi_azure/mysql/outputs.py +14 -0
- pulumi_azure/netapp/_inputs.py +18 -6
- pulumi_azure/netapp/account.py +2 -2
- pulumi_azure/netapp/account_encryption.py +132 -4
- pulumi_azure/netapp/backup_policy.py +2 -2
- pulumi_azure/netapp/backup_vault.py +2 -2
- pulumi_azure/netapp/get_account.py +2 -2
- pulumi_azure/netapp/get_account_encryption.py +25 -3
- pulumi_azure/netapp/get_backup_policy.py +2 -2
- pulumi_azure/netapp/get_backup_vault.py +2 -2
- pulumi_azure/netapp/get_pool.py +17 -3
- pulumi_azure/netapp/get_snapshot.py +2 -2
- pulumi_azure/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure/netapp/get_volume.py +17 -3
- pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
- pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure/netapp/outputs.py +12 -4
- pulumi_azure/netapp/pool.py +104 -9
- pulumi_azure/netapp/snapshot.py +2 -2
- pulumi_azure/netapp/snapshot_policy.py +2 -2
- pulumi_azure/netapp/volume.py +82 -7
- pulumi_azure/netapp/volume_group_oracle.py +2 -2
- pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/volume_quota_rule.py +2 -2
- pulumi_azure/network/__init__.py +2 -0
- pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
- pulumi_azure/network/network_manager_routing_configuration.py +7 -7
- pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
- pulumi_azure/network/subnet.py +76 -1
- pulumi_azure/oracle/__init__.py +3 -0
- pulumi_azure/oracle/autonomous_database_backup.py +310 -0
- pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
- pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
- pulumi_azure/oracle/outputs.py +191 -0
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
- pulumi_azure/policy/_inputs.py +6 -0
- pulumi_azure/policy/outputs.py +4 -0
- pulumi_azure/postgresql/flexible_server.py +7 -7
- pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
- pulumi_azure/pulumi-plugin.json +1 -1
- pulumi_azure/search/service.py +7 -7
- pulumi_azure/sentinel/_inputs.py +144 -0
- pulumi_azure/sentinel/authomation_rule.py +47 -0
- pulumi_azure/sentinel/automation_rule.py +47 -0
- pulumi_azure/sentinel/outputs.py +84 -0
- pulumi_azure/storage/_inputs.py +3 -3
- pulumi_azure/storage/container_immutability_policy.py +2 -2
- pulumi_azure/storage/get_queue.py +59 -8
- pulumi_azure/storage/outputs.py +2 -2
- pulumi_azure/storage/queue.py +159 -27
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetAutonomousDatabaseBackupsResult',
|
|
20
|
+
'AwaitableGetAutonomousDatabaseBackupsResult',
|
|
21
|
+
'get_autonomous_database_backups',
|
|
22
|
+
'get_autonomous_database_backups_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetAutonomousDatabaseBackupsResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getAutonomousDatabaseBackups.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, autonomous_database_backups=None, autonomous_database_id=None, id=None):
|
|
31
|
+
if autonomous_database_backups and not isinstance(autonomous_database_backups, list):
|
|
32
|
+
raise TypeError("Expected argument 'autonomous_database_backups' to be a list")
|
|
33
|
+
pulumi.set(__self__, "autonomous_database_backups", autonomous_database_backups)
|
|
34
|
+
if autonomous_database_id and not isinstance(autonomous_database_id, str):
|
|
35
|
+
raise TypeError("Expected argument 'autonomous_database_id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
|
|
37
|
+
if id and not isinstance(id, str):
|
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "id", id)
|
|
40
|
+
|
|
41
|
+
@_builtins.property
|
|
42
|
+
@pulumi.getter(name="autonomousDatabaseBackups")
|
|
43
|
+
def autonomous_database_backups(self) -> Sequence['outputs.GetAutonomousDatabaseBackupsAutonomousDatabaseBackupResult']:
|
|
44
|
+
"""
|
|
45
|
+
An `autonomous_database_backups` block as defined below.
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "autonomous_database_backups")
|
|
48
|
+
|
|
49
|
+
@_builtins.property
|
|
50
|
+
@pulumi.getter(name="autonomousDatabaseId")
|
|
51
|
+
def autonomous_database_id(self) -> _builtins.str:
|
|
52
|
+
return pulumi.get(self, "autonomous_database_id")
|
|
53
|
+
|
|
54
|
+
@_builtins.property
|
|
55
|
+
@pulumi.getter
|
|
56
|
+
def id(self) -> _builtins.str:
|
|
57
|
+
"""
|
|
58
|
+
The provider-assigned unique ID for this managed resource.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "id")
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class AwaitableGetAutonomousDatabaseBackupsResult(GetAutonomousDatabaseBackupsResult):
|
|
64
|
+
# pylint: disable=using-constant-test
|
|
65
|
+
def __await__(self):
|
|
66
|
+
if False:
|
|
67
|
+
yield self
|
|
68
|
+
return GetAutonomousDatabaseBackupsResult(
|
|
69
|
+
autonomous_database_backups=self.autonomous_database_backups,
|
|
70
|
+
autonomous_database_id=self.autonomous_database_id,
|
|
71
|
+
id=self.id)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def get_autonomous_database_backups(autonomous_database_id: Optional[_builtins.str] = None,
|
|
75
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAutonomousDatabaseBackupsResult:
|
|
76
|
+
"""
|
|
77
|
+
Use this data source to access information about existing Autonomous Database Backups.
|
|
78
|
+
|
|
79
|
+
## Example Usage
|
|
80
|
+
|
|
81
|
+
```python
|
|
82
|
+
import pulumi
|
|
83
|
+
import pulumi_azure as azure
|
|
84
|
+
|
|
85
|
+
example = azure.oracle.get_autonomous_database_backups(autonomous_database_id=example_azurerm_oracle_autonomous_database["id"])
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## API Providers
|
|
89
|
+
|
|
90
|
+
<!-- This section is generated, changes will be overwritten -->
|
|
91
|
+
This data source uses the following Azure API Providers:
|
|
92
|
+
|
|
93
|
+
* `Oracle.Database` - 2025-03-01
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
:param _builtins.str autonomous_database_id: The azureId of the Autonomous Database for which the backups will be listed.
|
|
97
|
+
"""
|
|
98
|
+
__args__ = dict()
|
|
99
|
+
__args__['autonomousDatabaseId'] = autonomous_database_id
|
|
100
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
101
|
+
__ret__ = pulumi.runtime.invoke('azure:oracle/getAutonomousDatabaseBackups:getAutonomousDatabaseBackups', __args__, opts=opts, typ=GetAutonomousDatabaseBackupsResult).value
|
|
102
|
+
|
|
103
|
+
return AwaitableGetAutonomousDatabaseBackupsResult(
|
|
104
|
+
autonomous_database_backups=pulumi.get(__ret__, 'autonomous_database_backups'),
|
|
105
|
+
autonomous_database_id=pulumi.get(__ret__, 'autonomous_database_id'),
|
|
106
|
+
id=pulumi.get(__ret__, 'id'))
|
|
107
|
+
def get_autonomous_database_backups_output(autonomous_database_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
108
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAutonomousDatabaseBackupsResult]:
|
|
109
|
+
"""
|
|
110
|
+
Use this data source to access information about existing Autonomous Database Backups.
|
|
111
|
+
|
|
112
|
+
## Example Usage
|
|
113
|
+
|
|
114
|
+
```python
|
|
115
|
+
import pulumi
|
|
116
|
+
import pulumi_azure as azure
|
|
117
|
+
|
|
118
|
+
example = azure.oracle.get_autonomous_database_backups(autonomous_database_id=example_azurerm_oracle_autonomous_database["id"])
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## API Providers
|
|
122
|
+
|
|
123
|
+
<!-- This section is generated, changes will be overwritten -->
|
|
124
|
+
This data source uses the following Azure API Providers:
|
|
125
|
+
|
|
126
|
+
* `Oracle.Database` - 2025-03-01
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
:param _builtins.str autonomous_database_id: The azureId of the Autonomous Database for which the backups will be listed.
|
|
130
|
+
"""
|
|
131
|
+
__args__ = dict()
|
|
132
|
+
__args__['autonomousDatabaseId'] = autonomous_database_id
|
|
133
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
134
|
+
__ret__ = pulumi.runtime.invoke_output('azure:oracle/getAutonomousDatabaseBackups:getAutonomousDatabaseBackups', __args__, opts=opts, typ=GetAutonomousDatabaseBackupsResult)
|
|
135
|
+
return __ret__.apply(lambda __response__: GetAutonomousDatabaseBackupsResult(
|
|
136
|
+
autonomous_database_backups=pulumi.get(__response__, 'autonomous_database_backups'),
|
|
137
|
+
autonomous_database_id=pulumi.get(__response__, 'autonomous_database_id'),
|
|
138
|
+
id=pulumi.get(__response__, 'id')))
|
pulumi_azure/oracle/outputs.py
CHANGED
|
@@ -22,6 +22,7 @@ __all__ = [
|
|
|
22
22
|
'ExadataInfrastructureMaintenanceWindow',
|
|
23
23
|
'GetAdbsCharacterSetsCharacterSetResult',
|
|
24
24
|
'GetAdbsNationalCharacterSetsCharacterSetResult',
|
|
25
|
+
'GetAutonomousDatabaseBackupsAutonomousDatabaseBackupResult',
|
|
25
26
|
'GetAutonomousDatabaseLongTermBackupScheduleResult',
|
|
26
27
|
'GetCloudVmClusterDataCollectionOptionResult',
|
|
27
28
|
'GetCloudVmClusterFileSystemConfigurationResult',
|
|
@@ -355,6 +356,196 @@ class GetAdbsNationalCharacterSetsCharacterSetResult(dict):
|
|
|
355
356
|
return pulumi.get(self, "character_set")
|
|
356
357
|
|
|
357
358
|
|
|
359
|
+
@pulumi.output_type
|
|
360
|
+
class GetAutonomousDatabaseBackupsAutonomousDatabaseBackupResult(dict):
|
|
361
|
+
def __init__(__self__, *,
|
|
362
|
+
automatic: _builtins.bool,
|
|
363
|
+
autonomous_database_backup_ocid: _builtins.str,
|
|
364
|
+
autonomous_database_ocid: _builtins.str,
|
|
365
|
+
database_backup_size_in_tbs: _builtins.float,
|
|
366
|
+
database_version: _builtins.str,
|
|
367
|
+
display_name: _builtins.str,
|
|
368
|
+
id: _builtins.str,
|
|
369
|
+
lifecycle_details: _builtins.str,
|
|
370
|
+
lifecycle_state: _builtins.str,
|
|
371
|
+
location: _builtins.str,
|
|
372
|
+
provisioning_state: _builtins.str,
|
|
373
|
+
restorable: _builtins.bool,
|
|
374
|
+
retention_period_in_days: _builtins.int,
|
|
375
|
+
time_available_til: _builtins.str,
|
|
376
|
+
time_ended: _builtins.str,
|
|
377
|
+
time_started: _builtins.str,
|
|
378
|
+
type: _builtins.str):
|
|
379
|
+
"""
|
|
380
|
+
:param _builtins.bool automatic: Indicates whether the backup is user-initiated or automatic.
|
|
381
|
+
:param _builtins.str autonomous_database_backup_ocid: The backup OCID.
|
|
382
|
+
:param _builtins.str autonomous_database_ocid: The OCID of the Autonomous Database OCID.
|
|
383
|
+
:param _builtins.str database_version: The Oracle Database version of the Autonomous Database at the time the backup was taken.
|
|
384
|
+
:param _builtins.str display_name: The user-friendly name of the backup.
|
|
385
|
+
:param _builtins.str id: The ID of the Autonomous Database Backup.
|
|
386
|
+
:param _builtins.str lifecycle_details: Information about the current lifecycle state of the backup.
|
|
387
|
+
:param _builtins.str lifecycle_state: The current state of the backup.
|
|
388
|
+
:param _builtins.str location: `- The Azure Region where the Autonomous Database Backup exists.
|
|
389
|
+
:param _builtins.str provisioning_state: The current provisioning state of the Autonomous Database Backup.
|
|
390
|
+
:param _builtins.bool restorable: Indicates whether the backup can be used to restore the Autonomous Database.
|
|
391
|
+
:param _builtins.int retention_period_in_days: The retention period in days for the Autonomous Database Backup.
|
|
392
|
+
:param _builtins.str time_available_til: The date and time the backup will become unusable.
|
|
393
|
+
:param _builtins.str time_ended: The date and time the backup was completed.
|
|
394
|
+
:param _builtins.str time_started: The date and time the backup started.
|
|
395
|
+
:param _builtins.str type: The type of backup.
|
|
396
|
+
"""
|
|
397
|
+
pulumi.set(__self__, "automatic", automatic)
|
|
398
|
+
pulumi.set(__self__, "autonomous_database_backup_ocid", autonomous_database_backup_ocid)
|
|
399
|
+
pulumi.set(__self__, "autonomous_database_ocid", autonomous_database_ocid)
|
|
400
|
+
pulumi.set(__self__, "database_backup_size_in_tbs", database_backup_size_in_tbs)
|
|
401
|
+
pulumi.set(__self__, "database_version", database_version)
|
|
402
|
+
pulumi.set(__self__, "display_name", display_name)
|
|
403
|
+
pulumi.set(__self__, "id", id)
|
|
404
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
|
405
|
+
pulumi.set(__self__, "lifecycle_state", lifecycle_state)
|
|
406
|
+
pulumi.set(__self__, "location", location)
|
|
407
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
408
|
+
pulumi.set(__self__, "restorable", restorable)
|
|
409
|
+
pulumi.set(__self__, "retention_period_in_days", retention_period_in_days)
|
|
410
|
+
pulumi.set(__self__, "time_available_til", time_available_til)
|
|
411
|
+
pulumi.set(__self__, "time_ended", time_ended)
|
|
412
|
+
pulumi.set(__self__, "time_started", time_started)
|
|
413
|
+
pulumi.set(__self__, "type", type)
|
|
414
|
+
|
|
415
|
+
@_builtins.property
|
|
416
|
+
@pulumi.getter
|
|
417
|
+
def automatic(self) -> _builtins.bool:
|
|
418
|
+
"""
|
|
419
|
+
Indicates whether the backup is user-initiated or automatic.
|
|
420
|
+
"""
|
|
421
|
+
return pulumi.get(self, "automatic")
|
|
422
|
+
|
|
423
|
+
@_builtins.property
|
|
424
|
+
@pulumi.getter(name="autonomousDatabaseBackupOcid")
|
|
425
|
+
def autonomous_database_backup_ocid(self) -> _builtins.str:
|
|
426
|
+
"""
|
|
427
|
+
The backup OCID.
|
|
428
|
+
"""
|
|
429
|
+
return pulumi.get(self, "autonomous_database_backup_ocid")
|
|
430
|
+
|
|
431
|
+
@_builtins.property
|
|
432
|
+
@pulumi.getter(name="autonomousDatabaseOcid")
|
|
433
|
+
def autonomous_database_ocid(self) -> _builtins.str:
|
|
434
|
+
"""
|
|
435
|
+
The OCID of the Autonomous Database OCID.
|
|
436
|
+
"""
|
|
437
|
+
return pulumi.get(self, "autonomous_database_ocid")
|
|
438
|
+
|
|
439
|
+
@_builtins.property
|
|
440
|
+
@pulumi.getter(name="databaseBackupSizeInTbs")
|
|
441
|
+
def database_backup_size_in_tbs(self) -> _builtins.float:
|
|
442
|
+
return pulumi.get(self, "database_backup_size_in_tbs")
|
|
443
|
+
|
|
444
|
+
@_builtins.property
|
|
445
|
+
@pulumi.getter(name="databaseVersion")
|
|
446
|
+
def database_version(self) -> _builtins.str:
|
|
447
|
+
"""
|
|
448
|
+
The Oracle Database version of the Autonomous Database at the time the backup was taken.
|
|
449
|
+
"""
|
|
450
|
+
return pulumi.get(self, "database_version")
|
|
451
|
+
|
|
452
|
+
@_builtins.property
|
|
453
|
+
@pulumi.getter(name="displayName")
|
|
454
|
+
def display_name(self) -> _builtins.str:
|
|
455
|
+
"""
|
|
456
|
+
The user-friendly name of the backup.
|
|
457
|
+
"""
|
|
458
|
+
return pulumi.get(self, "display_name")
|
|
459
|
+
|
|
460
|
+
@_builtins.property
|
|
461
|
+
@pulumi.getter
|
|
462
|
+
def id(self) -> _builtins.str:
|
|
463
|
+
"""
|
|
464
|
+
The ID of the Autonomous Database Backup.
|
|
465
|
+
"""
|
|
466
|
+
return pulumi.get(self, "id")
|
|
467
|
+
|
|
468
|
+
@_builtins.property
|
|
469
|
+
@pulumi.getter(name="lifecycleDetails")
|
|
470
|
+
def lifecycle_details(self) -> _builtins.str:
|
|
471
|
+
"""
|
|
472
|
+
Information about the current lifecycle state of the backup.
|
|
473
|
+
"""
|
|
474
|
+
return pulumi.get(self, "lifecycle_details")
|
|
475
|
+
|
|
476
|
+
@_builtins.property
|
|
477
|
+
@pulumi.getter(name="lifecycleState")
|
|
478
|
+
def lifecycle_state(self) -> _builtins.str:
|
|
479
|
+
"""
|
|
480
|
+
The current state of the backup.
|
|
481
|
+
"""
|
|
482
|
+
return pulumi.get(self, "lifecycle_state")
|
|
483
|
+
|
|
484
|
+
@_builtins.property
|
|
485
|
+
@pulumi.getter
|
|
486
|
+
def location(self) -> _builtins.str:
|
|
487
|
+
"""
|
|
488
|
+
`- The Azure Region where the Autonomous Database Backup exists.
|
|
489
|
+
"""
|
|
490
|
+
return pulumi.get(self, "location")
|
|
491
|
+
|
|
492
|
+
@_builtins.property
|
|
493
|
+
@pulumi.getter(name="provisioningState")
|
|
494
|
+
def provisioning_state(self) -> _builtins.str:
|
|
495
|
+
"""
|
|
496
|
+
The current provisioning state of the Autonomous Database Backup.
|
|
497
|
+
"""
|
|
498
|
+
return pulumi.get(self, "provisioning_state")
|
|
499
|
+
|
|
500
|
+
@_builtins.property
|
|
501
|
+
@pulumi.getter
|
|
502
|
+
def restorable(self) -> _builtins.bool:
|
|
503
|
+
"""
|
|
504
|
+
Indicates whether the backup can be used to restore the Autonomous Database.
|
|
505
|
+
"""
|
|
506
|
+
return pulumi.get(self, "restorable")
|
|
507
|
+
|
|
508
|
+
@_builtins.property
|
|
509
|
+
@pulumi.getter(name="retentionPeriodInDays")
|
|
510
|
+
def retention_period_in_days(self) -> _builtins.int:
|
|
511
|
+
"""
|
|
512
|
+
The retention period in days for the Autonomous Database Backup.
|
|
513
|
+
"""
|
|
514
|
+
return pulumi.get(self, "retention_period_in_days")
|
|
515
|
+
|
|
516
|
+
@_builtins.property
|
|
517
|
+
@pulumi.getter(name="timeAvailableTil")
|
|
518
|
+
def time_available_til(self) -> _builtins.str:
|
|
519
|
+
"""
|
|
520
|
+
The date and time the backup will become unusable.
|
|
521
|
+
"""
|
|
522
|
+
return pulumi.get(self, "time_available_til")
|
|
523
|
+
|
|
524
|
+
@_builtins.property
|
|
525
|
+
@pulumi.getter(name="timeEnded")
|
|
526
|
+
def time_ended(self) -> _builtins.str:
|
|
527
|
+
"""
|
|
528
|
+
The date and time the backup was completed.
|
|
529
|
+
"""
|
|
530
|
+
return pulumi.get(self, "time_ended")
|
|
531
|
+
|
|
532
|
+
@_builtins.property
|
|
533
|
+
@pulumi.getter(name="timeStarted")
|
|
534
|
+
def time_started(self) -> _builtins.str:
|
|
535
|
+
"""
|
|
536
|
+
The date and time the backup started.
|
|
537
|
+
"""
|
|
538
|
+
return pulumi.get(self, "time_started")
|
|
539
|
+
|
|
540
|
+
@_builtins.property
|
|
541
|
+
@pulumi.getter
|
|
542
|
+
def type(self) -> _builtins.str:
|
|
543
|
+
"""
|
|
544
|
+
The type of backup.
|
|
545
|
+
"""
|
|
546
|
+
return pulumi.get(self, "type")
|
|
547
|
+
|
|
548
|
+
|
|
358
549
|
@pulumi.output_type
|
|
359
550
|
class GetAutonomousDatabaseLongTermBackupScheduleResult(dict):
|
|
360
551
|
def __init__(__self__, *,
|
|
@@ -395,7 +395,7 @@ class NextGenerationFirewallVirtualHubLocalRulestack(pulumi.CustomResource):
|
|
|
395
395
|
<!-- This section is generated, changes will be overwritten -->
|
|
396
396
|
This resource uses the following Azure API Providers:
|
|
397
397
|
|
|
398
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
398
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23, 2022-08-29
|
|
399
399
|
|
|
400
400
|
## Import
|
|
401
401
|
|
|
@@ -477,7 +477,7 @@ class NextGenerationFirewallVirtualHubLocalRulestack(pulumi.CustomResource):
|
|
|
477
477
|
<!-- This section is generated, changes will be overwritten -->
|
|
478
478
|
This resource uses the following Azure API Providers:
|
|
479
479
|
|
|
480
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
480
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23, 2022-08-29
|
|
481
481
|
|
|
482
482
|
## Import
|
|
483
483
|
|
|
@@ -441,7 +441,7 @@ class NextGenerationFirewallVirtualHubPanorama(pulumi.CustomResource):
|
|
|
441
441
|
<!-- This section is generated, changes will be overwritten -->
|
|
442
442
|
This resource uses the following Azure API Providers:
|
|
443
443
|
|
|
444
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
444
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23
|
|
445
445
|
|
|
446
446
|
## Import
|
|
447
447
|
|
|
@@ -525,7 +525,7 @@ class NextGenerationFirewallVirtualHubPanorama(pulumi.CustomResource):
|
|
|
525
525
|
<!-- This section is generated, changes will be overwritten -->
|
|
526
526
|
This resource uses the following Azure API Providers:
|
|
527
527
|
|
|
528
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
528
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23
|
|
529
529
|
|
|
530
530
|
## Import
|
|
531
531
|
|
|
@@ -438,7 +438,7 @@ class NextGenerationFirewallVirtualNetworkLocalRulestack(pulumi.CustomResource):
|
|
|
438
438
|
<!-- This section is generated, changes will be overwritten -->
|
|
439
439
|
This resource uses the following Azure API Providers:
|
|
440
440
|
|
|
441
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
441
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23, 2022-08-29
|
|
442
442
|
|
|
443
443
|
## Import
|
|
444
444
|
|
|
@@ -563,7 +563,7 @@ class NextGenerationFirewallVirtualNetworkLocalRulestack(pulumi.CustomResource):
|
|
|
563
563
|
<!-- This section is generated, changes will be overwritten -->
|
|
564
564
|
This resource uses the following Azure API Providers:
|
|
565
565
|
|
|
566
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
566
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23, 2022-08-29
|
|
567
567
|
|
|
568
568
|
## Import
|
|
569
569
|
|
|
@@ -472,7 +472,7 @@ class NextGenerationFirewallVirtualNetworkPanorama(pulumi.CustomResource):
|
|
|
472
472
|
<!-- This section is generated, changes will be overwritten -->
|
|
473
473
|
This resource uses the following Azure API Providers:
|
|
474
474
|
|
|
475
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
475
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23
|
|
476
476
|
|
|
477
477
|
## Import
|
|
478
478
|
|
|
@@ -583,7 +583,7 @@ class NextGenerationFirewallVirtualNetworkPanorama(pulumi.CustomResource):
|
|
|
583
583
|
<!-- This section is generated, changes will be overwritten -->
|
|
584
584
|
This resource uses the following Azure API Providers:
|
|
585
585
|
|
|
586
|
-
* `PaloAltoNetworks.Cloudngfw` -
|
|
586
|
+
* `PaloAltoNetworks.Cloudngfw` - 2025-05-23
|
|
587
587
|
|
|
588
588
|
## Import
|
|
589
589
|
|
pulumi_azure/policy/_inputs.py
CHANGED
|
@@ -258,6 +258,8 @@ if not MYPY:
|
|
|
258
258
|
content_hash: NotRequired[pulumi.Input[_builtins.str]]
|
|
259
259
|
"""
|
|
260
260
|
The content hash for the Guest Configuration package.
|
|
261
|
+
|
|
262
|
+
> **Note:** The value for `content_hash` should be the SH256SUM for the zip file in the `content_uri` and must be in upper case.
|
|
261
263
|
"""
|
|
262
264
|
content_uri: NotRequired[pulumi.Input[_builtins.str]]
|
|
263
265
|
"""
|
|
@@ -287,6 +289,8 @@ class VirtualMachineConfigurationAssignmentConfigurationArgs:
|
|
|
287
289
|
"""
|
|
288
290
|
:param pulumi.Input[_builtins.str] assignment_type: The assignment type for the Guest Configuration Assignment. Possible values are `Audit`, `ApplyAndAutoCorrect`, `ApplyAndMonitor` and `DeployAndAutoCorrect`.
|
|
289
291
|
:param pulumi.Input[_builtins.str] content_hash: The content hash for the Guest Configuration package.
|
|
292
|
+
|
|
293
|
+
> **Note:** The value for `content_hash` should be the SH256SUM for the zip file in the `content_uri` and must be in upper case.
|
|
290
294
|
:param pulumi.Input[_builtins.str] content_uri: The content URI where the Guest Configuration package is stored.
|
|
291
295
|
|
|
292
296
|
> **Note:** When deploying a Custom Guest Configuration package the `content_hash` and `content_uri` fields must be defined. For Built-in Guest Configuration packages, such as the `AzureWindowsBaseline` package, the `content_hash` and `content_uri` should not be defined, rather these fields will be returned after the Built-in Guest Configuration package has been provisioned. For more information on guest configuration assignments please see the [product documentation](https://docs.microsoft.com/azure/governance/policy/concepts/guest-configuration-assignments).
|
|
@@ -321,6 +325,8 @@ class VirtualMachineConfigurationAssignmentConfigurationArgs:
|
|
|
321
325
|
def content_hash(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
322
326
|
"""
|
|
323
327
|
The content hash for the Guest Configuration package.
|
|
328
|
+
|
|
329
|
+
> **Note:** The value for `content_hash` should be the SH256SUM for the zip file in the `content_uri` and must be in upper case.
|
|
324
330
|
"""
|
|
325
331
|
return pulumi.get(self, "content_hash")
|
|
326
332
|
|
pulumi_azure/policy/outputs.py
CHANGED
|
@@ -232,6 +232,8 @@ class VirtualMachineConfigurationAssignmentConfiguration(dict):
|
|
|
232
232
|
"""
|
|
233
233
|
:param _builtins.str assignment_type: The assignment type for the Guest Configuration Assignment. Possible values are `Audit`, `ApplyAndAutoCorrect`, `ApplyAndMonitor` and `DeployAndAutoCorrect`.
|
|
234
234
|
:param _builtins.str content_hash: The content hash for the Guest Configuration package.
|
|
235
|
+
|
|
236
|
+
> **Note:** The value for `content_hash` should be the SH256SUM for the zip file in the `content_uri` and must be in upper case.
|
|
235
237
|
:param _builtins.str content_uri: The content URI where the Guest Configuration package is stored.
|
|
236
238
|
|
|
237
239
|
> **Note:** When deploying a Custom Guest Configuration package the `content_hash` and `content_uri` fields must be defined. For Built-in Guest Configuration packages, such as the `AzureWindowsBaseline` package, the `content_hash` and `content_uri` should not be defined, rather these fields will be returned after the Built-in Guest Configuration package has been provisioned. For more information on guest configuration assignments please see the [product documentation](https://docs.microsoft.com/azure/governance/policy/concepts/guest-configuration-assignments).
|
|
@@ -262,6 +264,8 @@ class VirtualMachineConfigurationAssignmentConfiguration(dict):
|
|
|
262
264
|
def content_hash(self) -> Optional[_builtins.str]:
|
|
263
265
|
"""
|
|
264
266
|
The content hash for the Guest Configuration package.
|
|
267
|
+
|
|
268
|
+
> **Note:** The value for `content_hash` should be the SH256SUM for the zip file in the `content_uri` and must be in upper case.
|
|
265
269
|
"""
|
|
266
270
|
return pulumi.get(self, "content_hash")
|
|
267
271
|
|
|
@@ -93,7 +93,7 @@ class FlexibleServerArgs:
|
|
|
93
93
|
|
|
94
94
|
> **Note:** The `storage_tier` can be scaled once every 12 hours, this restriction is in place to ensure stability and performance after any changes to your PostgreSQL Flexible Server's configuration.
|
|
95
95
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the PostgreSQL Flexible Server.
|
|
96
|
-
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15` and `
|
|
96
|
+
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15`, `16` and `17`. Required when `create_mode` is `Default`.
|
|
97
97
|
|
|
98
98
|
> **Note:** Downgrading `version` isn't supported and will force a new PostgreSQL Flexible Server to be created.
|
|
99
99
|
|
|
@@ -475,7 +475,7 @@ class FlexibleServerArgs:
|
|
|
475
475
|
@pulumi.getter
|
|
476
476
|
def version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
477
477
|
"""
|
|
478
|
-
The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15` and `
|
|
478
|
+
The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15`, `16` and `17`. Required when `create_mode` is `Default`.
|
|
479
479
|
|
|
480
480
|
> **Note:** Downgrading `version` isn't supported and will force a new PostgreSQL Flexible Server to be created.
|
|
481
481
|
|
|
@@ -574,7 +574,7 @@ class _FlexibleServerState:
|
|
|
574
574
|
|
|
575
575
|
> **Note:** The `storage_tier` can be scaled once every 12 hours, this restriction is in place to ensure stability and performance after any changes to your PostgreSQL Flexible Server's configuration.
|
|
576
576
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the PostgreSQL Flexible Server.
|
|
577
|
-
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15` and `
|
|
577
|
+
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15`, `16` and `17`. Required when `create_mode` is `Default`.
|
|
578
578
|
|
|
579
579
|
> **Note:** Downgrading `version` isn't supported and will force a new PostgreSQL Flexible Server to be created.
|
|
580
580
|
|
|
@@ -971,7 +971,7 @@ class _FlexibleServerState:
|
|
|
971
971
|
@pulumi.getter
|
|
972
972
|
def version(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
973
973
|
"""
|
|
974
|
-
The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15` and `
|
|
974
|
+
The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15`, `16` and `17`. Required when `create_mode` is `Default`.
|
|
975
975
|
|
|
976
976
|
> **Note:** Downgrading `version` isn't supported and will force a new PostgreSQL Flexible Server to be created.
|
|
977
977
|
|
|
@@ -1164,7 +1164,7 @@ class FlexibleServer(pulumi.CustomResource):
|
|
|
1164
1164
|
|
|
1165
1165
|
> **Note:** The `storage_tier` can be scaled once every 12 hours, this restriction is in place to ensure stability and performance after any changes to your PostgreSQL Flexible Server's configuration.
|
|
1166
1166
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the PostgreSQL Flexible Server.
|
|
1167
|
-
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15` and `
|
|
1167
|
+
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15`, `16` and `17`. Required when `create_mode` is `Default`.
|
|
1168
1168
|
|
|
1169
1169
|
> **Note:** Downgrading `version` isn't supported and will force a new PostgreSQL Flexible Server to be created.
|
|
1170
1170
|
|
|
@@ -1440,7 +1440,7 @@ class FlexibleServer(pulumi.CustomResource):
|
|
|
1440
1440
|
|
|
1441
1441
|
> **Note:** The `storage_tier` can be scaled once every 12 hours, this restriction is in place to ensure stability and performance after any changes to your PostgreSQL Flexible Server's configuration.
|
|
1442
1442
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the PostgreSQL Flexible Server.
|
|
1443
|
-
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15` and `
|
|
1443
|
+
:param pulumi.Input[_builtins.str] version: The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15`, `16` and `17`. Required when `create_mode` is `Default`.
|
|
1444
1444
|
|
|
1445
1445
|
> **Note:** Downgrading `version` isn't supported and will force a new PostgreSQL Flexible Server to be created.
|
|
1446
1446
|
|
|
@@ -1710,7 +1710,7 @@ class FlexibleServer(pulumi.CustomResource):
|
|
|
1710
1710
|
@pulumi.getter
|
|
1711
1711
|
def version(self) -> pulumi.Output[_builtins.str]:
|
|
1712
1712
|
"""
|
|
1713
|
-
The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15` and `
|
|
1713
|
+
The version of PostgreSQL Flexible Server to use. Possible values are `11`,`12`, `13`, `14`, `15`, `16` and `17`. Required when `create_mode` is `Default`.
|
|
1714
1714
|
|
|
1715
1715
|
> **Note:** Downgrading `version` isn't supported and will force a new PostgreSQL Flexible Server to be created.
|
|
1716
1716
|
|
|
@@ -25,9 +25,9 @@ class FlexibleServerFirewallRuleArgs:
|
|
|
25
25
|
name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
26
26
|
"""
|
|
27
27
|
The set of arguments for constructing a FlexibleServerFirewallRule resource.
|
|
28
|
-
:param pulumi.Input[_builtins.str] end_ip_address: The
|
|
28
|
+
:param pulumi.Input[_builtins.str] end_ip_address: The IPv4 Address defining the end of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
29
29
|
:param pulumi.Input[_builtins.str] server_id: The ID of the PostgreSQL Flexible Server from which to create this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
30
|
-
:param pulumi.Input[_builtins.str] start_ip_address: The
|
|
30
|
+
:param pulumi.Input[_builtins.str] start_ip_address: The IPv4 Address defining the start of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
31
31
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
32
32
|
"""
|
|
33
33
|
pulumi.set(__self__, "end_ip_address", end_ip_address)
|
|
@@ -40,7 +40,7 @@ class FlexibleServerFirewallRuleArgs:
|
|
|
40
40
|
@pulumi.getter(name="endIpAddress")
|
|
41
41
|
def end_ip_address(self) -> pulumi.Input[_builtins.str]:
|
|
42
42
|
"""
|
|
43
|
-
The
|
|
43
|
+
The IPv4 Address defining the end of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
44
44
|
"""
|
|
45
45
|
return pulumi.get(self, "end_ip_address")
|
|
46
46
|
|
|
@@ -64,7 +64,7 @@ class FlexibleServerFirewallRuleArgs:
|
|
|
64
64
|
@pulumi.getter(name="startIpAddress")
|
|
65
65
|
def start_ip_address(self) -> pulumi.Input[_builtins.str]:
|
|
66
66
|
"""
|
|
67
|
-
The
|
|
67
|
+
The IPv4 Address defining the start of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
68
68
|
"""
|
|
69
69
|
return pulumi.get(self, "start_ip_address")
|
|
70
70
|
|
|
@@ -94,10 +94,10 @@ class _FlexibleServerFirewallRuleState:
|
|
|
94
94
|
start_ip_address: Optional[pulumi.Input[_builtins.str]] = None):
|
|
95
95
|
"""
|
|
96
96
|
Input properties used for looking up and filtering FlexibleServerFirewallRule resources.
|
|
97
|
-
:param pulumi.Input[_builtins.str] end_ip_address: The
|
|
97
|
+
:param pulumi.Input[_builtins.str] end_ip_address: The IPv4 Address defining the end of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
98
98
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
99
99
|
:param pulumi.Input[_builtins.str] server_id: The ID of the PostgreSQL Flexible Server from which to create this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
100
|
-
:param pulumi.Input[_builtins.str] start_ip_address: The
|
|
100
|
+
:param pulumi.Input[_builtins.str] start_ip_address: The IPv4 Address defining the start of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
101
101
|
"""
|
|
102
102
|
if end_ip_address is not None:
|
|
103
103
|
pulumi.set(__self__, "end_ip_address", end_ip_address)
|
|
@@ -112,7 +112,7 @@ class _FlexibleServerFirewallRuleState:
|
|
|
112
112
|
@pulumi.getter(name="endIpAddress")
|
|
113
113
|
def end_ip_address(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
114
114
|
"""
|
|
115
|
-
The
|
|
115
|
+
The IPv4 Address defining the end of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
116
116
|
"""
|
|
117
117
|
return pulumi.get(self, "end_ip_address")
|
|
118
118
|
|
|
@@ -148,7 +148,7 @@ class _FlexibleServerFirewallRuleState:
|
|
|
148
148
|
@pulumi.getter(name="startIpAddress")
|
|
149
149
|
def start_ip_address(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
150
150
|
"""
|
|
151
|
-
The
|
|
151
|
+
The IPv4 Address defining the start of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
152
152
|
"""
|
|
153
153
|
return pulumi.get(self, "start_ip_address")
|
|
154
154
|
|
|
@@ -213,10 +213,10 @@ class FlexibleServerFirewallRule(pulumi.CustomResource):
|
|
|
213
213
|
|
|
214
214
|
:param str resource_name: The name of the resource.
|
|
215
215
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
216
|
-
:param pulumi.Input[_builtins.str] end_ip_address: The
|
|
216
|
+
:param pulumi.Input[_builtins.str] end_ip_address: The IPv4 Address defining the end of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
217
217
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
218
218
|
:param pulumi.Input[_builtins.str] server_id: The ID of the PostgreSQL Flexible Server from which to create this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
219
|
-
:param pulumi.Input[_builtins.str] start_ip_address: The
|
|
219
|
+
:param pulumi.Input[_builtins.str] start_ip_address: The IPv4 Address defining the start of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
220
220
|
"""
|
|
221
221
|
...
|
|
222
222
|
@overload
|
|
@@ -326,10 +326,10 @@ class FlexibleServerFirewallRule(pulumi.CustomResource):
|
|
|
326
326
|
:param str resource_name: The unique name of the resulting resource.
|
|
327
327
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
328
328
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
329
|
-
:param pulumi.Input[_builtins.str] end_ip_address: The
|
|
329
|
+
:param pulumi.Input[_builtins.str] end_ip_address: The IPv4 Address defining the end of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
330
330
|
:param pulumi.Input[_builtins.str] name: The name which should be used for this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
331
331
|
:param pulumi.Input[_builtins.str] server_id: The ID of the PostgreSQL Flexible Server from which to create this PostgreSQL Flexible Server Firewall Rule. Changing this forces a new PostgreSQL Flexible Server Firewall Rule to be created.
|
|
332
|
-
:param pulumi.Input[_builtins.str] start_ip_address: The
|
|
332
|
+
:param pulumi.Input[_builtins.str] start_ip_address: The IPv4 Address defining the start of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
333
333
|
"""
|
|
334
334
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
335
335
|
|
|
@@ -345,7 +345,7 @@ class FlexibleServerFirewallRule(pulumi.CustomResource):
|
|
|
345
345
|
@pulumi.getter(name="endIpAddress")
|
|
346
346
|
def end_ip_address(self) -> pulumi.Output[_builtins.str]:
|
|
347
347
|
"""
|
|
348
|
-
The
|
|
348
|
+
The IPv4 Address defining the end of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
349
349
|
"""
|
|
350
350
|
return pulumi.get(self, "end_ip_address")
|
|
351
351
|
|
|
@@ -369,7 +369,7 @@ class FlexibleServerFirewallRule(pulumi.CustomResource):
|
|
|
369
369
|
@pulumi.getter(name="startIpAddress")
|
|
370
370
|
def start_ip_address(self) -> pulumi.Output[_builtins.str]:
|
|
371
371
|
"""
|
|
372
|
-
The
|
|
372
|
+
The IPv4 Address defining the start of the range of addresses associated with this PostgreSQL Flexible Server Firewall Rule.
|
|
373
373
|
"""
|
|
374
374
|
return pulumi.get(self, "start_ip_address")
|
|
375
375
|
|
pulumi_azure/pulumi-plugin.json
CHANGED