pulumi-oci 2.28.0a1742884810__py3-none-any.whl → 2.28.0a1743049042__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.
@@ -54,6 +54,7 @@ class DomainsAppArgs:
54
54
  description: Optional[pulumi.Input[str]] = None,
55
55
  disable_kmsi_token_authentication: Optional[pulumi.Input[bool]] = None,
56
56
  error_page_url: Optional[pulumi.Input[str]] = None,
57
+ force_delete: Optional[pulumi.Input[bool]] = None,
57
58
  home_page_url: Optional[pulumi.Input[str]] = None,
58
59
  icon: Optional[pulumi.Input[str]] = None,
59
60
  id_token_enc_algo: Optional[pulumi.Input[str]] = None,
@@ -1055,6 +1056,8 @@ class DomainsAppArgs:
1055
1056
  pulumi.set(__self__, "disable_kmsi_token_authentication", disable_kmsi_token_authentication)
1056
1057
  if error_page_url is not None:
1057
1058
  pulumi.set(__self__, "error_page_url", error_page_url)
1059
+ if force_delete is not None:
1060
+ pulumi.set(__self__, "force_delete", force_delete)
1058
1061
  if home_page_url is not None:
1059
1062
  pulumi.set(__self__, "home_page_url", home_page_url)
1060
1063
  if icon is not None:
@@ -1868,6 +1871,15 @@ class DomainsAppArgs:
1868
1871
  def error_page_url(self, value: Optional[pulumi.Input[str]]):
1869
1872
  pulumi.set(self, "error_page_url", value)
1870
1873
 
1874
+ @property
1875
+ @pulumi.getter(name="forceDelete")
1876
+ def force_delete(self) -> Optional[pulumi.Input[bool]]:
1877
+ return pulumi.get(self, "force_delete")
1878
+
1879
+ @force_delete.setter
1880
+ def force_delete(self, value: Optional[pulumi.Input[bool]]):
1881
+ pulumi.set(self, "force_delete", value)
1882
+
1871
1883
  @property
1872
1884
  @pulumi.getter(name="homePageUrl")
1873
1885
  def home_page_url(self) -> Optional[pulumi.Input[str]]:
@@ -3143,6 +3155,7 @@ class _DomainsAppState:
3143
3155
  domain_ocid: Optional[pulumi.Input[str]] = None,
3144
3156
  editable_attributes: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppEditableAttributeArgs']]]] = None,
3145
3157
  error_page_url: Optional[pulumi.Input[str]] = None,
3158
+ force_delete: Optional[pulumi.Input[bool]] = None,
3146
3159
  granted_app_roles: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppGrantedAppRoleArgs']]]] = None,
3147
3160
  grants: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppGrantArgs']]]] = None,
3148
3161
  hashed_client_secret: Optional[pulumi.Input[str]] = None,
@@ -4464,6 +4477,8 @@ class _DomainsAppState:
4464
4477
  pulumi.set(__self__, "editable_attributes", editable_attributes)
4465
4478
  if error_page_url is not None:
4466
4479
  pulumi.set(__self__, "error_page_url", error_page_url)
4480
+ if force_delete is not None:
4481
+ pulumi.set(__self__, "force_delete", force_delete)
4467
4482
  if granted_app_roles is not None:
4468
4483
  pulumi.set(__self__, "granted_app_roles", granted_app_roles)
4469
4484
  if grants is not None:
@@ -5484,6 +5499,15 @@ class _DomainsAppState:
5484
5499
  def error_page_url(self, value: Optional[pulumi.Input[str]]):
5485
5500
  pulumi.set(self, "error_page_url", value)
5486
5501
 
5502
+ @property
5503
+ @pulumi.getter(name="forceDelete")
5504
+ def force_delete(self) -> Optional[pulumi.Input[bool]]:
5505
+ return pulumi.get(self, "force_delete")
5506
+
5507
+ @force_delete.setter
5508
+ def force_delete(self, value: Optional[pulumi.Input[bool]]):
5509
+ pulumi.set(self, "force_delete", value)
5510
+
5487
5511
  @property
5488
5512
  @pulumi.getter(name="grantedAppRoles")
5489
5513
  def granted_app_roles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsAppGrantedAppRoleArgs']]]]:
@@ -7152,6 +7176,7 @@ class DomainsApp(pulumi.CustomResource):
7152
7176
  disable_kmsi_token_authentication: Optional[pulumi.Input[bool]] = None,
7153
7177
  display_name: Optional[pulumi.Input[str]] = None,
7154
7178
  error_page_url: Optional[pulumi.Input[str]] = None,
