RequestAccessAdditionalParams¶
- pydantic model openapi_client.models.request_access_additional_params.RequestAccessAdditionalParams¶
Required for datasets and domains (else IPV-1004). Datasets require boolean IsDomainAccessRequested. Domains require boolean IsDatasetLevelAccessRequested. IsTenantAccessRequested may be set for domain requests under multi-tenancy.
- Fields:
- field is_domain_access_requested: Optional[StrictBool] = None (alias 'IsDomainAccessRequested')¶
Required boolean for datasets. If false/omitted path and user lacks domain access, AUTH-1003.
- field is_dataset_level_access_requested: Optional[StrictBool] = None (alias 'IsDatasetLevelAccessRequested')¶
Required boolean for domains.
- field is_tenant_access_requested: Optional[StrictBool] = None (alias 'IsTenantAccessRequested')¶
When multi-tenancy is on and user lacks tenant access on the domain’s tenant, must be true or AUTH-1003.
- to_str()¶
Returns the string representation of the model using alias
- Return type:
str
- to_json()¶
Returns the JSON representation of the model using alias
- Return type:
str
- classmethod from_json(json_str)¶
Create an instance of RequestAccessAdditionalParams from a JSON string
- Return type:
Optional[Self]
- to_dict()¶
Return the dictionary representation of the model using alias.
This has the following differences from calling pydantic’s self.model_dump(by_alias=True):
None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.
- Return type:
Dict[str,Any]
- classmethod from_dict(obj)¶
Create an instance of RequestAccessAdditionalParams from a dict
- Return type:
Optional[Self]