pulumi-oci 1.30.0a1712219839__py3-none-any.whl → 1.31.0__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.
Files changed (55) hide show
  1. pulumi_oci/apmsynthetics/config.py +7 -7
  2. pulumi_oci/apmsynthetics/get_monitor.py +1 -1
  3. pulumi_oci/apmsynthetics/outputs.py +2 -2
  4. pulumi_oci/containerengine/_inputs.py +6 -10
  5. pulumi_oci/containerengine/outputs.py +14 -26
  6. pulumi_oci/core/_inputs.py +6 -6
  7. pulumi_oci/core/instance.py +140 -0
  8. pulumi_oci/core/outputs.py +14 -14
  9. pulumi_oci/database/database_upgrade.py +12 -10
  10. pulumi_oci/databasemanagement/get_managed_database_cursor_cache_statements.py +2 -2
  11. pulumi_oci/databasemanagement/get_managed_database_sql_plan_baselines.py +2 -2
  12. pulumi_oci/databasemanagement/outputs.py +6 -6
  13. pulumi_oci/dataflow/get_invoke_run.py +11 -1
  14. pulumi_oci/dataflow/invoke_run.py +49 -0
  15. pulumi_oci/dataflow/outputs.py +7 -0
  16. pulumi_oci/datasafe/_inputs.py +4 -4
  17. pulumi_oci/datasafe/outputs.py +12 -12
  18. pulumi_oci/devops/_inputs.py +380 -10
  19. pulumi_oci/devops/outputs.py +953 -32
  20. pulumi_oci/disasterrecovery/dr_protection_group.py +0 -24
  21. pulumi_oci/filestorage/replication.py +4 -4
  22. pulumi_oci/goldengate/connection.py +7 -7
  23. pulumi_oci/identity/domains_app_role.py +4 -4
  24. pulumi_oci/identity/domains_group.py +7 -7
  25. pulumi_oci/identity/get_domains_app_role.py +1 -1
  26. pulumi_oci/identity/get_domains_group.py +1 -1
  27. pulumi_oci/identity/outputs.py +8 -8
  28. pulumi_oci/networkfirewall/outputs.py +12 -16
  29. pulumi_oci/networkloadbalancer/_inputs.py +222 -10
  30. pulumi_oci/networkloadbalancer/backend_set.py +70 -7
  31. pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
  32. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
  33. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
  34. pulumi_oci/networkloadbalancer/outputs.py +397 -28
  35. pulumi_oci/opensearch/cluster.py +0 -10
  36. pulumi_oci/opensearch/get_opensearch_cluster.py +0 -10
  37. pulumi_oci/opensearch/get_opensearch_clusters.py +0 -10
  38. pulumi_oci/opensearch/get_opensearch_version.py +0 -10
  39. pulumi_oci/opensearch/get_opensearch_versions.py +0 -10
  40. pulumi_oci/queue/get_queue.py +1 -1
  41. pulumi_oci/queue/outputs.py +2 -2
  42. pulumi_oci/queue/queue.py +7 -7
  43. pulumi_oci/stackmonitoring/_inputs.py +209 -1
  44. pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
  45. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
  46. pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
  47. pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
  48. pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
  49. pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
  50. pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
  51. pulumi_oci/stackmonitoring/outputs.py +436 -1
  52. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/METADATA +1 -1
  53. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/RECORD +55 -55
  54. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/WHEEL +0 -0
  55. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/top_level.txt +0 -0
@@ -465,22 +465,10 @@ class DrProtectionGroup(pulumi.CustomResource):
465
465
 
466
466
  Create DR Protection Group resource with a default value of `disassociate_trigger` property, e.g.
467
467
 
468
- <!--Start PulumiCodeChooser -->
469
- ```python
470
- import pulumi
471
- ```
472
- <!--End PulumiCodeChooser -->
473
-
474
468
  ## Delete
475
469
 
476
470
  Disassociate DR Protection Group (if associated) before deleting it. Increment value of `disassociate_trigger` property to trigger Disassociate, e.g.
477
471
 
478
- <!--Start PulumiCodeChooser -->
479
- ```python
480
- import pulumi
481
- ```
482
- <!--End PulumiCodeChooser -->
483
-
484
472
  ## Import