7179
+ force_delete: Optional[pulumi.Input[bool]] = None,
7155
7180
  home_page_url: Optional[pulumi.Input[str]] = None,
7156
7181
  icon: Optional[pulumi.Input[str]] = None,
7157
7182
  id_token_enc_algo: Optional[pulumi.Input[str]] = None,
@@ -8172,6 +8197,7 @@ class DomainsApp(pulumi.CustomResource):
8172
8197
  disable_kmsi_token_authentication: Optional[pulumi.Input[bool]] = None,
8173
8198
  display_name: Optional[pulumi.Input[str]] = None,
8174
8199
  error_page_url: Optional[pulumi.Input[str]] = None,
8200
+ force_delete: Optional[pulumi.Input[bool]] = None,
8175
8201
  home_page_url: Optional[pulumi.Input[str]] = None,
8176
8202
  icon: Optional[pulumi.Input[str]] = None,
8177
8203
  id_token_enc_algo: Optional[pulumi.Input[str]] = None,
@@ -8280,6 +8306,7 @@ class DomainsApp(pulumi.CustomResource):
8280
8306
  raise TypeError("Missing required property 'display_name'")
8281
8307
  __props__.__dict__["display_name"] = display_name
8282
8308
  __props__.__dict__["error_page_url"] = error_page_url
8309
+ __props__.__dict__["force_delete"] = force_delete
8283
8310
  __props__.__dict__["home_page_url"] = home_page_url
8284
8311
  __props__.__dict__["icon"] = icon
8285
8312
  __props__.__dict__["id_token_enc_algo"] = id_token_enc_algo
@@ -8424,6 +8451,7 @@ class DomainsApp(pulumi.CustomResource):
8424
8451
  domain_ocid: Optional[pulumi.Input[str]] = None,
8425
8452
  editable_attributes: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsAppEditableAttributeArgs', 'DomainsAppEditableAttributeArgsDict']]]]] = None,
8426
8453
  error_page_url: Optional[pulumi.Input[str]] = None,
8454
+ force_delete: Optional[pulumi.Input[bool]] = None,
8427
8455
  granted_app_roles: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsAppGrantedAppRoleArgs', 'DomainsAppGrantedAppRoleArgsDict']]]]] = None,
8428
8456
  grants: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsAppGrantArgs', 'DomainsAppGrantArgsDict']]]]] = None,
8429
8457
  hashed_client_secret: Optional[pulumi.Input[str]] = None,
@@ -9714,6 +9742,7 @@ class DomainsApp(pulumi.CustomResource):
9714
9742
  __props__.__dict__["domain_ocid"] = domain_ocid
9715
9743
  __props__.__dict__["editable_attributes"] = editable_attributes
9716
9744
  __props__.__dict__["error_page_url"] = error_page_url
9745
+ __props__.__dict__["force_delete"] = force_delete
9717
9746
  __props__.__dict__["granted_app_roles"] = granted_app_roles
9718
9747
  __props__.__dict__["grants"] = grants
9719
9748
  __props__.__dict__["hashed_client_secret"] = hashed_client_secret
@@ -10494,6 +10523,11 @@ class DomainsApp(pulumi.CustomResource):
10494
10523
  """
10495
10524
  return pulumi.get(self, "error_page_url")
10496
10525
 
10526
+ @property
10527
+ @pulumi.getter(name="forceDelete")
10528
+ def force_delete(self) -> pulumi.Output[Optional[bool]]:
10529
+ return pulumi.get(self, "force_delete")
10530
+
10497
10531
  @property
10498
10532
  @pulumi.getter(name="grantedAppRoles")
10499
10533
  def granted_app_roles(self) -> pulumi.Output[Sequence['outputs.DomainsAppGrantedAppRole']]:
@@ -27,7 +27,7 @@ class GetDomainsAppResult:
27
27
  """
28
28
  A collection of values returned by getDomainsApp.
