PolicySetDefinitionsOperations Class   
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:policy_set_definitions> attribute.
Constructor
PolicySetDefinitionsOperations(*args, **kwargs)Methods
| create_or_update | Creates or updates a policy set definition. This operation creates or updates a policy set definition in the given subscription with the given name. | 
| create_or_update_at_management_group | Creates or updates a policy set definition. This operation creates or updates a policy set definition in the given management group with the given name. | 
| delete | Deletes a policy set definition. This operation deletes the policy set definition in the given subscription with the given name. | 
| delete_at_management_group | Deletes a policy set definition. This operation deletes the policy set definition in the given management group with the given name. | 
| get | Retrieves a policy set definition. This operation retrieves the policy set definition in the given subscription with the given name. | 
| get_at_management_group | Retrieves a policy set definition. This operation retrieves the policy set definition in the given management group with the given name. | 
| get_built_in | Retrieves a built in policy set definition. This operation retrieves the built-in policy set definition with the given name. | 
| list | Retrieves the policy set definitions for a subscription. This operation retrieves a list of all the policy set definitions in the given subscription. | 
| list_built_in | Retrieves built-in policy set definitions. This operation retrieves a list of all the built-in policy set definitions. | 
| list_by_management_group | Retrieves all policy set definitions in management group. This operation retrieves a list of all the a policy set definition in the given management group. | 
create_or_update
Creates or updates a policy set definition.
This operation creates or updates a policy set definition in the given subscription with the given name.
create_or_update(policy_set_definition_name: str, parameters: _models.PolicySetDefinition, *, content_type: str = 'application/json', **kwargs: Any) -> _models.PolicySetDefinitionParameters
| Name | Description | 
|---|---|
| policy_set_definition_name 
				Required
			 | The name of the policy set definition to create. Required. | 
| parameters 
				Required
			 | The policy set definition properties. Is either a PolicySetDefinition type or a IO[bytes] type. Required. | 
Returns
| Type | Description | 
|---|---|
| PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
create_or_update_at_management_group
Creates or updates a policy set definition.
This operation creates or updates a policy set definition in the given management group with the given name.
create_or_update_at_management_group(policy_set_definition_name: str, management_group_id: str, parameters: _models.PolicySetDefinition, *, content_type: str = 'application/json', **kwargs: Any) -> _models.PolicySetDefinitionParameters
| Name | Description | 
|---|---|
| policy_set_definition_name 
				Required
			 | The name of the policy set definition to create. Required. | 
| management_group_id 
				Required
			 | The ID of the management group. Required. | 
| parameters 
				Required
			 | The policy set definition properties. Is either a PolicySetDefinition type or a IO[bytes] type. Required. | 
Returns
| Type | Description | 
|---|---|
| PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
delete
Deletes a policy set definition.
This operation deletes the policy set definition in the given subscription with the given name.
delete(policy_set_definition_name: str, **kwargs: Any) -> NoneParameters
| Name | Description | 
|---|---|
| policy_set_definition_name 
				Required
			 | The name of the policy set definition to delete. Required. | 
Returns
| Type | Description | 
|---|---|
| None or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
delete_at_management_group
Deletes a policy set definition.
This operation deletes the policy set definition in the given management group with the given name.
delete_at_management_group(policy_set_definition_name: str, management_group_id: str, **kwargs: Any) -> NoneParameters
| Name | Description | 
|---|---|
| policy_set_definition_name 
				Required
			 | The name of the policy set definition to delete. Required. | 
| management_group_id 
				Required
			 | The ID of the management group. Required. | 
Returns
| Type | Description | 
|---|---|
| None or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
get
Retrieves a policy set definition.
This operation retrieves the policy set definition in the given subscription with the given name.
get(policy_set_definition_name: str, **kwargs: Any) -> PolicySetDefinitionParameters
| Name | Description | 
|---|---|
| policy_set_definition_name 
				Required
			 | The name of the policy set definition to get. Required. | 
Returns
| Type | Description | 
|---|---|
| PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
get_at_management_group
Retrieves a policy set definition.
This operation retrieves the policy set definition in the given management group with the given name.
get_at_management_group(policy_set_definition_name: str, management_group_id: str, **kwargs: Any) -> PolicySetDefinitionParameters
| Name | Description | 
|---|---|
| policy_set_definition_name 
				Required
			 | The name of the policy set definition to get. Required. | 
| management_group_id 
				Required
			 | The ID of the management group. Required. | 
Returns
| Type | Description | 
|---|---|
| PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
get_built_in
Retrieves a built in policy set definition.
This operation retrieves the built-in policy set definition with the given name.
get_built_in(policy_set_definition_name: str, **kwargs: Any) -> PolicySetDefinitionParameters
| Name | Description | 
|---|---|
| policy_set_definition_name 
				Required
			 | The name of the policy set definition to get. Required. | 
Returns
| Type | Description | 
|---|---|
| PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
list
Retrieves the policy set definitions for a subscription.
This operation retrieves a list of all the policy set definitions in the given subscription.
list(**kwargs: Any) -> ItemPaged[PolicySetDefinition]Returns
| Type | Description | 
|---|---|
| An iterator like instance of either PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
list_built_in
Retrieves built-in policy set definitions.
This operation retrieves a list of all the built-in policy set definitions.
list_built_in(**kwargs: Any) -> ItemPaged[PolicySetDefinition]Returns
| Type | Description | 
|---|---|
| An iterator like instance of either PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
list_by_management_group
Retrieves all policy set definitions in management group.
This operation retrieves a list of all the a policy set definition in the given management group.
list_by_management_group(management_group_id: str, **kwargs: Any) -> ItemPaged[PolicySetDefinition]Parameters
| Name | Description | 
|---|---|
| management_group_id 
				Required
			 | The ID of the management group. Required. | 
Returns
| Type | Description | 
|---|---|
| An iterator like instance of either PolicySetDefinition or the result of cls(response) | 
Exceptions
| Type | Description | 
|---|---|
Attributes
models
models = <module 'azure.mgmt.resource.policy.v2018_05_01.models' from 'C:\\ToolCache\\Python\\3.11.9\\x64\\Lib\\site-packages\\py2docfx\\venv\\venv206\\Lib\\site-packages\\azure\\mgmt\\resource\\policy\\v2018_05_01\\models\\__init__.py'>