485
473
 
486
474
  DrProtectionGroups can be imported using the `id`, e.g.
@@ -519,22 +507,10 @@ class DrProtectionGroup(pulumi.CustomResource):
519
507
 
520
508
  Create DR Protection Group resource with a default value of `disassociate_trigger` property, e.g.
521
509
 
522
- <!--Start PulumiCodeChooser -->
523
- ```python
524
- import pulumi
525
- ```
526
- <!--End PulumiCodeChooser -->
527
-
528
510
  ## Delete
529
511
 
530
512
  Disassociate DR Protection Group (if associated) before deleting it. Increment value of `disassociate_trigger` property to trigger Disassociate, e.g.
531
513
 
532
- <!--Start PulumiCodeChooser -->
533
- ```python
534
- import pulumi
535
- ```
536
- <!--End PulumiCodeChooser -->
537
-
538
514
  ## Import
539
515
 
540
516
  DrProtectionGroups can be imported using the `id`, e.g.
@@ -461,8 +461,8 @@ class Replication(pulumi.CustomResource):
461
461
 
462
462
  test_replication = oci.file_storage.Replication("testReplication",
463
463
  compartment_id=var["compartment_id"],
464
- source_id=oci_file_storage_source["test_source"]["id"],
465
- target_id=oci_cloud_guard_target["test_target"]["id"],
464
+ source_id=oci_file_storage_file_system["test_source"]["id"],
465
+ target_id=oci_file_storage_file_system["test_target"]["id"],
466
466
  defined_tags={
467
467
  "Operations.CostCenter": "42",
468
468
  },
@@ -542,8 +542,8 @@ class Replication(pulumi.CustomResource):
542
542
 
543
543
  test_replication = oci.file_storage.Replication("testReplication",
544
544
  compartment_id=var["compartment_id"],
545
- source_id=oci_file_storage_source["test_source"]["id"],
546
- target_id=oci_cloud_guard_target["test_target"]["id"],
545
+ source_id=oci_file_storage_file_system["test_source"]["id"],
546
+ target_id=oci_file_storage_file_system["test_target"]["id"],
547
547
  defined_tags={
548
548
  "Operations.CostCenter": "42",
549
549
  },
@@ -136,7 +136,7 @@ class ConnectionArgs:
136
136
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
137
137
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
138
138
  :param pulumi.Input[str] routing_method: (Updatable) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
139
- :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%!D(MISSING)
139
+ :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
140
140
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
141
141
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
142
142
  :param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
@@ -859,7 +859,7 @@ class ConnectionArgs:
859
859
  @pulumi.getter(name="sasToken")
860
860
  def sas_token(self) -> Optional[pulumi.Input[str]]:
861
861
  """
862
- (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%!D(MISSING)
862
+ (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
863
863
  """
864
864
  return pulumi.get(self, "sas_token")
865
865
 
@@ -1277,7 +1277,7 @@ class _ConnectionState:
1277
1277
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
1278
1278
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
1279
1279
  :param pulumi.Input[str] routing_method: (Updatable) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
1280
- :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%!D(MISSING)
1280
+ :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
1281
1281
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
1282
1282
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
1283
1283
  :param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
@@ -2033,7 +2033,7 @@ class _ConnectionState:
2033
2033
  @pulumi.getter(name="sasToken")
2034
2034
  def sas_token(self) -> Optional[pulumi.Input[str]]:
2035
2035
  """
2036
- (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%!D(MISSING)
2036
+ (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
2037
2037
  """
2038
2038
  return pulumi.get(self, "sas_token")
2039
2039
 
@@ -2611,7 +2611,7 @@ class Connection(pulumi.CustomResource):
2611
2611
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
2612
2612
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
2613
2613
  :param pulumi.Input[str] routing_method: (Updatable) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
2614
- :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%!D(MISSING)
2614
+ :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
2615
2615
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
2616
2616
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
2617
2617
  :param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
@@ -3073,7 +3073,7 @@ class Connection(pulumi.CustomResource):
3073
3073
  :param pulumi.Input[str] public_key_fingerprint: (Updatable) The fingerprint of the API Key of the user specified by the userId. See documentation: https://docs.oracle.com/en-us/iaas/Content/Identity/Tasks/managingcredentials.htm
3074
3074
  :param pulumi.Input[str] region: (Updatable) The name of the region. e.g.: us-ashburn-1
3075
3075
  :param pulumi.Input[str] routing_method: (Updatable) Controls the network traffic direction to the target: SHARED_SERVICE_ENDPOINT: Traffic flows through the Goldengate Service's network to public hosts. Cannot be used for private targets. SHARED_DEPLOYMENT_ENDPOINT: Network traffic flows from the assigned deployment's private endpoint through the deployment's subnet. DEDICATED_ENDPOINT: A dedicated private endpoint is created in the target VCN subnet for the connection. The subnetId is required when DEDICATED_ENDPOINT networking is selected.
3076
- :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%!D(MISSING)
3076
+ :param pulumi.Input[str] sas_token: (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
3077
3077
  :param pulumi.Input[str] secret_access_key: (Updatable) Secret access key to access the Amazon S3 bucket. e.g.: "this-is-not-the-secret"
3078
3078
  :param pulumi.Input[str] security_protocol: (Updatable) Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required.
3079
3079
  :param pulumi.Input[str] servers: (Updatable) Comma separated list of Elasticsearch server addresses, specified as host:port entries, where :port is optional. If port is not specified, it defaults to 9200. Used for establishing the initial connection to the Elasticsearch cluster. Example: `"server1.example.com:4000,server2.example.com:4000"`
@@ -3570,7 +3570,7 @@ class Connection(pulumi.CustomResource):
3570
3570
  @pulumi.getter(name="sasToken")
3571
3571
  def sas_token(self) -> pulumi.Output[str]:
3572
3572
  """
3573
- (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%!D(MISSING)
3573
+ (Updatable) Credential that uses a shared access signature (SAS) to authenticate to an Azure Service. This property is required when 'authenticationType' is set to 'SHARED_ACCESS_SIGNATURE'. e.g.: ?sv=2020-06-08&ss=bfqt&srt=sco&sp=rwdlacupyx&se=2020-09-10T20:27:28Z&st=2022-08-05T12:27:28Z&spr=https&sig=C1IgHsiLBmTSStYkXXGLTP8it0xBrArcgCqOsZbXwIQ%3D
3574
3574
  """
3575
3575
  return pulumi.get(self, "sas_token")
3576
3576
 
@@ -745,7 +745,7 @@ class _DomainsAppRoleState:
745
745
  * returned: request
746
746
  * type: string
747
747
  * uniqueness: none
748
- :param pulumi.Input[Sequence[pulumi.Input['DomainsAppRoleMemberArgs']]] members: (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%!c(MISSING)ount=10]
748
+ :param pulumi.Input[Sequence[pulumi.Input['DomainsAppRoleMemberArgs']]] members: (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]
749
749
 
750
750
  **SCIM++ Properties:**
751
751
  * idcsCompositeKey: [value, type]
@@ -1322,7 +1322,7 @@ class _DomainsAppRoleState:
1322
1322
  @pulumi.getter
1323
1323
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppRoleMemberArgs']]]]:
1324
1324
  """
1325
- (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%!c(MISSING)ount=10]
1325
+ (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]
1326
1326
 
1327
1327
  **SCIM++ Properties:**
1328
1328
  * idcsCompositeKey: [value, type]
@@ -2016,7 +2016,7 @@ class DomainsAppRole(pulumi.CustomResource):
2016
2016
  * returned: request
2017
2017
  * type: string
2018
2018
  * uniqueness: none
2019
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DomainsAppRoleMemberArgs']]]] members: (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%!c(MISSING)ount=10]
2019
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DomainsAppRoleMemberArgs']]]] members: (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]
2020
2020
 
2021
2021
  **SCIM++ Properties:**
2022
2022
  * idcsCompositeKey: [value, type]
@@ -2484,7 +2484,7 @@ class DomainsAppRole(pulumi.CustomResource):
2484
2484
  @pulumi.getter
2485
2485
  def members(self) -> pulumi.Output[Sequence['outputs.DomainsAppRoleMember']]:
2486
2486
  """
2487
- (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%!c(MISSING)ount=10]
2487
+ (Updatable) AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]
2488
2488
 
2489
2489
  **SCIM++ Properties:**
2490
2490
  * idcsCompositeKey: [value, type]
@@ -74,7 +74,7 @@ class DomainsGroupArgs:
74
74
  * returned: default
75
75
  * type: string
76
76
  * uniqueness: none
77
- :param pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
77
+ :param pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
78
78
 
79
79
  **SCIM++ Properties:**
80
80
  * caseExact: false
@@ -282,7 +282,7 @@ class DomainsGroupArgs:
282
282
  @pulumi.getter
283
283
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]]]:
284
284
  """
285
- (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
285
+ (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
286
286
 
287
287
  **SCIM++ Properties:**
288
288
  * caseExact: false
@@ -576,7 +576,7 @@ class _DomainsGroupState:
576
576
  * returned: request
577
577
  * type: string
578
578
  * uniqueness: none
579
- :param pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
579
+ :param pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
580
580
 
581
581
  **SCIM++ Properties:**
582
582
  * caseExact: false
@@ -968,7 +968,7 @@ class _DomainsGroupState:
968
968
  @pulumi.getter
969
969
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]]]:
970
970
  """