29
29
  """
30
- def __init__(__self__, access_token_expiry=None, accounts=None, active=None, admin_roles=None, alias_apps=None, all_url_schemes_allowed=None, allow_access_control=None, allow_offline=None, allowed_grants=None, allowed_operations=None, allowed_scopes=None, allowed_tags=None, app_icon=None, app_id=None, app_signon_policies=None, app_thumbnail=None, apps_network_perimeters=None, as_opc_services=None, attr_rendering_metadatas=None, attribute_sets=None, attributes=None, audience=None, authorization=None, based_on_templates=None, bypass_consent=None, callback_service_url=None, certificates=None, client_ip_checking=None, client_secret=None, client_type=None, cloud_control_properties=None, compartment_ocid=None, contact_email_address=None, delegated_service_names=None, delete_in_progress=None, description=None, disable_kmsi_token_authentication=None, display_name=None, domain_ocid=None, editable_attributes=None, error_page_url=None, granted_app_roles=None, grants=None, hashed_client_secret=None, home_page_url=None, icon=None, id=None, id_token_enc_algo=None, idcs_created_bies=None, idcs_endpoint=None, idcs_last_modified_bies=None, idcs_last_upgraded_in_release=None, idcs_prevented_operations=None, identity_providers=None, idp_policies=None, infrastructure=None, is_alias_app=None, is_database_service=None, is_enterprise_app=None, is_form_fill=None, is_kerberos_realm=None, is_login_target=None, is_managed_app=None, is_mobile_target=None, is_multicloud_service_app=None, is_oauth_client=None, is_oauth_resource=None, is_obligation_capable=None, is_opc_service=None, is_radius_app=None, is_saml_service_provider=None, is_unmanaged_app=None, is_web_tier_policy=None, landing_page_url=None, linking_callback_url=None, login_mechanism=None, login_page_url=None, logout_page_url=None, logout_uri=None, metas=None, meter_as_opc_service=None, migrated=None, name=None, ocid=None, post_logout_redirect_uris=None, privacy_policy_url=None, product_logo_url=None, product_name=None, protectable_secondary_audiences=None, radius_policies=None, ready_to_upgrade=None, redirect_uris=None, refresh_token_expiry=None, resource_type_schema_version=None, saml_service_providers=None, schemas=None, scopes=None, secondary_audiences=None, service_params=None, service_type_urn=None, service_type_version=None, show_in_my_apps=None, signon_policies=None, tags=None, tenancy_ocid=None, terms_of_service_url=None, terms_of_uses=None, trust_policies=None, trust_scope=None, urnietfparamsscimschemasoracleidcsextension_oci_tags=None, urnietfparamsscimschemasoracleidcsextensiondbcs_apps=None, urnietfparamsscimschemasoracleidcsextensionenterprise_app_apps=None, urnietfparamsscimschemasoracleidcsextensionform_fill_app_apps=None, urnietfparamsscimschemasoracleidcsextensionform_fill_app_template_app_templates=None, urnietfparamsscimschemasoracleidcsextensionkerberos_realm_apps=None, urnietfparamsscimschemasoracleidcsextensionmanagedapp_apps=None, urnietfparamsscimschemasoracleidcsextensionmulticloud_service_app_apps=None, urnietfparamsscimschemasoracleidcsextensionopc_service_apps=None, urnietfparamsscimschemasoracleidcsextensionradius_app_apps=None, urnietfparamsscimschemasoracleidcsextensionrequestable_apps=None, urnietfparamsscimschemasoracleidcsextensionsaml_service_provider_apps=None, urnietfparamsscimschemasoracleidcsextensionweb_tier_policy_apps=None, user_roles=None):
30
+ def __init__(__self__, access_token_expiry=None, accounts=None, active=None, admin_roles=None, alias_apps=None, all_url_schemes_allowed=None, allow_access_control=None, allow_offline=None, allowed_grants=None, allowed_operations=None, allowed_scopes=None, allowed_tags=None, app_icon=None, app_id=None, app_signon_policies=None, app_thumbnail=None, apps_network_perimeters=None, as_opc_services=None, attr_rendering_metadatas=None, attribute_sets=None, attributes=None, audience=None, authorization=None, based_on_templates=None, bypass_consent=None, callback_service_url=None, certificates=None, client_ip_checking=None, client_secret=None, client_type=None, cloud_control_properties=None, compartment_ocid=None, contact_email_address=None, delegated_service_names=None, delete_in_progress=None, description=None, disable_kmsi_token_authentication=None, display_name=None, domain_ocid=None, editable_attributes=None, error_page_url=None, force_delete=None, granted_app_roles=None, grants=None, hashed_client_secret=None, home_page_url=None, icon=None, id=None, id_token_enc_algo=None, idcs_created_bies=None, idcs_endpoint=None, idcs_last_modified_bies=None, idcs_last_upgraded_in_release=None, idcs_prevented_operations=None, identity_providers=None, idp_policies=None, infrastructure=None, is_alias_app=None, is_database_service=None, is_enterprise_app=None, is_form_fill=None, is_kerberos_realm=None, is_login_target=None, is_managed_app=None, is_mobile_target=None, is_multicloud_service_app=None, is_oauth_client=None, is_oauth_resource=None, is_obligation_capable=None, is_opc_service=None, is_radius_app=None, is_saml_service_provider=None, is_unmanaged_app=None, is_web_tier_policy=None, landing_page_url=None, linking_callback_url=None, login_mechanism=None, login_page_url=None, logout_page_url=None, logout_uri=None, metas=None, meter_as_opc_service=None, migrated=None, name=None, ocid=None, post_logout_redirect_uris=None, privacy_policy_url=None, product_logo_url=None, product_name=None, protectable_secondary_audiences=None, radius_policies=None, ready_to_upgrade=None, redirect_uris=None, refresh_token_expiry=None, resource_type_schema_version=None, saml_service_providers=None, schemas=None, scopes=None, secondary_audiences=None, service_params=None, service_type_urn=None, service_type_version=None, show_in_my_apps=None, signon_policies=None, tags=None, tenancy_ocid=None, terms_of_service_url=None, terms_of_uses=None, trust_policies=None, trust_scope=None, urnietfparamsscimschemasoracleidcsextension_oci_tags=None, urnietfparamsscimschemasoracleidcsextensiondbcs_apps=None, urnietfparamsscimschemasoracleidcsextensionenterprise_app_apps=None, urnietfparamsscimschemasoracleidcsextensionform_fill_app_apps=None, urnietfparamsscimschemasoracleidcsextensionform_fill_app_template_app_templates=None, urnietfparamsscimschemasoracleidcsextensionkerberos_realm_apps=None, urnietfparamsscimschemasoracleidcsextensionmanagedapp_apps=None, urnietfparamsscimschemasoracleidcsextensionmulticloud_service_app_apps=None, urnietfparamsscimschemasoracleidcsextensionopc_service_apps=None, urnietfparamsscimschemasoracleidcsextensionradius_app_apps=None, urnietfparamsscimschemasoracleidcsextensionrequestable_apps=None, urnietfparamsscimschemasoracleidcsextensionsaml_service_provider_apps=None, urnietfparamsscimschemasoracleidcsextensionweb_tier_policy_apps=None, user_roles=None):
31
31
  if access_token_expiry and not isinstance(access_token_expiry, int):
32
32
  raise TypeError("Expected argument 'access_token_expiry' to be a int")
33
33
  pulumi.set(__self__, "access_token_expiry", access_token_expiry)
@@ -151,6 +151,9 @@ class GetDomainsAppResult:
151
151
  if error_page_url and not isinstance(error_page_url, str):
152
152
  raise TypeError("Expected argument 'error_page_url' to be a str")
153
153
  pulumi.set(__self__, "error_page_url", error_page_url)
154
+ if force_delete and not isinstance(force_delete, bool):
155
+ raise TypeError("Expected argument 'force_delete' to be a bool")
156
+ pulumi.set(__self__, "force_delete", force_delete)
154
157
  if granted_app_roles and not isinstance(granted_app_roles, list):
155
158
  raise TypeError("Expected argument 'granted_app_roles' to be a list")
156
159
  pulumi.set(__self__, "granted_app_roles", granted_app_roles)
@@ -717,6 +720,11 @@ class GetDomainsAppResult:
717
720
  """