971
- (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
971
+ (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
972
972
 
973
973
  **SCIM++ Properties:**
974
974
  * caseExact: false
@@ -1274,7 +1274,7 @@ class DomainsGroup(pulumi.CustomResource):
1274
1274
  * type: string
1275
1275
  * uniqueness: none
1276
1276
  :param pulumi.Input[str] idcs_endpoint: The basic endpoint for the identity domain
1277
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DomainsGroupMemberArgs']]]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
1277
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DomainsGroupMemberArgs']]]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
1278
1278
 
1279
1279
  **SCIM++ Properties:**
1280
1280
  * caseExact: false
@@ -1578,7 +1578,7 @@ class DomainsGroup(pulumi.CustomResource):
1578
1578
  * returned: request
1579
1579
  * type: string
1580
1580
  * uniqueness: none
1581
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DomainsGroupMemberArgs']]]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
1581
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DomainsGroupMemberArgs']]]] members: (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
1582
1582
 
1583
1583
  **SCIM++ Properties:**
1584
1584
  * caseExact: false
@@ -1896,7 +1896,7 @@ class DomainsGroup(pulumi.CustomResource):
1896
1896
  @pulumi.getter
1897
1897
  def members(self) -> pulumi.Output[Sequence['outputs.DomainsGroupMember']]:
1898
1898
  """
1899
- (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
1899
+ (Updatable) The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
1900
1900
 
1901
1901
  **SCIM++ Properties:**
1902
1902
  * caseExact: false
@@ -293,7 +293,7 @@ class GetDomainsAppRoleResult:
293
293
  @pulumi.getter
294
294
  def members(self) -> Sequence['outputs.GetDomainsAppRoleMemberResult']:
295
295
  """
296
- AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%!c(MISSING)ount=10]
296
+ AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]
297
297
  """
298
298
  return pulumi.get(self, "members")
299
299
 
@@ -220,7 +220,7 @@ class GetDomainsGroupResult:
220
220
  @pulumi.getter
221
221
  def members(self) -> Sequence['outputs.GetDomainsGroupMemberResult']:
222
222
  """
223
- The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
223
+ The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
224
224
  """
225
225
  return pulumi.get(self, "members")
226
226
 
@@ -73229,7 +73229,7 @@ class GetDomainsAppRolesAppRoleResult(dict):
73229
73229
  :param str legacy_group_name: The name of the legacy group associated with this AppRole.
73230
73230
  :param bool limited_to_one_or_more_groups: If true, indicates that this Oracle Identity Cloud Service AppRole can be granted to a delegated administrator whose scope is limited to users that are members of one or more groups.
73231
73231
  :param str localized_display_name: AppRole localization name
73232
- :param Sequence['GetDomainsAppRolesAppRoleMemberArgs'] members: AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%!c(MISSING)ount=10]
73232
+ :param Sequence['GetDomainsAppRolesAppRoleMemberArgs'] members: AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]
73233
73233
  :param Sequence['GetDomainsAppRolesAppRoleMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
73234
73234
  :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
73235
73235
  :param bool public: If true, this AppRole is available automatically to every Oracle Identity Cloud Service User in this tenancy. There is no need to grant it to individual Users or Groups.
@@ -73451,7 +73451,7 @@ class GetDomainsAppRolesAppRoleResult(dict):
73451
73451
  @pulumi.getter
73452
73452
  def members(self) -> Sequence['outputs.GetDomainsAppRolesAppRoleMemberResult']:
73453
73453
  """