718
721
  return pulumi.get(self, "error_page_url")
719
722
 
723
+ @property
724
+ @pulumi.getter(name="forceDelete")
725
+ def force_delete(self) -> bool:
726
+ return pulumi.get(self, "force_delete")
727
+
720
728
  @property
721
729
  @pulumi.getter(name="grantedAppRoles")
722
730
  def granted_app_roles(self) -> Sequence['outputs.GetDomainsAppGrantedAppRoleResult']:
@@ -1415,6 +1423,7 @@ class AwaitableGetDomainsAppResult(GetDomainsAppResult):
1415
1423
  domain_ocid=self.domain_ocid,
1416
1424
  editable_attributes=self.editable_attributes,
1417
1425
  error_page_url=self.error_page_url,
1426
+ force_delete=self.force_delete,
1418
1427
  granted_app_roles=self.granted_app_roles,
1419
1428
  grants=self.grants,
1420
1429
  hashed_client_secret=self.hashed_client_secret,
@@ -1585,6 +1594,7 @@ def get_domains_app(app_id: Optional[str] = None,
1585
1594
  domain_ocid=pulumi.get(__ret__, 'domain_ocid'),
1586
1595
  editable_attributes=pulumi.get(__ret__, 'editable_attributes'),
1587
1596
  error_page_url=pulumi.get(__ret__, 'error_page_url'),
1597
+ force_delete=pulumi.get(__ret__, 'force_delete'),
1588
1598
  granted_app_roles=pulumi.get(__ret__, 'granted_app_roles'),
1589
1599
  grants=pulumi.get(__ret__, 'grants'),
1590
1600
  hashed_client_secret=pulumi.get(__ret__, 'hashed_client_secret'),
@@ -1752,6 +1762,7 @@ def get_domains_app_output(app_id: Optional[pulumi.Input[str]] = None,
1752
1762
  domain_ocid=pulumi.get(__response__, 'domain_ocid'),
1753
1763
  editable_attributes=pulumi.get(__response__, 'editable_attributes'),
1754
1764
  error_page_url=pulumi.get(__response__, 'error_page_url'),
1765
+ force_delete=pulumi.get(__response__, 'force_delete'),
1755
1766
  granted_app_roles=pulumi.get(__response__, 'granted_app_roles'),
1756
1767
  grants=pulumi.get(__response__, 'grants'),
1757
1768
  hashed_client_secret=pulumi.get(__response__, 'hashed_client_secret'),
@@ -6306,7 +6306,7 @@ class DomainsAppProtectableSecondaryAudience(dict):
6306
6306
  class DomainsAppRadiusPolicy(dict):
6307
6307
  def __init__(__self__, *,
6308
6308
  value: str,
6309
- ref: Optional[str] = None):
6309
+ _ref: Optional[str] = None):
6310
6310
  """
6311
6311
  :param str value: (Updatable) Identifier of the Policy.
6312
6312
 
@@ -6321,22 +6321,10 @@ class DomainsAppRadiusPolicy(dict):
6321
6321
  * returned: default
6322
6322
  * type: string
6323
6323
  * uniqueness: none
6324
- :param str ref: (Updatable) URI of the policy.
6325
-
6326
- **Added In:** 2209070044
6327
-
6328
- **SCIM++ Properties:**
6329
- * idcsSearchable: false
6330
- * multiValued: false
6331
- * mutability: readOnly
6332
- * required: false
6333
- * returned: default
6334
- * type: reference
6335
- * uniqueness: none
6336
6324
  """
6337
6325
  pulumi.set(__self__, "value", value)
6338
- if ref is not None:
6339
- pulumi.set(__self__, "ref", ref)
6326
+ if _ref is not None:
6327
+ pulumi.set(__self__, "_ref", _ref)
6340
6328
 
6341
6329
  @property
6342
6330
  @pulumi.getter
@@ -6360,22 +6348,8 @@ class DomainsAppRadiusPolicy(dict):
6360
6348
 
6361
6349
  @property
6362
6350
  @pulumi.getter
6363
- def ref(self) -> Optional[str]:
6364
- """
6365
- (Updatable) URI of the policy.
6366
-
6367
- **Added In:** 2209070044
6368
-
6369
- **SCIM++ Properties:**
6370
- * idcsSearchable: false
6371
- * multiValued: false
6372
- * mutability: readOnly
6373
- * required: false
6374
- * returned: default
6375
- * type: reference
6376
- * uniqueness: none
6377
- """
6378
- return pulumi.get(self, "ref")
6351
+ def _ref(self) -> Optional[str]:
6352
+ return pulumi.get(self, "_ref")
6379
6353
 
6380
6354
 
6381
6355
  @pulumi.output_type
@@ -72719,22 +72693,18 @@ class GetDomainsAppProtectableSecondaryAudienceResult(dict):
72719
72693
  @pulumi.output_type
72720
72694
  class GetDomainsAppRadiusPolicyResult(dict):
72721
72695
  def __init__(__self__, *,
72722
- ref: str,
72696
+ _ref: str,
72723
72697
  value: str):
72724
72698
  """
72725
- :param str ref: URI of the AppRole.
72726
72699
  :param str value: ID of the AppRole.
72727
72700
  """
72728
- pulumi.set(__self__, "ref", ref)
72701
+ pulumi.set(__self__, "_ref", _ref)
72729
72702
  pulumi.set(__self__, "value", value)
72730
72703
 
72731
72704
  @property
72732
72705
  @pulumi.getter
72733
- def ref(self) -> str:
72734
- """
72735
- URI of the AppRole.
72736
- """
72737
- return pulumi.get(self, "ref")
72706
+ def _ref(self) -> str:
72707
+ return pulumi.get(self, "_ref")
72738
72708
 
72739
72709
  @property
72740
72710
  @pulumi.getter
@@ -78980,6 +78950,7 @@ class GetDomainsAppsAppResult(dict):
78980
78950
  domain_ocid: str,
78981
78951
  editable_attributes: Sequence['outputs.GetDomainsAppsAppEditableAttributeResult'],
78982
78952
  error_page_url: str,
78953
+ force_delete: bool,
78983
78954
  granted_app_roles: Sequence['outputs.GetDomainsAppsAppGrantedAppRoleResult'],
78984
78955
  grants: Sequence['outputs.GetDomainsAppsAppGrantResult'],
78985
78956
  hashed_client_secret: str,
@@ -79226,6 +79197,7 @@ class GetDomainsAppsAppResult(dict):
79226
79197
  pulumi.set(__self__, "domain_ocid", domain_ocid)
79227
79198
  pulumi.set(__self__, "editable_attributes", editable_attributes)
79228
79199
  pulumi.set(__self__, "error_page_url", error_page_url)
79200
+ pulumi.set(__self__, "force_delete", force_delete)
79229
79201
  pulumi.set(__self__, "granted_app_roles", granted_app_roles)
79230
79202
  pulumi.set(__self__, "grants", grants)
79231
79203
  pulumi.set(__self__, "hashed_client_secret", hashed_client_secret)
@@ -79629,6 +79601,11 @@ class GetDomainsAppsAppResult(dict):
79629
79601
  """
79630
79602
  return pulumi.get(self, "error_page_url")
79631
79603
 
79604
+ @property
79605
+ @pulumi.getter(name="forceDelete")
79606
+ def force_delete(self) -> bool:
79607
+ return pulumi.get(self, "force_delete")
79608
+
79632
79609
  @property
79633
79610
  @pulumi.getter(name="grantedAppRoles")
79634
79611
  def granted_app_roles(self) -> Sequence['outputs.GetDomainsAppsAppGrantedAppRoleResult']:
@@ -81410,22 +81387,18 @@ class GetDomainsAppsAppProtectableSecondaryAudienceResult(dict):
81410
81387
  @pulumi.output_type
81411
81388
  class GetDomainsAppsAppRadiusPolicyResult(dict):
81412
81389
  def __init__(__self__, *,
81413
- ref: str,
81390
+ _ref: str,
81414
81391
  value: str):
81415
81392
  """
81416
- :param str ref: URI of the AppRole.
81417
81393
  :param str value: ID of the AppRole.
81418
81394
  """
81419
- pulumi.set(__self__, "ref", ref)
81395
+ pulumi.set(__self__, "_ref", _ref)
81420
81396
  pulumi.set(__self__, "value", value)
81421
81397
 
81422
81398
  @property
81423
81399
  @pulumi.getter
81424
- def ref(self) -> str:
81425
- """
81426
- URI of the AppRole.
81427
- """
81428
- return pulumi.get(self, "ref")
81400
+ def _ref(self) -> str:
81401
+ return pulumi.get(self, "_ref")
81429
81402
 
81430
81403
  @property
81431
81404
  @pulumi.getter
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.28.0-alpha.1742884810"
4
+ "version": "2.28.0-alpha.1743049042"
5
5
  }
pulumi_oci/sch/_inputs.py CHANGED
@@ -53,7 +53,7 @@ if not MYPY:
53
53
  """
54
54
  config_map: NotRequired[pulumi.Input[str]]
55
55
  """
56
- (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
56
+ (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
57
57
  """
58
58
  cursor: NotRequired[pulumi.Input['ConnectorSourceCursorArgsDict']]
59
59
  """
@@ -69,7 +69,7 @@ if not MYPY:
69
69
  """
70
70
  plugin_name: NotRequired[pulumi.Input[str]]
71
71
  """
72
- (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
72
+ (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
73
73
  """
74
74
  stream_id: NotRequired[pulumi.Input[str]]
75
75
  """
@@ -90,11 +90,11 @@ class ConnectorSourceArgs:
90
90
  stream_id: Optional[pulumi.Input[str]] = None):
91
91
  """
92
92
  :param pulumi.Input[str] kind: (Updatable) The type discriminator.
93
- :param pulumi.Input[str] config_map: (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
93
+ :param pulumi.Input[str] config_map: (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
94
94
  :param pulumi.Input['ConnectorSourceCursorArgs'] cursor: (Updatable) The [read setting](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm), which determines where in the stream to start moving data. For configuration instructions, see [Creating a Connector with a Streaming Source](https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector-streaming-source.htm).
95
95
  :param pulumi.Input[Sequence[pulumi.Input['ConnectorSourceLogSourceArgs']]] log_sources: (Updatable) The logs for this Logging source.
96
96
  :param pulumi.Input[Sequence[pulumi.Input['ConnectorSourceMonitoringSourceArgs']]] monitoring_sources: (Updatable) One or more compartment-specific lists of metric namespaces to retrieve data from.
97
- :param pulumi.Input[str] plugin_name: (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
97
+ :param pulumi.Input[str] plugin_name: (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
98
98
  :param pulumi.Input[str] stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
99
99
  """
100
100
  pulumi.set(__self__, "kind", kind)
@@ -127,7 +127,7 @@ class ConnectorSourceArgs:
127
127
  @pulumi.getter(name="configMap")
128
128
  def config_map(self) -> Optional[pulumi.Input[str]]:
129
129
  """
130
- (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using (GetConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin] and review its schema value.
130
+ (Updatable) The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for `QueueSource`, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using [GetConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPlugin/GetConnectorPlugin) and review its schema value.
131
131
  """
132
132
  return pulumi.get(self, "config_map")
133
133
 
@@ -175,7 +175,7 @@ class ConnectorSourceArgs:
175
175
  @pulumi.getter(name="pluginName")
176
176
  def plugin_name(self) -> Optional[pulumi.Input[str]]:
177
177
  """
178
- (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using (ListConnectorPlugin)[#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins].
178
+ (Updatable) The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, `QueueSource` indicates the Queue service. To find names of connector plugins, list the plugin using [ListConnectorPlugin](https://docs.cloud.oracle.com/iaas/api/#/en/serviceconnectors/latest/ConnectorPluginSummary/ListConnectorPlugins).
179
179
  """
180
180
  return pulumi.get(self, "plugin_name")
181
181
 
@@ -236,7 +236,7 @@ if not MYPY:
236
236
  """
237
237
  log_group_id: NotRequired[pulumi.Input[str]]
238
238
  """
239
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only _Audit is allowed. Example OCID for _Audit log group: ocid1.tenancy.oc1..exampleuniqueid/_Audit
239
+ (Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
240
240
  """
241
241
  log_id: NotRequired[pulumi.Input[str]]
242
242
  """
@@ -253,7 +253,7 @@ class ConnectorSourceLogSourceArgs:
253
253
  log_id: Optional[pulumi.Input[str]] = None):
254
254
  """
255
255
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the log source.
256
- :param pulumi.Input[str] log_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only _Audit is allowed. Example OCID for _Audit log group: ocid1.tenancy.oc1..exampleuniqueid/_Audit
256
+ :param pulumi.Input[str] log_group_id: (Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
257
257
  :param pulumi.Input[str] log_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
258
258
  """
259
259
  if compartment_id is not None:
@@ -279,7 +279,7 @@ class ConnectorSourceLogSourceArgs:
279
279
  @pulumi.getter(name="logGroupId")
280
280
  def log_group_id(self) -> Optional[pulumi.Input[str]]:
281
281
  """
282
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only _Audit is allowed. Example OCID for _Audit log group: ocid1.tenancy.oc1..exampleuniqueid/_Audit
282
+ (Updatable) Identifier of the log group. Either `_Audit` or the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group. Note: For the Notifications target, only `_Audit` is allowed.
283
283
  """
284
284
  return pulumi.get(self, "log_group_id")
285
285
 
@@ -499,11 +499,11 @@ if not MYPY:
499
499
  """
500
500
  batch_size_in_kbs: NotRequired[pulumi.Input[int]]
501
501
  """
502
- (Updatable) The batch rollover size in kilobytes.
502
+ (Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
503
503
  """
504
504
  batch_size_in_num: NotRequired[pulumi.Input[int]]
505
505
  """
506
- (Updatable) The batch rollover size in number of messages.
506
+ (Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
507
507
  """
508
508
  batch_time_in_sec: NotRequired[pulumi.Input[int]]
509
509
  """
@@ -523,7 +523,7 @@ if not MYPY:
523
523
  """
524
524
  enable_formatted_messaging: NotRequired[pulumi.Input[bool]]
525
525
  """
526
- (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
526
+ (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
527
527
  """
528
528
  function_id: NotRequired[pulumi.Input[str]]
529
529
  """
@@ -539,11 +539,11 @@ if not MYPY:
539
539
  """
540
540
  metric: NotRequired[pulumi.Input[str]]
541
541
  """
542
- (Updatable) The name of the metric. Example: `CpuUtilization`
542
+ (Updatable) The name of the metric. Example: `CpuUtilization`
543
543
  """
544
544
  metric_namespace: NotRequired[pulumi.Input[str]]
545
545
  """
546
- (Updatable) The namespace of the metric. Example: `oci_computeagent`
546
+ (Updatable) The namespace of the metric. Example: `oci_computeagent`
547
547
  """
548
548
  namespace: NotRequired[pulumi.Input[str]]
549
549
  """
@@ -590,18 +590,18 @@ class ConnectorTargetArgs:
590
590
  :param pulumi.Input[str] kind: (Updatable) The type discriminator.
591
591
  :param pulumi.Input[int] batch_rollover_size_in_mbs: (Updatable) The batch rollover size in megabytes.
592
592
  :param pulumi.Input[int] batch_rollover_time_in_ms: (Updatable) The batch rollover time in milliseconds.
593
- :param pulumi.Input[int] batch_size_in_kbs: (Updatable) The batch rollover size in kilobytes.
594
- :param pulumi.Input[int] batch_size_in_num: (Updatable) The batch rollover size in number of messages.
593
+ :param pulumi.Input[int] batch_size_in_kbs: (Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
594
+ :param pulumi.Input[int] batch_size_in_num: (Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
595
595
  :param pulumi.Input[int] batch_time_in_sec: (Updatable) The batch rollover time in seconds.
596
596
  :param pulumi.Input[str] bucket: (Updatable) The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1
597
597
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the metric.
598
598
  :param pulumi.Input[Sequence[pulumi.Input['ConnectorTargetDimensionArgs']]] dimensions: (Updatable) List of dimension names and values.
599
- :param pulumi.Input[bool] enable_formatted_messaging: (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
599
+ :param pulumi.Input[bool] enable_formatted_messaging: (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
600
600
  :param pulumi.Input[str] function_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the function.
601
601
  :param pulumi.Input[str] log_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Logging Analytics log group.
602
602
  :param pulumi.Input[str] log_source_identifier: (Updatable) Identifier of the log source that you want to use for processing data received from the connector source. Applies to `StreamingSource` only. Equivalent to `name` at [LogAnalyticsSource](https://docs.cloud.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsSource/).
603
- :param pulumi.Input[str] metric: (Updatable) The name of the metric. Example: `CpuUtilization`
604
- :param pulumi.Input[str] metric_namespace: (Updatable) The namespace of the metric. Example: `oci_computeagent`
603
+ :param pulumi.Input[str] metric: (Updatable) The name of the metric. Example: `CpuUtilization`
604
+ :param pulumi.Input[str] metric_namespace: (Updatable) The namespace of the metric. Example: `oci_computeagent`
605
605
  :param pulumi.Input[str] namespace: (Updatable) The namespace.
606
606
  :param pulumi.Input[str] object_name_prefix: (Updatable) The prefix of the objects. Avoid entering confidential information.
607
607
  :param pulumi.Input[str] stream_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the stream.
@@ -685,7 +685,7 @@ class ConnectorTargetArgs:
685
685
  @pulumi.getter(name="batchSizeInKbs")
686
686
  def batch_size_in_kbs(self) -> Optional[pulumi.Input[int]]:
687
687
  """
688
- (Updatable) The batch rollover size in kilobytes.
688
+ (Updatable) The batch rollover size in kilobytes. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
689
689
  """
690
690
  return pulumi.get(self, "batch_size_in_kbs")
691
691
 
@@ -697,7 +697,7 @@ class ConnectorTargetArgs:
697
697
  @pulumi.getter(name="batchSizeInNum")
698
698
  def batch_size_in_num(self) -> Optional[pulumi.Input[int]]:
699
699
  """
700
- (Updatable) The batch rollover size in number of messages.
700
+ (Updatable) The batch rollover size in number of messages. Only one size option can be specified: `batchSizeInKbs` or `batchSizeInNum`.
701
701
  """
702
702
  return pulumi.get(self, "batch_size_in_num")
703
703
 
@@ -757,7 +757,7 @@ class ConnectorTargetArgs:
757
757
  @pulumi.getter(name="enableFormattedMessaging")
758
758
  def enable_formatted_messaging(self) -> Optional[pulumi.Input[bool]]:
759
759
  """
760
- (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
760
+ (Updatable) Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol. Example: `true`
761
761
  """
762
762
  return pulumi.get(self, "enable_formatted_messaging")
763
763
 
@@ -805,7 +805,7 @@ class ConnectorTargetArgs:
805
805
  @pulumi.getter
806
806
  def metric(self) -> Optional[pulumi.Input[str]]:
807
807
  """
808
- (Updatable) The name of the metric. Example: `CpuUtilization`
808
+ (Updatable) The name of the metric. Example: `CpuUtilization`
809
809
  """
810
810
  return pulumi.get(self, "metric")
811
811
 
@@ -817,7 +817,7 @@ class ConnectorTargetArgs:
817
817
  @pulumi.getter(name="metricNamespace")
818
818
  def metric_namespace(self) -> Optional[pulumi.Input[str]]:
819
819
  """
820
- (Updatable) The namespace of the metric. Example: `oci_computeagent`
820
+ (Updatable) The namespace of the metric. Example: `oci_computeagent`
821
821
  """
822
822
  return pulumi.get(self, "metric_namespace")
823
823