73454
- AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%!c(MISSING)ount=10]
73454
+ AppRole members - when requesting members attribute, it is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]
73455
73455
  """
73456
73456
  return pulumi.get(self, "members")
73457
73457
 
@@ -97192,7 +97192,7 @@ class GetDomainsGroupsGroupResult(dict):
97192
97192
  :param Sequence['GetDomainsGroupsGroupIdcsLastModifiedByArgs'] idcs_last_modified_bies: The User or App who modified the Resource
97193
97193
  :param str idcs_last_upgraded_in_release: The release number when the resource was upgraded.
97194
97194
  :param Sequence[str] idcs_prevented_operations: Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
97195
- :param Sequence['GetDomainsGroupsGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
97195
+ :param Sequence['GetDomainsGroupsGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
97196
97196
  :param Sequence['GetDomainsGroupsGroupMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
97197
97197
  :param str non_unique_display_name: A human readable name for the group as defined by the Service Consumer.
97198
97198
  :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
@@ -97352,7 +97352,7 @@ class GetDomainsGroupsGroupResult(dict):
97352
97352
  @pulumi.getter
97353
97353
  def members(self) -> Sequence['outputs.GetDomainsGroupsGroupMemberResult']:
97354
97354
  """
97355
- The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
97355
+ The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
97356
97356
  """
97357
97357
  return pulumi.get(self, "members")
97358
97358
 
@@ -108626,7 +108626,7 @@ class GetDomainsMyGroupsMyGroupResult(dict):
108626
108626
  :param Sequence['GetDomainsMyGroupsMyGroupIdcsLastModifiedByArgs'] idcs_last_modified_bies: The User or App who modified the Resource
108627
108627
  :param str idcs_last_upgraded_in_release: The release number when the resource was upgraded.
108628
108628
  :param Sequence[str] idcs_prevented_operations: Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
108629
- :param Sequence['GetDomainsMyGroupsMyGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
108629
+ :param Sequence['GetDomainsMyGroupsMyGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
108630
108630
  :param Sequence['GetDomainsMyGroupsMyGroupMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
108631
108631
  :param str non_unique_display_name: A human readable name for the group as defined by the Service Consumer.
108632
108632
  :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
@@ -108740,7 +108740,7 @@ class GetDomainsMyGroupsMyGroupResult(dict):
108740
108740
  @pulumi.getter
108741
108741
  def members(self) -> Sequence['outputs.GetDomainsMyGroupsMyGroupMemberResult']:
108742
108742
  """
108743
- The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
108743
+ The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
108744
108744
  """
108745
108745
  return pulumi.get(self, "members")
108746
108746
 
@@ -111161,7 +111161,7 @@ class GetDomainsMyRequestableGroupsMyRequestableGroupResult(dict):
111161
111161
  :param Sequence['GetDomainsMyRequestableGroupsMyRequestableGroupIdcsLastModifiedByArgs'] idcs_last_modified_bies: The User or App who modified the Resource
111162
111162
  :param str idcs_last_upgraded_in_release: The release number when the resource was upgraded.
111163
111163
  :param Sequence[str] idcs_prevented_operations: Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
111164
- :param Sequence['GetDomainsMyRequestableGroupsMyRequestableGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
111164
+ :param Sequence['GetDomainsMyRequestableGroupsMyRequestableGroupMemberArgs'] members: The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
111165
111165
  :param Sequence['GetDomainsMyRequestableGroupsMyRequestableGroupMetaArgs'] metas: A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
111166
111166
  :param str non_unique_display_name: A human readable name for the group as defined by the Service Consumer.
111167
111167
  :param str ocid: Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
@@ -111275,7 +111275,7 @@ class GetDomainsMyRequestableGroupsMyRequestableGroupResult(dict):
111275
111275
  @pulumi.getter
111276
111276
  def members(self) -> Sequence['outputs.GetDomainsMyRequestableGroupsMyRequestableGroupMemberResult']:
111277
111277
  """
111278
- The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%!c(MISSING)ount=10]. This REST API is SCIM compliant.
111278
+ The group members. <b>Important:</b> When requesting group members, a maximum of 10,000 members can be returned in a single request. If the response contains more than 10,000 members, the request will fail. Use 'startIndex' and 'count' to return members in pages instead of in a single response, for example: #attributes=members[startIndex=1%26count=10]. This REST API is SCIM compliant.
111279
111279
  """
111280
111280
  return pulumi.get(self, "members")
111281
111281
 
@@ -1324,20 +1324,18 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
1324
1324
  @pulumi.output_type
1325
1325
  class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItemPositionResult(dict):
1326
1326
  def __init__(__self__, *,
1327
- after_rule: Optional[str] = None,
1328
- before_rule: Optional[str] = None):
1327
+ after_rule: str,
1328
+ before_rule: str):
1329
1329
  """
1330
1330
  :param str after_rule: Identifier for rule after which this rule lies.
1331
1331
  :param str before_rule: Identifier for rule before which this rule lies.
1332
1332
  """
1333
- if after_rule is not None:
1334
- pulumi.set(__self__, "after_rule", after_rule)
1335
- if before_rule is not None:
1336
- pulumi.set(__self__, "before_rule", before_rule)
1333
+ pulumi.set(__self__, "after_rule", after_rule)
1334
+ pulumi.set(__self__, "before_rule", before_rule)
1337
1335
 
1338
1336
  @property
1339
1337
  @pulumi.getter(name="afterRule")
1340
- def after_rule(self) -> Optional[str]:
1338
+ def after_rule(self) -> str:
1341
1339
  """
1342
1340
  Identifier for rule after which this rule lies.
1343
1341
  """
@@ -1345,7 +1343,7 @@ class GetNetworkFirewallPolicyDecryptionRulesDecryptionRuleSummaryCollectionItem
1345
1343
 
1346
1344
  @property
1347
1345
  @pulumi.getter(name="beforeRule")
1348
- def before_rule(self) -> Optional[str]:
1346
+ def before_rule(self) -> str:
1349
1347
  """
1350
1348
  Identifier for rule before which this rule lies.
1351
1349
  """
@@ -1792,20 +1790,18 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemCond
1792
1790
  @pulumi.output_type
1793
1791
  class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPositionResult(dict):
1794
1792
  def __init__(__self__, *,
1795
- after_rule: Optional[str] = None,
1796
- before_rule: Optional[str] = None):
1793
+ after_rule: str,
1794
+ before_rule: str):
1797
1795
  """
1798
1796
  :param str after_rule: Identifier for rule after which this rule lies.
1799
1797
  :param str before_rule: Identifier for rule before which this rule lies.
1800
1798
  """
1801
- if after_rule is not None:
1802
- pulumi.set(__self__, "after_rule", after_rule)
1803
- if before_rule is not None:
1804
- pulumi.set(__self__, "before_rule", before_rule)
1799
+ pulumi.set(__self__, "after_rule", after_rule)
1800
+ pulumi.set(__self__, "before_rule", before_rule)
1805
1801
 
1806
1802
  @property
1807
1803
  @pulumi.getter(name="afterRule")
1808
- def after_rule(self) -> Optional[str]:
1804
+ def after_rule(self) -> str:
1809
1805
  """
1810
1806
  Identifier for rule after which this rule lies.
1811
1807
  """
@@ -1813,7 +1809,7 @@ class GetNetworkFirewallPolicySecurityRulesSecurityRuleSummaryCollectionItemPosi
1813
1809
 
1814
1810
  @property
1815
1811
  @pulumi.getter(name="beforeRule")
1816
- def before_rule(self) -> Optional[str]:
1812
+ def before_rule(self) -> str:
1817
1813
  """
1818
1814
  Identifier for rule before which this rule lies.
1819
1815
  """