├── .changes ├── 3.0.0.md ├── 3.1.0.md ├── 3.2.0.md ├── 3.3.0.md ├── 3.4.0.md ├── 3.5.0.md ├── 3.6.0.md ├── 3.7.0.md ├── 3.7.1.md ├── 3.7.2.md ├── 3.8.0.md ├── 3.9.0.md ├── 3.9.1.md ├── header.tpl.md └── unreleased │ └── .gitkeep ├── .changie.yaml ├── .devcontainer ├── devcontainer.json ├── features │ └── local_provider_dev │ │ ├── devcontainer-feature.json │ │ └── install.sh └── postCreate.sh ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── data_source.md │ ├── documentation.md │ └── resource.md ├── codeql │ └── terraform-providers-go │ │ ├── codeql-pack.lock.yml │ │ ├── codeql-pack.yml │ │ └── no_panic.ql ├── copilot-commit-message-instructions.md ├── copilot-instructions.md ├── dependabot.yml ├── prompts │ ├── changie.prompt.md │ ├── codeql.prompt.md │ ├── codeql2.prompt.md │ ├── datasource.prompt.md │ ├── fix-issue-from-github.prompt.md │ ├── resource.prompt.md │ └── testing.prompt.md └── workflows │ ├── check_changie_comment_on_pr.yml │ ├── copilot-setup-steps.yml │ ├── golangci-lint.yml │ ├── metrics.yml │ ├── release.yml │ ├── release_prep.yml │ ├── run_tests.yml │ ├── scorecards.yml │ └── terraform_provider.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── .markdownlintignore ├── .terraformrc ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPER.md ├── GOVERNANCE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── common └── release.go ├── devdocs ├── adr │ ├── httpmocks.md │ ├── loosely_typed_data_records.md │ └── mitmproxy.md ├── community_support.md ├── feature_request_guidelines.md ├── observability_guidelines.md ├── playbook │ └── resource.md ├── release_guidelines.md ├── schema_guidelines.md ├── security_guidelines.md └── testing_guidelines.md ├── docs ├── data-sources │ ├── analytics_data_exports.md │ ├── billing_policies.md │ ├── billing_policies_environments.md │ ├── connection_shares.md │ ├── connections.md │ ├── connectors.md │ ├── currencies.md │ ├── data_loss_prevention_policies.md │ ├── data_records.md │ ├── environment_application_packages.md │ ├── environment_powerapps.md │ ├── environment_settings.md │ ├── environment_templates.md │ ├── environments.md │ ├── languages.md │ ├── locations.md │ ├── rest_query.md │ ├── security_roles.md │ ├── solution_checker_rules.md │ ├── solutions.md │ ├── tenant.md │ ├── tenant_application_packages.md │ ├── tenant_capacity.md │ └── tenant_settings.md ├── guides │ ├── app_registration.md │ ├── azure_cli.md │ ├── azure_developer_cli.md │ ├── client_secret.md │ ├── continuous_access_evaluation.md │ ├── dynamic_configuration.md │ ├── importing.md │ ├── managed_identity.md │ ├── nonpublic_clouds.md │ ├── oidc.md │ └── security_considerations.md ├── index.md └── resources │ ├── admin_management_application.md │ ├── billing_policy.md │ ├── billing_policy_environment.md │ ├── connection.md │ ├── connection_share.md │ ├── copilot_studio_application_insights.md │ ├── data_loss_prevention_policy.md │ ├── data_record.md │ ├── enterprise_policy.md │ ├── environment.md │ ├── environment_application_admin.md │ ├── environment_application_package_install.md │ ├── environment_group.md │ ├── environment_group_rule_set.md │ ├── environment_settings.md │ ├── environment_wave.md │ ├── managed_environment.md │ ├── rest.md │ ├── solution.md │ ├── tenant_isolation_policy.md │ ├── tenant_settings.md │ └── user.md ├── examples ├── data-sources │ ├── powerplatform_analytics_data_exports │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_billing_policies │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_billing_policies_environments │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_connection_shares │ │ ├── data-source.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── powerplatform_connections │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_connectors │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_currencies │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_data_loss_prevention_policies │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_data_records │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_environment_application_packages │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_environment_powerapps │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_environment_settings │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_environment_templates │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_environments │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_languages │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_locations │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_policies │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_rest_query │ │ ├── data-source.tf │ │ └── output.tf │ ├── powerplatform_securityroles │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_solution_checker_rules │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_solutions │ │ ├── data-source.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── powerplatform_tenant │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_tenant_application_packages │ │ ├── data-source.tf │ │ └── outputs.tf │ ├── powerplatform_tenant_capacity │ │ ├── data-source.tf │ │ └── outputs.tf │ └── powerplatform_tenant_settings │ │ ├── data-source.tf │ │ └── outputs.tf ├── provider │ ├── provider.tf │ ├── provider_with_azd.tf │ ├── provider_with_cae.tf │ └── provider_with_partner_id.tf └── resources │ ├── powerplatform_admin_management_application │ ├── import.sh │ └── resource.tf │ ├── powerplatform_billing_policy │ ├── import.sh │ ├── outputs.tf │ ├── resource.tf │ └── terraform.tf │ ├── powerplatform_billing_policy_environment │ ├── outputs.tf │ └── resource.tf │ ├── powerplatform_connection │ ├── outputs.tf │ ├── resource.tf │ └── variables.tf │ ├── powerplatform_connection_share │ ├── output.tf │ ├── resource.tf │ └── variables.tf │ ├── powerplatform_copilot_studio_application_insights │ ├── import.sh │ ├── resource.tf │ └── variables.tf │ ├── powerplatform_data_loss_prevention_policy │ ├── import.sh │ ├── outputs.tf │ └── resource.tf │ ├── powerplatform_data_record │ ├── output.tf │ ├── res_application_user │ │ └── main.tf │ ├── res_business_unit │ │ └── main.tf │ ├── res_role │ │ └── main.tf │ ├── res_team │ │ └── main.tf │ └── resource.tf │ ├── powerplatform_enterprise_policy │ ├── encryption │ │ └── main.tf │ ├── network_injection │ │ └── main.tf │ ├── resource.tf │ └── variables.tf │ ├── powerplatform_environment │ ├── import.sh │ ├── outputs.tf │ └── resource.tf │ ├── powerplatform_environment_application_admin │ ├── import.sh │ └── resource.tf │ ├── powerplatform_environment_application_packages │ ├── outputs.tf │ └── resource.tf │ ├── powerplatform_environment_group │ ├── import.sh │ └── resource.tf │ ├── powerplatform_environment_group_rule_set │ └── resource.tf │ ├── powerplatform_environment_settings │ ├── outputs.tf │ └── resource.tf │ ├── powerplatform_environment_wave │ └── resource.tf │ ├── powerplatform_managed_environment │ ├── outputs.tf │ └── resource.tf │ ├── powerplatform_rest │ ├── output.tf │ └── resource.tf │ ├── powerplatform_solution │ ├── TerraformTestSolution_Complex_1_1_0_0.zip │ ├── outputs.tf │ └── resource.tf │ ├── powerplatform_tenant_isolation_policy │ └── resource.tf │ ├── powerplatform_tenant_settings │ ├── outputs.tf │ └── resource.tf │ └── powerplatform_user │ ├── outputs.tf │ └── resource.tf ├── go.mod ├── go.sum ├── internal ├── api │ ├── auth.go │ ├── auth_test.go │ ├── client.go │ ├── client_test.go │ ├── lifecycle.go │ ├── request.go │ └── request_test.go ├── config │ ├── config.go │ └── config_test.go ├── constants │ └── constants.go ├── customerrors │ ├── provider_error.go │ ├── unexpected_http_status_code_error.go │ └── url_format_error.go ├── customtypes │ ├── uuid.go │ ├── uuid_type.go │ └── uuid_value.go ├── helpers │ ├── array │ │ └── array.go │ ├── cert.go │ ├── config.go │ ├── config_test.go │ ├── contains.go │ ├── contexts.go │ ├── contexts_test.go │ ├── hash.go │ ├── hash_fuzz_test.go │ ├── hash_test.go │ ├── regex.go │ ├── set_to_string.go │ ├── string_to_set.go │ ├── string_to_set_test.go │ ├── typeinfo.go │ ├── typeinfo_test.go │ └── uri.go ├── mocks │ ├── known_state_value.go │ └── mocks.go ├── modifiers │ ├── force_string_value_unknown_modifier.go │ ├── require_replace_int_attribute_modifier.go │ ├── require_replace_object_to_empty_modifier.go │ ├── requires_replace_string_from_non_empty_modifier.go │ ├── restore_original_value_modifier.go │ ├── set_bool_value_unknown_if_checksum_change_modifier.go │ ├── set_string_attribute_unknown_only_if_second_attribute_change.go │ ├── set_string_value_unknown_if_checksum_change_modifier.go │ ├── sync_attribute_plan_modifier.go │ └── use_state_for_unknown_keep_non_null_state_modifier.go ├── provider │ ├── provider.go │ └── provider_test.go ├── services │ ├── admin_management_application │ │ ├── api_admin_management_application.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_admin_management_application.go │ │ └── resource_admin_management_application_test.go │ ├── analytics_data_export │ │ ├── api_analytics_data_exports.go │ │ ├── datasource_analytics_data_exports.go │ │ ├── datasource_analytics_data_exports_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ ├── get_analytics_data_exports.json │ │ │ ├── get_gateway_cluster.json │ │ │ └── get_tenant.json │ ├── application │ │ ├── api_application.go │ │ ├── datasource_environment_application_packages.go │ │ ├── datasource_environment_application_packages_test.go │ │ ├── datasource_tenant_application_packages.go │ │ ├── datasource_tenant_application_packages_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_environment_application_admin.go │ │ ├── resource_environment_application_admin_test.go │ │ ├── resource_environment_application_package_install.go │ │ ├── resource_environment_application_package_install_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ ├── environment_application_packages │ │ │ │ ├── Validate_No_Dataverse │ │ │ │ │ ├── get_applications.json │ │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ │ ├── get_lifecycle.json │ │ │ │ │ └── get_lifecycle_delete.json │ │ │ │ └── Validate_Read │ │ │ │ │ ├── get_applications.json │ │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ │ ├── get_lifecycle.json │ │ │ │ │ └── get_lifecycle_delete.json │ │ │ └── tenant_application_packages │ │ │ │ ├── Validate_Read │ │ │ │ └── get_tenant_applications.json │ │ │ │ └── Validate_Read_Filter │ │ │ │ └── get_tenant_applications.json │ │ │ └── resource │ │ │ ├── Validate_Install │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete.json │ │ │ └── get_operation.json │ │ │ ├── Validate_No_Dataverse │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete.json │ │ │ └── get_operation.json │ │ │ └── application_admin │ │ │ ├── Create │ │ │ ├── get_applicationusers.json │ │ │ └── get_environment.json │ │ │ ├── Delete │ │ │ ├── get_applicationusers.json │ │ │ └── get_environment.json │ │ │ ├── Import │ │ │ ├── get_applicationusers.json │ │ │ └── get_environment.json │ │ │ └── Read_NotFound │ │ │ └── get_environment.json │ ├── authorization │ │ ├── api_user.go │ │ ├── constants.go │ │ ├── datasource_securityroles.go │ │ ├── datasource_securityroles_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_user.go │ │ ├── resource_user_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ └── security_roles │ │ │ │ ├── Validate_No_Dataverse │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ ├── get_lifecycle.json │ │ │ │ ├── get_lifecycle_delete.json │ │ │ │ └── get_security_roles.json │ │ │ │ ├── Validate_Read │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ └── get_security_roles.json │ │ │ │ └── Validate_Read_Filter_BusinessUnit │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ └── get_security_roles.json │ │ │ └── resource │ │ │ └── user │ │ │ ├── Validate_Create │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_systemuser_00000000-0000-0000-0000-000000000002.json │ │ │ └── get_systemusers.json │ │ │ ├── Validate_Create_And_Force_Recreate │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000002.json │ │ │ ├── get_systemuser_00000000-0000-0000-0000-000000000002.json │ │ │ └── get_systemusers.json │ │ │ ├── Validate_Create_And_Update │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_systemuser_00000000-0000-0000-0000-000000000002_1.json │ │ │ ├── get_systemuser_00000000-0000-0000-0000-000000000002_2.json │ │ │ ├── get_systemuser_00000000-0000-0000-0000-000000000002_3.json │ │ │ ├── get_systemuser_00000000-0000-0000-0000-000000000002_4.json │ │ │ ├── get_systemusers_1.json │ │ │ ├── get_systemusers_2.json │ │ │ ├── get_systemusers_3.json │ │ │ └── get_systemusers_4.json │ │ │ ├── Validate_Create_Env │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── modify_role_assignments_00000000-0000-0000-0000-000000000001.json │ │ │ └── role_assignments_00000000-0000-0000-0000-000000000001.json │ │ │ ├── Validate_No_Dataverse │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_systemuser_00000000-0000-0000-0000-000000000002.json │ │ │ └── get_systemusers.json │ │ │ └── Validate_Update_Env │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── modify_role_assignments_00000000-0000-0000-0000-000000000001.json │ │ │ ├── role_assignments_00000000-0000-0000-0000-000000000001.json │ │ │ └── role_assignments_00000000-0000-0000-0000-000000000001_empty.json │ ├── capacity │ │ ├── api_capacity.go │ │ ├── datasource_tenant_capacity.go │ │ ├── datasource_tenant_capacity_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ └── get_tenant_capacity.json │ ├── connection │ │ ├── api_connection.go │ │ ├── datasource_connection_shares.go │ │ ├── datasource_connection_shares_test.go │ │ ├── datasource_connections.go │ │ ├── datasource_connections_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_connection.go │ │ ├── resource_connection_share.go │ │ ├── resource_connection_share_test.go │ │ ├── resource_connection_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ ├── connection_shares │ │ │ │ └── Validate_Read │ │ │ │ │ └── get_connection_shares.json │ │ │ └── connections │ │ │ │ └── Validate_Read │ │ │ │ └── get_connections.json │ │ │ └── resource │ │ │ ├── connection_shares │ │ │ └── Validate_Create │ │ │ │ └── get_connection_shares.json │ │ │ └── connections │ │ │ └── Validate_Create │ │ │ └── put_connection.json │ ├── connectors │ │ ├── api_connectors.go │ │ ├── datasource_connectors.go │ │ ├── datasource_connectors_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ ├── Test_Files │ │ │ └── TerraformTestCustomConnector_1_0_0_1.zip │ │ │ └── Validate_Read │ │ │ ├── get_apis.json │ │ │ ├── get_unblockable.json │ │ │ └── get_virtual.json │ ├── copilot_studio_application_insights │ │ ├── api_copilot_studio_application_insights.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_copilot_studio_application_insights.go │ │ ├── resource_copilot_studio_application_insights_test.go │ │ └── tests │ │ │ ├── Test_Files │ │ │ └── testagent_1_0_0_1_managed.zip │ │ │ ├── Validate_Create │ │ │ ├── app_insights.json │ │ │ └── get_environments.json │ │ │ └── Validate_Update │ │ │ ├── get_app_insights_1.json │ │ │ ├── get_app_insights_2.json │ │ │ ├── get_app_insights_3.json │ │ │ ├── get_environments.json │ │ │ ├── put_app_insights_1.json │ │ │ ├── put_app_insights_2.json │ │ │ └── put_app_insights_3.json │ ├── currencies │ │ ├── api_currencies.go │ │ ├── datasource_currencies.go │ │ ├── datasource_currencies_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ └── get_currencies.json │ ├── data_record │ │ ├── api_data_record.go │ │ ├── datasource_data_record.go │ │ ├── datasource_data_record_test.go │ │ ├── dto.go │ │ ├── dynamic_columns.go │ │ ├── dynamic_columns_validator.go │ │ ├── models.go │ │ ├── odata.go │ │ ├── resource_data_record.go │ │ ├── resource_data_record_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ ├── get_entitydefinition_account.json │ │ │ ├── get_entitydefinition_contact.json │ │ │ └── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ └── resource │ │ │ ├── Validate_Create │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_contact_customer_accounts.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_ref.json │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000010.json │ │ │ ├── get_entitydefinition_account.json │ │ │ ├── get_entitydefinition_contact.json │ │ │ └── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── Validate_Delete │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_contact_customer_accounts.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_ref.json │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000010.json │ │ │ ├── get_entitydefinition_account.json │ │ │ ├── get_entitydefinition_contact.json │ │ │ └── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── Validate_Disable_On_Delete │ │ │ ├── get_businessunit_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_entitydefinition_businessunit.json │ │ │ ├── get_entitydefinition_businessunit_attributes.json │ │ │ ├── get_entitydefinition_mailbox.json │ │ │ ├── get_entitydefinition_mailbox_attributes.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ └── get_mailbox_00000000-0000-0000-0000-000000000010.json │ │ │ ├── Validate_Update │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000010_1.json │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000010_2.json │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000010_3.json │ │ │ ├── get_entitydefinition_contact.json │ │ │ └── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ └── Validate_Update_Relationships │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_1.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_2.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_3.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_4.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_5.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_contact_customer_accounts_1.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_contact_customer_accounts_2.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_contact_customer_accounts_3.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_contact_customer_accounts_4.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_contact_customer_accounts_5.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_ref_1.json │ │ │ ├── get_account_00000000-0000-0000-0000-000000000020_ref_2.json │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000010.json │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000011.json │ │ │ ├── get_contact_00000000-0000-0000-0000-000000000012.json │ │ │ ├── get_entitydefinition_account.json │ │ │ ├── get_entitydefinition_contact.json │ │ │ └── get_environment_00000000-0000-0000-0000-000000000001.json │ ├── dlp_policy │ │ ├── api_dlp_policy.go │ │ ├── datasource_dlp_policy.go │ │ ├── datasource_dlp_policy_test.go │ │ ├── dto.go │ │ ├── helpers.go │ │ ├── models.go │ │ ├── resource_dlp_policy.go │ │ ├── resource_dlp_policy_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ └── Validate_Read │ │ │ │ ├── get_policies.json │ │ │ │ ├── get_policy_00000000-0000-0000-0000-000000000001.json │ │ │ │ └── get_policy_00000000-0000-0000-0000-000000000002.json │ │ │ └── resource │ │ │ └── Validate_Create │ │ │ └── get_policy_00000000-0000-0000-0000-000000000001.json │ ├── enterprise_policy │ │ ├── api_enterprise_policy.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_enterprise_policy.go │ │ ├── resource_enterprise_policy_test.go │ │ └── tests │ │ │ └── Validate_Create │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_operation.json │ ├── environment │ │ ├── api_environment.go │ │ ├── datasource_environments.go │ │ ├── datasource_environments_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_environment.go │ │ ├── resource_environment_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ └── Validate_Read │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000002.json │ │ │ │ └── get_environments.json │ │ │ └── resource │ │ │ ├── Create_Environment_And_Add_Env_Group │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001_1.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001_2.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001_3.json │ │ │ ├── get_environment_group_1.json │ │ │ ├── get_environment_group_2.json │ │ │ ├── get_environments_1.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete.json │ │ │ ├── post_environment_group_1.json │ │ │ └── post_environment_group_2.json │ │ │ ├── Create_Environment_With_Env_Group │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_environment_group.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Attribute_Validators │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_And_Force_Recreate │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000002.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000003.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000004.json │ │ │ ├── get_lifecycle_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle_00000000-0000-0000-0000-000000000002.json │ │ │ ├── get_lifecycle_00000000-0000-0000-0000-000000000003.json │ │ │ ├── get_lifecycle_00000000-0000-0000-0000-000000000004.json │ │ │ ├── get_lifecycle_delete.json │ │ │ ├── get_transactioncurrencies_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_transactioncurrencies_00000000-0000-0000-0000-000000000002.json │ │ │ ├── get_transactioncurrencies_00000000-0000-0000-0000-000000000003.json │ │ │ └── get_transactioncurrencies_00000000-0000-0000-0000-000000000004.json │ │ │ ├── Validate_Create_And_Update │ │ │ ├── get_environment_0.json │ │ │ ├── get_environment_1.json │ │ │ ├── get_environment_2.json │ │ │ ├── get_environment_3.json │ │ │ ├── get_environments_1.json │ │ │ ├── get_lifecycle_1.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_Dev_Env │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_Early_Release_Cycle │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_Environment_And_Dataverse │ │ │ ├── get_environment_1.json │ │ │ ├── get_environment_2.json │ │ │ ├── get_environment_3.json │ │ │ ├── get_environment_4.json │ │ │ ├── get_environment_5.json │ │ │ ├── get_environment_6.json │ │ │ ├── get_environment_7.json │ │ │ ├── get_environments.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete.json │ │ │ └── get_lifecycle_new_dataverse.json │ │ │ ├── Validate_Create_No_Dataverse │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_No_Dataverse_Region_Not_Available │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_Them_Try_Remove_Dataverse │ │ │ ├── get_environment_1.json │ │ │ ├── get_environment_2.json │ │ │ ├── get_environment_3.json │ │ │ ├── get_environment_4.json │ │ │ ├── get_environment_5.json │ │ │ ├── get_environment_6.json │ │ │ ├── get_environment_7.json │ │ │ ├── get_environment_8.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_With_Billing_Policy │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Create_With_D365_Template │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_environments.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Do_Not_Retry_On_NoCapacity │ │ │ └── post_environment.json │ │ │ ├── Validate_Locations_And_Azure_Regions │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ ├── Validate_Retry_LidecycleOperation │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete_1.json │ │ │ ├── get_lifecycle_delete_2.json │ │ │ └── get_lifecycle_delete_3.json │ │ │ ├── Validate_Retry_On_Running_LifecycleOperation │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete_1.json │ │ │ ├── get_lifecycle_delete_2.json │ │ │ ├── get_lifecycle_delete_3.json │ │ │ └── post_environment_operation_in_progress.json │ │ │ ├── Validate_Update_Environment_Type │ │ │ ├── get_environment_0.json │ │ │ ├── get_environment_1.json │ │ │ ├── get_environment_2.json │ │ │ ├── get_environment_3.json │ │ │ ├── get_environment_4.json │ │ │ ├── get_environment_5.json │ │ │ ├── get_environment_6.json │ │ │ ├── get_environment_7.json │ │ │ ├── get_environment_8.json │ │ │ ├── get_environment_9.json │ │ │ ├── get_environments_1.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ │ │ └── Validate_Update_With_Billing_Policy │ │ │ ├── get_environment_1.json │ │ │ ├── get_environment_10.json │ │ │ ├── get_environment_11.json │ │ │ ├── get_environment_12.json │ │ │ ├── get_environment_14.json │ │ │ ├── get_environment_16.json │ │ │ ├── get_environment_17.json │ │ │ ├── get_environment_2.json │ │ │ ├── get_environment_3.json │ │ │ ├── get_environment_4.json │ │ │ ├── get_environment_5.json │ │ │ ├── get_environment_6.json │ │ │ ├── get_environment_7.json │ │ │ ├── get_environment_8.json │ │ │ ├── get_environment_9.json │ │ │ ├── get_environments_1.json │ │ │ ├── get_environments_2.json │ │ │ ├── get_environments_3.json │ │ │ ├── get_lifecycle.json │ │ │ └── get_lifecycle_delete.json │ ├── environment_group_rule_set │ │ ├── api_environment_group_rule_set.go │ │ ├── constants.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_environment_group_rule_set.go │ │ ├── resource_environment_group_rule_set_test.go │ │ └── tests │ │ │ ├── Validate_Create │ │ │ ├── get_rule_set.json │ │ │ └── post_rule_set.json │ │ │ └── Validate_Update │ │ │ ├── get_rule_set_0.json │ │ │ ├── get_rule_set_1.json │ │ │ ├── get_rule_set_2.json │ │ │ ├── get_rule_set_3.json │ │ │ ├── get_rule_set_4.json │ │ │ ├── post_rule_set_0.json │ │ │ └── put_rule_set_0.json │ ├── environment_groups │ │ ├── api_environment_group.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_environment_group.go │ │ ├── resource_environment_group_test.go │ │ └── tests │ │ │ └── resources │ │ │ └── get_environment_group.json │ ├── environment_settings │ │ ├── api_environment_settings.go │ │ ├── datasource_environment_settings.go │ │ ├── datasource_environment_settings_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_environment_settings_test.go │ │ ├── resources_environment_settings.go │ │ └── tests │ │ │ ├── datasource │ │ │ ├── Validate_No_Dataverse │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ ├── get_lifecycle.json │ │ │ │ ├── get_lifecycle_delete.json │ │ │ │ └── organisations.json │ │ │ ├── Validate_Read │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ ├── get_retrievesettinglist.json │ │ │ │ └── organisations.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ └── organisations.json │ │ │ └── resources │ │ │ ├── Validate_Create_Empty_Settings │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_organisations_1.json │ │ │ ├── get_organisations_2.json │ │ │ ├── get_organisations_3.json │ │ │ └── get_retrievesettinglist.json │ │ │ ├── Validate_No_Dataverse │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete.json │ │ │ ├── get_organisations_1.json │ │ │ ├── get_organisations_2.json │ │ │ └── get_organisations_3.json │ │ │ ├── Validate_Read │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_organisations_1.json │ │ │ ├── get_organisations_2.json │ │ │ ├── get_organisations_3.json │ │ │ └── get_retrievesettinglist.json │ │ │ ├── Validate_Update │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_organisations_1.json │ │ │ ├── get_organisations_2.json │ │ │ ├── get_organisations_3.json │ │ │ ├── get_organisations_4.json │ │ │ ├── get_organisations_5.json │ │ │ ├── get_organisations_6.json │ │ │ ├── get_retrievesettinglist_step1.json │ │ │ └── get_retrievesettinglist_step2.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_organisations_1.json │ │ │ ├── get_organisations_2.json │ │ │ └── get_organisations_3.json │ ├── environment_templates │ │ ├── api_environment_templates.go │ │ ├── datasource_environment_templates.go │ │ ├── datasource_environment_templates_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ └── get_environment_templates.json │ ├── environment_wave │ │ ├── api_environment_wave.go │ │ ├── models.go │ │ ├── resource_environment_wave.go │ │ ├── resource_environment_wave_test.go │ │ └── test │ │ │ └── resource │ │ │ ├── EnvironmentWaveResource_Create │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_features_enabled.json │ │ │ ├── get_features_upgrading.json │ │ │ └── get_organizations.json │ │ │ ├── EnvironmentWaveResource_Error │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_features_failed.json │ │ │ └── get_organizations.json │ │ │ ├── EnvironmentWaveResource_FailedDuringUpgrade │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_features_failed.json │ │ │ ├── get_features_upgrading.json │ │ │ └── get_organizations.json │ │ │ ├── EnvironmentWaveResource_NotFound │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ └── get_organizations.json │ │ │ ├── EnvironmentWaveResource_Timeout │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_features_enabled.json │ │ │ ├── get_features_upgrading.json │ │ │ └── get_organizations.json │ │ │ └── EnvironmentWaveResource_UnsupportedState │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_features_unknown.json │ │ │ └── get_organizations.json │ ├── languages │ │ ├── api_languages.go │ │ ├── datasource_languages.go │ │ ├── datasource_languages_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ └── get_languages.json │ ├── licensing │ │ ├── api_licensing.go │ │ ├── datasource_billing_policies.go │ │ ├── datasource_billing_policies_environments.go │ │ ├── datasource_billing_policies_environments_test.go │ │ ├── datasource_billing_policies_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_billing_policy.go │ │ ├── resource_billing_policy_environment.go │ │ ├── resource_billing_policy_environment_test.go │ │ ├── resource_billing_policy_test.go │ │ └── test │ │ │ ├── datasource │ │ │ ├── environments │ │ │ │ └── get_environments_for_policy.json │ │ │ └── policies │ │ │ │ └── get_billing_policies.json │ │ │ └── resource │ │ │ ├── environments │ │ │ ├── Validate_Create │ │ │ │ └── get_environments_for_policy.json │ │ │ └── Validate_Update │ │ │ │ ├── get_environments_for_policy_1.json │ │ │ │ ├── get_environments_for_policy_10.json │ │ │ │ ├── get_environments_for_policy_11.json │ │ │ │ ├── get_environments_for_policy_2.json │ │ │ │ ├── get_environments_for_policy_3.json │ │ │ │ ├── get_environments_for_policy_4.json │ │ │ │ ├── get_environments_for_policy_5.json │ │ │ │ ├── get_environments_for_policy_6.json │ │ │ │ ├── get_environments_for_policy_7.json │ │ │ │ ├── get_environments_for_policy_8.json │ │ │ │ └── get_environments_for_policy_9.json │ │ │ └── policies │ │ │ ├── Validate_Create │ │ │ └── post_billing_policy.json │ │ │ ├── Validate_Create_TimeoutWithoutFinalStatus │ │ │ ├── get_billing_policy.json │ │ │ └── post_billing_policy.json │ │ │ ├── Validate_Create_WithoutFinalStatusInPostResponse │ │ │ ├── get_billing_policy.json │ │ │ └── post_billing_policy.json │ │ │ ├── Validate_Update │ │ │ ├── get_billing_policy_1.json │ │ │ ├── get_billing_policy_2.json │ │ │ ├── get_billing_policy_3.json │ │ │ ├── get_billing_policy_4.json │ │ │ ├── get_billing_policy_5.json │ │ │ ├── post_billing_policy_1.json │ │ │ └── put_billing_policy_1.json │ │ │ └── Validate_Update_ForceRecreate │ │ │ ├── get_billing_policy_1.json │ │ │ ├── get_billing_policy_2.json │ │ │ ├── get_billing_policy_3.json │ │ │ ├── get_billing_policy_4.json │ │ │ ├── get_billing_policy_5.json │ │ │ ├── get_billing_policy_6.json │ │ │ ├── get_billing_policy_7.json │ │ │ ├── post_billing_policy_1.json │ │ │ └── post_billing_policy_2.json │ ├── locations │ │ ├── api_locations.go │ │ ├── datasource_locations.go │ │ ├── datasource_locations_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ └── get_locations.json │ ├── managed_environment │ │ ├── api_managed_environment.go │ │ ├── md_solution_checker_rules.go │ │ ├── models.go │ │ ├── resource_managed_environment.go │ │ ├── resource_managed_environment_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ └── Validate_Read │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000002.json │ │ │ │ └── get_environments.json │ │ │ ├── get_rulesset.json │ │ │ └── resource │ │ │ ├── Validate_Create_And_Update │ │ │ ├── get_environment_create_response.json │ │ │ ├── get_environment_create_response_extended_0.json │ │ │ ├── get_environment_create_response_extended_1.json │ │ │ ├── get_environment_create_response_extended_10.json │ │ │ ├── get_environment_create_response_extended_11.json │ │ │ ├── get_environment_create_response_extended_12.json │ │ │ ├── get_environment_create_response_extended_13.json │ │ │ ├── get_environment_create_response_extended_14.json │ │ │ ├── get_environment_create_response_extended_15.json │ │ │ ├── get_environment_create_response_extended_16.json │ │ │ ├── get_environment_create_response_extended_17.json │ │ │ ├── get_environment_create_response_extended_18.json │ │ │ ├── get_environment_create_response_extended_19.json │ │ │ ├── get_environment_create_response_extended_2.json │ │ │ ├── get_environment_create_response_extended_20.json │ │ │ ├── get_environment_create_response_extended_21.json │ │ │ ├── get_environment_create_response_extended_22.json │ │ │ ├── get_environment_create_response_extended_23.json │ │ │ ├── get_environment_create_response_extended_24.json │ │ │ ├── get_environment_create_response_extended_25.json │ │ │ ├── get_environment_create_response_extended_26.json │ │ │ ├── get_environment_create_response_extended_27.json │ │ │ ├── get_environment_create_response_extended_28.json │ │ │ ├── get_environment_create_response_extended_3.json │ │ │ ├── get_environment_create_response_extended_4.json │ │ │ ├── get_environment_create_response_extended_5.json │ │ │ ├── get_environment_create_response_extended_6.json │ │ │ ├── get_environment_create_response_extended_7.json │ │ │ ├── get_environment_create_response_extended_8.json │ │ │ ├── get_environment_create_response_extended_9.json │ │ │ ├── get_environments_0.json │ │ │ └── get_lifecycle.json │ │ │ └── Validate_Create_Wrong_Solution_Checker_Rule │ │ │ ├── get_environment_create_response.json │ │ │ ├── get_environment_create_response_extended_0.json │ │ │ ├── get_environment_create_response_extended_1.json │ │ │ ├── get_environment_create_response_extended_2.json │ │ │ ├── get_environments_0.json │ │ │ └── get_lifecycle.json │ ├── powerapps │ │ ├── api_powerapps.go │ │ ├── datasource_environment_powerapps.go │ │ ├── datasource_environment_powerapps_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── Validate_Read │ │ │ ├── get_apps_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_apps_00000000-0000-0000-0000-000000000002.json │ │ │ └── get_environments.json │ ├── rest │ │ ├── api_rest.go │ │ ├── datasource_rest_query.go │ │ ├── datasource_rest_query_test.go │ │ ├── models.go │ │ ├── resource_rest.go │ │ ├── resource_rest_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ └── Web_Apis_WhoAmI │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ └── get_whoami.json │ │ │ └── resource │ │ │ └── Web_Api_Validate_Create │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ └── post_account.json │ ├── solution │ │ ├── api_solution.go │ │ ├── datasource_solutions.go │ │ ├── datasource_solutions_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_solution.go │ │ ├── resource_solution_test.go │ │ └── tests │ │ │ ├── datasource │ │ │ ├── Validate_No_Dataverse │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ ├── get_environments.json │ │ │ │ └── get_solution.json │ │ │ └── Validate_Read │ │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ │ ├── get_environments.json │ │ │ │ └── get_solution.json │ │ │ └── resource │ │ │ ├── Test_Files │ │ │ ├── TerraformSimpleTestSolution_1_0_0_1_managed.zip │ │ │ └── TerraformTestSolution_Complex_1_1_0_0.zip │ │ │ ├── Validate_Create_And_Force_Recreate │ │ │ ├── get_async_operations.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_solution.json │ │ │ ├── get_solution_import_result.json │ │ │ ├── post_import_solution_async.json │ │ │ └── post_stage_solution.json │ │ │ ├── Validate_Create_No_Dataverse │ │ │ ├── get_async_operations.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete.json │ │ │ ├── get_solution.json │ │ │ ├── get_solution_import_result.json │ │ │ ├── post_import_solution_async.json │ │ │ └── post_stage_solution.json │ │ │ ├── Validate_Create_No_Settings_File │ │ │ ├── get_async_operations.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001 copy.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_lifecycle.json │ │ │ ├── get_lifecycle_delete.json │ │ │ ├── get_solution.json │ │ │ ├── get_solution_import_result.json │ │ │ ├── post_import_solution_async.json │ │ │ └── post_stage_solution.json │ │ │ └── Validate_Create_With_Settings_File │ │ │ ├── get_async_operations.json │ │ │ ├── get_environment_00000000-0000-0000-0000-000000000001.json │ │ │ ├── get_solution.json │ │ │ ├── get_solution_import_result.json │ │ │ ├── post_import_solution_async.json │ │ │ └── post_stage_solution.json │ ├── solution_checker_rules │ │ ├── client.go │ │ ├── datasource_solution_checker_rules.go │ │ ├── datasource_solution_checker_rules_test.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ ├── get_environment.json │ │ │ └── get_rules.json │ ├── tenant │ │ ├── api_tenant.go │ │ ├── datasource_tenant.go │ │ ├── datasource_tenant_test.go │ │ ├── dto.go │ │ ├── models.go │ │ └── tests │ │ │ └── datasource │ │ │ └── Validate_Read │ │ │ └── get_tenant.json │ ├── tenant_isolation_policy │ │ ├── api_tenant_isolation_policy.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_tenant_isolation_policy.go │ │ ├── resource_tenant_isolation_policy_test.go │ │ └── tests │ │ │ └── resource │ │ │ ├── Validate_Create │ │ │ ├── policy_response.json │ │ │ └── response.json │ │ │ ├── Validate_Create_Error │ │ │ └── error_response.json │ │ │ ├── Validate_Delete │ │ │ ├── empty_policy.json │ │ │ ├── initial_policy.json │ │ │ └── policy.json │ │ │ ├── Validate_Update │ │ │ ├── initial_policy.json │ │ │ ├── initial_state.json │ │ │ ├── updated_policy.json │ │ │ └── updated_state.json │ │ │ ├── empty_policy.json │ │ │ ├── get_empty_policy.json │ │ │ ├── get_tenant.json │ │ │ └── tenant.json │ └── tenant_settings │ │ ├── api_tenant_settings.go │ │ ├── datasource_tenant_settings.go │ │ ├── datasource_tenant_settings_test.go │ │ ├── dto.go │ │ ├── models.go │ │ ├── resource_tenant_settings.go │ │ ├── resource_tenant_settings_test.go │ │ └── tests │ │ ├── datasource │ │ └── post_list_tenant_settings.json │ │ └── resources │ │ ├── Validate_Create │ │ ├── get_tenant.json │ │ └── post_update_tenant_settings.json │ │ └── Validate_Update │ │ ├── get_tenant.json │ │ ├── post_list_tenant_settings_1.json │ │ ├── post_list_tenant_settings_2.json │ │ ├── post_list_tenant_settings_3.json │ │ ├── post_list_tenant_settings_4.json │ │ ├── post_update_tenant_settings_1.json │ │ ├── post_update_tenant_settings_2.json │ │ └── post_update_tenant_settings_3.json └── validators │ ├── make_field_required_when_other_field_does_not_have_value.go │ ├── make_field_required_when_other_field_does_not_have_value_validator.go │ ├── other_field_required_when_value_of.go │ └── other_field_required_when_value_of_validator.go ├── main.go ├── makefile ├── scripts └── user_story_prompt.sh ├── templates ├── guides │ ├── app_registration.md.tmpl │ ├── azure_cli.md.tmpl │ ├── azure_developer_cli.md.tmpl │ ├── client_secret.md.tmpl │ ├── continuous_access_evaluation.md.tmpl │ ├── dynamic_configuration.md.tmpl │ ├── importing.md.tmpl │ ├── managed_identity.md.tmpl │ ├── nonpublic_clouds.md.tmpl │ ├── oidc.md.tmpl │ └── security_considerations.md.tmpl ├── index.md.tmpl └── resources │ ├── data_record.md.tmpl │ └── environment_application_package_install.md.tmpl ├── terraform-registry-manifest.json └── tools.go /.changes/3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.0.0.md -------------------------------------------------------------------------------- /.changes/3.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.1.0.md -------------------------------------------------------------------------------- /.changes/3.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.2.0.md -------------------------------------------------------------------------------- /.changes/3.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.3.0.md -------------------------------------------------------------------------------- /.changes/3.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.4.0.md -------------------------------------------------------------------------------- /.changes/3.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.5.0.md -------------------------------------------------------------------------------- /.changes/3.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.6.0.md -------------------------------------------------------------------------------- /.changes/3.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.7.0.md -------------------------------------------------------------------------------- /.changes/3.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.7.1.md -------------------------------------------------------------------------------- /.changes/3.7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.7.2.md -------------------------------------------------------------------------------- /.changes/3.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.8.0.md -------------------------------------------------------------------------------- /.changes/3.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.9.0.md -------------------------------------------------------------------------------- /.changes/3.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/3.9.1.md -------------------------------------------------------------------------------- /.changes/header.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changes/header.tpl.md -------------------------------------------------------------------------------- /.changes/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.changie.yaml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/features/local_provider_dev/devcontainer-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.devcontainer/features/local_provider_dev/devcontainer-feature.json -------------------------------------------------------------------------------- /.devcontainer/features/local_provider_dev/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.devcontainer/features/local_provider_dev/install.sh -------------------------------------------------------------------------------- /.devcontainer/postCreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.devcontainer/postCreate.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/data_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/ISSUE_TEMPLATE/data_source.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/ISSUE_TEMPLATE/resource.md -------------------------------------------------------------------------------- /.github/codeql/terraform-providers-go/codeql-pack.lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/codeql/terraform-providers-go/codeql-pack.lock.yml -------------------------------------------------------------------------------- /.github/codeql/terraform-providers-go/codeql-pack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/codeql/terraform-providers-go/codeql-pack.yml -------------------------------------------------------------------------------- /.github/codeql/terraform-providers-go/no_panic.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/codeql/terraform-providers-go/no_panic.ql -------------------------------------------------------------------------------- /.github/copilot-commit-message-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/copilot-commit-message-instructions.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/prompts/changie.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/prompts/changie.prompt.md -------------------------------------------------------------------------------- /.github/prompts/codeql.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/prompts/codeql.prompt.md -------------------------------------------------------------------------------- /.github/prompts/codeql2.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/prompts/codeql2.prompt.md -------------------------------------------------------------------------------- /.github/prompts/datasource.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/prompts/datasource.prompt.md -------------------------------------------------------------------------------- /.github/prompts/fix-issue-from-github.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/prompts/fix-issue-from-github.prompt.md -------------------------------------------------------------------------------- /.github/prompts/resource.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/prompts/resource.prompt.md -------------------------------------------------------------------------------- /.github/prompts/testing.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/prompts/testing.prompt.md -------------------------------------------------------------------------------- /.github/workflows/check_changie_comment_on_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/check_changie_comment_on_pr.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/metrics.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/release_prep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/release_prep.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.github/workflows/terraform_provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.github/workflows/terraform_provider.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | -------------------------------------------------------------------------------- /.terraformrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.terraformrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/DEVELOPER.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /common/release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/common/release.go -------------------------------------------------------------------------------- /devdocs/adr/httpmocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/adr/httpmocks.md -------------------------------------------------------------------------------- /devdocs/adr/loosely_typed_data_records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/adr/loosely_typed_data_records.md -------------------------------------------------------------------------------- /devdocs/adr/mitmproxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/adr/mitmproxy.md -------------------------------------------------------------------------------- /devdocs/community_support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/community_support.md -------------------------------------------------------------------------------- /devdocs/feature_request_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/feature_request_guidelines.md -------------------------------------------------------------------------------- /devdocs/observability_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/observability_guidelines.md -------------------------------------------------------------------------------- /devdocs/playbook/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/playbook/resource.md -------------------------------------------------------------------------------- /devdocs/release_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/release_guidelines.md -------------------------------------------------------------------------------- /devdocs/schema_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/schema_guidelines.md -------------------------------------------------------------------------------- /devdocs/security_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/security_guidelines.md -------------------------------------------------------------------------------- /devdocs/testing_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/devdocs/testing_guidelines.md -------------------------------------------------------------------------------- /docs/data-sources/analytics_data_exports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/analytics_data_exports.md -------------------------------------------------------------------------------- /docs/data-sources/billing_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/billing_policies.md -------------------------------------------------------------------------------- /docs/data-sources/billing_policies_environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/billing_policies_environments.md -------------------------------------------------------------------------------- /docs/data-sources/connection_shares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/connection_shares.md -------------------------------------------------------------------------------- /docs/data-sources/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/connections.md -------------------------------------------------------------------------------- /docs/data-sources/connectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/connectors.md -------------------------------------------------------------------------------- /docs/data-sources/currencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/currencies.md -------------------------------------------------------------------------------- /docs/data-sources/data_loss_prevention_policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/data_loss_prevention_policies.md -------------------------------------------------------------------------------- /docs/data-sources/data_records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/data_records.md -------------------------------------------------------------------------------- /docs/data-sources/environment_application_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/environment_application_packages.md -------------------------------------------------------------------------------- /docs/data-sources/environment_powerapps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/environment_powerapps.md -------------------------------------------------------------------------------- /docs/data-sources/environment_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/environment_settings.md -------------------------------------------------------------------------------- /docs/data-sources/environment_templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/environment_templates.md -------------------------------------------------------------------------------- /docs/data-sources/environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/environments.md -------------------------------------------------------------------------------- /docs/data-sources/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/languages.md -------------------------------------------------------------------------------- /docs/data-sources/locations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/locations.md -------------------------------------------------------------------------------- /docs/data-sources/rest_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/rest_query.md -------------------------------------------------------------------------------- /docs/data-sources/security_roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/security_roles.md -------------------------------------------------------------------------------- /docs/data-sources/solution_checker_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/solution_checker_rules.md -------------------------------------------------------------------------------- /docs/data-sources/solutions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/solutions.md -------------------------------------------------------------------------------- /docs/data-sources/tenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/tenant.md -------------------------------------------------------------------------------- /docs/data-sources/tenant_application_packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/tenant_application_packages.md -------------------------------------------------------------------------------- /docs/data-sources/tenant_capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/tenant_capacity.md -------------------------------------------------------------------------------- /docs/data-sources/tenant_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/data-sources/tenant_settings.md -------------------------------------------------------------------------------- /docs/guides/app_registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/app_registration.md -------------------------------------------------------------------------------- /docs/guides/azure_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/azure_cli.md -------------------------------------------------------------------------------- /docs/guides/azure_developer_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/azure_developer_cli.md -------------------------------------------------------------------------------- /docs/guides/client_secret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/client_secret.md -------------------------------------------------------------------------------- /docs/guides/continuous_access_evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/continuous_access_evaluation.md -------------------------------------------------------------------------------- /docs/guides/dynamic_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/dynamic_configuration.md -------------------------------------------------------------------------------- /docs/guides/importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/importing.md -------------------------------------------------------------------------------- /docs/guides/managed_identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/managed_identity.md -------------------------------------------------------------------------------- /docs/guides/nonpublic_clouds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/nonpublic_clouds.md -------------------------------------------------------------------------------- /docs/guides/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/oidc.md -------------------------------------------------------------------------------- /docs/guides/security_considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/guides/security_considerations.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/resources/admin_management_application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/admin_management_application.md -------------------------------------------------------------------------------- /docs/resources/billing_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/billing_policy.md -------------------------------------------------------------------------------- /docs/resources/billing_policy_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/billing_policy_environment.md -------------------------------------------------------------------------------- /docs/resources/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/connection.md -------------------------------------------------------------------------------- /docs/resources/connection_share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/connection_share.md -------------------------------------------------------------------------------- /docs/resources/copilot_studio_application_insights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/copilot_studio_application_insights.md -------------------------------------------------------------------------------- /docs/resources/data_loss_prevention_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/data_loss_prevention_policy.md -------------------------------------------------------------------------------- /docs/resources/data_record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/data_record.md -------------------------------------------------------------------------------- /docs/resources/enterprise_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/enterprise_policy.md -------------------------------------------------------------------------------- /docs/resources/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/environment.md -------------------------------------------------------------------------------- /docs/resources/environment_application_admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/environment_application_admin.md -------------------------------------------------------------------------------- /docs/resources/environment_application_package_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/environment_application_package_install.md -------------------------------------------------------------------------------- /docs/resources/environment_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/environment_group.md -------------------------------------------------------------------------------- /docs/resources/environment_group_rule_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/environment_group_rule_set.md -------------------------------------------------------------------------------- /docs/resources/environment_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/environment_settings.md -------------------------------------------------------------------------------- /docs/resources/environment_wave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/environment_wave.md -------------------------------------------------------------------------------- /docs/resources/managed_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/managed_environment.md -------------------------------------------------------------------------------- /docs/resources/rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/rest.md -------------------------------------------------------------------------------- /docs/resources/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/solution.md -------------------------------------------------------------------------------- /docs/resources/tenant_isolation_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/tenant_isolation_policy.md -------------------------------------------------------------------------------- /docs/resources/tenant_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/tenant_settings.md -------------------------------------------------------------------------------- /docs/resources/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/docs/resources/user.md -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_analytics_data_exports/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_analytics_data_exports/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_analytics_data_exports/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_analytics_data_exports/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_billing_policies/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_billing_policies/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_billing_policies/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_billing_policies/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_billing_policies_environments/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_billing_policies_environments/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_billing_policies_environments/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_billing_policies_environments/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_connection_shares/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_connection_shares/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_connection_shares/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_connection_shares/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_connection_shares/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_connection_shares/variables.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_connections/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_connections/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_connections/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_connections/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_connectors/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_connectors/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_connectors/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_connectors/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_currencies/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_currencies/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_currencies/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_currencies/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_data_loss_prevention_policies/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_data_loss_prevention_policies/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_data_loss_prevention_policies/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_data_loss_prevention_policies/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_data_records/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_data_records/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_data_records/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_data_records/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_application_packages/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_application_packages/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_application_packages/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_application_packages/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_powerapps/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_powerapps/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_powerapps/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_powerapps/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_settings/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_settings/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_settings/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_settings/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_templates/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_templates/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environment_templates/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environment_templates/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environments/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environments/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_environments/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_environments/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_languages/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_languages/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_languages/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_languages/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_locations/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_locations/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_locations/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_locations/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_policies/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_policies/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_policies/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_policies/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_rest_query/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_rest_query/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_rest_query/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_rest_query/output.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_securityroles/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_securityroles/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_securityroles/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_securityroles/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_solution_checker_rules/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_solution_checker_rules/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_solution_checker_rules/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_solution_checker_rules/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_solutions/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_solutions/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_solutions/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_solutions/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_solutions/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_solutions/variables.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant_application_packages/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant_application_packages/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant_application_packages/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant_application_packages/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant_capacity/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant_capacity/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant_capacity/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant_capacity/outputs.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant_settings/data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant_settings/data-source.tf -------------------------------------------------------------------------------- /examples/data-sources/powerplatform_tenant_settings/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/data-sources/powerplatform_tenant_settings/outputs.tf -------------------------------------------------------------------------------- /examples/provider/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/provider/provider.tf -------------------------------------------------------------------------------- /examples/provider/provider_with_azd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/provider/provider_with_azd.tf -------------------------------------------------------------------------------- /examples/provider/provider_with_cae.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/provider/provider_with_cae.tf -------------------------------------------------------------------------------- /examples/provider/provider_with_partner_id.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/provider/provider_with_partner_id.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_admin_management_application/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_admin_management_application/import.sh -------------------------------------------------------------------------------- /examples/resources/powerplatform_admin_management_application/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_admin_management_application/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_billing_policy/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_billing_policy/import.sh -------------------------------------------------------------------------------- /examples/resources/powerplatform_billing_policy/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_billing_policy/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_billing_policy/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_billing_policy/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_billing_policy/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_billing_policy/terraform.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_billing_policy_environment/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_billing_policy_environment/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_billing_policy_environment/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_billing_policy_environment/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_connection/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_connection/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_connection/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_connection/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_connection/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_connection/variables.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_connection_share/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_connection_share/output.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_connection_share/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_connection_share/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_connection_share/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_connection_share/variables.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_copilot_studio_application_insights/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_copilot_studio_application_insights/import.sh -------------------------------------------------------------------------------- /examples/resources/powerplatform_copilot_studio_application_insights/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_copilot_studio_application_insights/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_copilot_studio_application_insights/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_copilot_studio_application_insights/variables.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_loss_prevention_policy/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_loss_prevention_policy/import.sh -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_loss_prevention_policy/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_loss_prevention_policy/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_loss_prevention_policy/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_loss_prevention_policy/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_record/output.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_record/res_application_user/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_record/res_application_user/main.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_record/res_business_unit/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_record/res_business_unit/main.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_record/res_role/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_record/res_role/main.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_record/res_team/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_record/res_team/main.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_data_record/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_data_record/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_enterprise_policy/encryption/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_enterprise_policy/encryption/main.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_enterprise_policy/network_injection/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_enterprise_policy/network_injection/main.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_enterprise_policy/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_enterprise_policy/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_enterprise_policy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_enterprise_policy/variables.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment/import.sh -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_application_admin/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_application_admin/import.sh -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_application_admin/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_application_admin/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_application_packages/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_application_packages/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_application_packages/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_application_packages/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_group/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_group/import.sh -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_group/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_group/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_group_rule_set/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_group_rule_set/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_settings/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_settings/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_settings/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_settings/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_environment_wave/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_environment_wave/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_managed_environment/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_managed_environment/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_managed_environment/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_managed_environment/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_rest/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_rest/output.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_rest/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_rest/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_solution/TerraformTestSolution_Complex_1_1_0_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_solution/TerraformTestSolution_Complex_1_1_0_0.zip -------------------------------------------------------------------------------- /examples/resources/powerplatform_solution/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_solution/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_solution/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_solution/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_tenant_isolation_policy/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_tenant_isolation_policy/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_tenant_settings/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_tenant_settings/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_tenant_settings/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_tenant_settings/resource.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_user/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_user/outputs.tf -------------------------------------------------------------------------------- /examples/resources/powerplatform_user/resource.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/examples/resources/powerplatform_user/resource.tf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/go.sum -------------------------------------------------------------------------------- /internal/api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/api/auth.go -------------------------------------------------------------------------------- /internal/api/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/api/auth_test.go -------------------------------------------------------------------------------- /internal/api/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/api/client.go -------------------------------------------------------------------------------- /internal/api/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/api/client_test.go -------------------------------------------------------------------------------- /internal/api/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/api/lifecycle.go -------------------------------------------------------------------------------- /internal/api/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/api/request.go -------------------------------------------------------------------------------- /internal/api/request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/api/request_test.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/config/config_test.go -------------------------------------------------------------------------------- /internal/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/constants/constants.go -------------------------------------------------------------------------------- /internal/customerrors/provider_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/customerrors/provider_error.go -------------------------------------------------------------------------------- /internal/customerrors/unexpected_http_status_code_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/customerrors/unexpected_http_status_code_error.go -------------------------------------------------------------------------------- /internal/customerrors/url_format_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/customerrors/url_format_error.go -------------------------------------------------------------------------------- /internal/customtypes/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/customtypes/uuid.go -------------------------------------------------------------------------------- /internal/customtypes/uuid_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/customtypes/uuid_type.go -------------------------------------------------------------------------------- /internal/customtypes/uuid_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/customtypes/uuid_value.go -------------------------------------------------------------------------------- /internal/helpers/array/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/array/array.go -------------------------------------------------------------------------------- /internal/helpers/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/cert.go -------------------------------------------------------------------------------- /internal/helpers/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/config.go -------------------------------------------------------------------------------- /internal/helpers/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/config_test.go -------------------------------------------------------------------------------- /internal/helpers/contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/contains.go -------------------------------------------------------------------------------- /internal/helpers/contexts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/contexts.go -------------------------------------------------------------------------------- /internal/helpers/contexts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/contexts_test.go -------------------------------------------------------------------------------- /internal/helpers/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/hash.go -------------------------------------------------------------------------------- /internal/helpers/hash_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/hash_fuzz_test.go -------------------------------------------------------------------------------- /internal/helpers/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/hash_test.go -------------------------------------------------------------------------------- /internal/helpers/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/regex.go -------------------------------------------------------------------------------- /internal/helpers/set_to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/set_to_string.go -------------------------------------------------------------------------------- /internal/helpers/string_to_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/string_to_set.go -------------------------------------------------------------------------------- /internal/helpers/string_to_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/string_to_set_test.go -------------------------------------------------------------------------------- /internal/helpers/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/typeinfo.go -------------------------------------------------------------------------------- /internal/helpers/typeinfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/typeinfo_test.go -------------------------------------------------------------------------------- /internal/helpers/uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/helpers/uri.go -------------------------------------------------------------------------------- /internal/mocks/known_state_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/mocks/known_state_value.go -------------------------------------------------------------------------------- /internal/mocks/mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/mocks/mocks.go -------------------------------------------------------------------------------- /internal/modifiers/force_string_value_unknown_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/force_string_value_unknown_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/require_replace_int_attribute_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/require_replace_int_attribute_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/require_replace_object_to_empty_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/require_replace_object_to_empty_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/requires_replace_string_from_non_empty_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/requires_replace_string_from_non_empty_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/restore_original_value_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/restore_original_value_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/set_bool_value_unknown_if_checksum_change_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/set_bool_value_unknown_if_checksum_change_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/set_string_attribute_unknown_only_if_second_attribute_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/set_string_attribute_unknown_only_if_second_attribute_change.go -------------------------------------------------------------------------------- /internal/modifiers/set_string_value_unknown_if_checksum_change_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/set_string_value_unknown_if_checksum_change_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/sync_attribute_plan_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/sync_attribute_plan_modifier.go -------------------------------------------------------------------------------- /internal/modifiers/use_state_for_unknown_keep_non_null_state_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/modifiers/use_state_for_unknown_keep_non_null_state_modifier.go -------------------------------------------------------------------------------- /internal/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/provider/provider.go -------------------------------------------------------------------------------- /internal/provider/provider_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/provider/provider_test.go -------------------------------------------------------------------------------- /internal/services/admin_management_application/api_admin_management_application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/admin_management_application/api_admin_management_application.go -------------------------------------------------------------------------------- /internal/services/admin_management_application/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/admin_management_application/dto.go -------------------------------------------------------------------------------- /internal/services/admin_management_application/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/admin_management_application/models.go -------------------------------------------------------------------------------- /internal/services/admin_management_application/resource_admin_management_application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/admin_management_application/resource_admin_management_application.go -------------------------------------------------------------------------------- /internal/services/admin_management_application/resource_admin_management_application_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/admin_management_application/resource_admin_management_application_test.go -------------------------------------------------------------------------------- /internal/services/analytics_data_export/api_analytics_data_exports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/api_analytics_data_exports.go -------------------------------------------------------------------------------- /internal/services/analytics_data_export/datasource_analytics_data_exports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/datasource_analytics_data_exports.go -------------------------------------------------------------------------------- /internal/services/analytics_data_export/datasource_analytics_data_exports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/datasource_analytics_data_exports_test.go -------------------------------------------------------------------------------- /internal/services/analytics_data_export/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/dto.go -------------------------------------------------------------------------------- /internal/services/analytics_data_export/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/models.go -------------------------------------------------------------------------------- /internal/services/analytics_data_export/tests/datasource/Validate_Read/get_analytics_data_exports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/tests/datasource/Validate_Read/get_analytics_data_exports.json -------------------------------------------------------------------------------- /internal/services/analytics_data_export/tests/datasource/Validate_Read/get_gateway_cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/tests/datasource/Validate_Read/get_gateway_cluster.json -------------------------------------------------------------------------------- /internal/services/analytics_data_export/tests/datasource/Validate_Read/get_tenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/analytics_data_export/tests/datasource/Validate_Read/get_tenant.json -------------------------------------------------------------------------------- /internal/services/application/api_application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/api_application.go -------------------------------------------------------------------------------- /internal/services/application/datasource_environment_application_packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/datasource_environment_application_packages.go -------------------------------------------------------------------------------- /internal/services/application/datasource_environment_application_packages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/datasource_environment_application_packages_test.go -------------------------------------------------------------------------------- /internal/services/application/datasource_tenant_application_packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/datasource_tenant_application_packages.go -------------------------------------------------------------------------------- /internal/services/application/datasource_tenant_application_packages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/datasource_tenant_application_packages_test.go -------------------------------------------------------------------------------- /internal/services/application/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/dto.go -------------------------------------------------------------------------------- /internal/services/application/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/models.go -------------------------------------------------------------------------------- /internal/services/application/resource_environment_application_admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/resource_environment_application_admin.go -------------------------------------------------------------------------------- /internal/services/application/resource_environment_application_admin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/resource_environment_application_admin_test.go -------------------------------------------------------------------------------- /internal/services/application/resource_environment_application_package_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/resource_environment_application_package_install.go -------------------------------------------------------------------------------- /internal/services/application/resource_environment_application_package_install_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/resource_environment_application_package_install_test.go -------------------------------------------------------------------------------- /internal/services/application/tests/resource/Validate_Install/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/Validate_Install/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/Validate_Install/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/Validate_Install/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/Validate_Install/get_operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/Validate_Install/get_operation.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/Validate_No_Dataverse/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/Validate_No_Dataverse/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/Validate_No_Dataverse/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/Validate_No_Dataverse/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/Validate_No_Dataverse/get_operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/Validate_No_Dataverse/get_operation.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/application_admin/Create/get_applicationusers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/application_admin/Create/get_applicationusers.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/application_admin/Create/get_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/application_admin/Create/get_environment.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/application_admin/Delete/get_applicationusers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/application_admin/Delete/get_applicationusers.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/application_admin/Delete/get_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/application_admin/Delete/get_environment.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/application_admin/Import/get_applicationusers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/application_admin/Import/get_applicationusers.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/application_admin/Import/get_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/application_admin/Import/get_environment.json -------------------------------------------------------------------------------- /internal/services/application/tests/resource/application_admin/Read_NotFound/get_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/application/tests/resource/application_admin/Read_NotFound/get_environment.json -------------------------------------------------------------------------------- /internal/services/authorization/api_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/api_user.go -------------------------------------------------------------------------------- /internal/services/authorization/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/constants.go -------------------------------------------------------------------------------- /internal/services/authorization/datasource_securityroles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/datasource_securityroles.go -------------------------------------------------------------------------------- /internal/services/authorization/datasource_securityroles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/datasource_securityroles_test.go -------------------------------------------------------------------------------- /internal/services/authorization/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/dto.go -------------------------------------------------------------------------------- /internal/services/authorization/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/models.go -------------------------------------------------------------------------------- /internal/services/authorization/resource_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/resource_user.go -------------------------------------------------------------------------------- /internal/services/authorization/resource_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/resource_user_test.go -------------------------------------------------------------------------------- /internal/services/authorization/tests/datasource/security_roles/Validate_Read/get_security_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/tests/datasource/security_roles/Validate_Read/get_security_roles.json -------------------------------------------------------------------------------- /internal/services/authorization/tests/resource/user/Validate_Create/get_systemusers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/tests/resource/user/Validate_Create/get_systemusers.json -------------------------------------------------------------------------------- /internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_1.json -------------------------------------------------------------------------------- /internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_2.json -------------------------------------------------------------------------------- /internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_3.json -------------------------------------------------------------------------------- /internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/tests/resource/user/Validate_Create_And_Update/get_systemusers_4.json -------------------------------------------------------------------------------- /internal/services/authorization/tests/resource/user/Validate_No_Dataverse/get_systemusers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/authorization/tests/resource/user/Validate_No_Dataverse/get_systemusers.json -------------------------------------------------------------------------------- /internal/services/authorization/tests/resource/user/Validate_Update_Env/role_assignments_00000000-0000-0000-0000-000000000001_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": [] 3 | } 4 | -------------------------------------------------------------------------------- /internal/services/capacity/api_capacity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/capacity/api_capacity.go -------------------------------------------------------------------------------- /internal/services/capacity/datasource_tenant_capacity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/capacity/datasource_tenant_capacity.go -------------------------------------------------------------------------------- /internal/services/capacity/datasource_tenant_capacity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/capacity/datasource_tenant_capacity_test.go -------------------------------------------------------------------------------- /internal/services/capacity/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/capacity/dto.go -------------------------------------------------------------------------------- /internal/services/capacity/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/capacity/models.go -------------------------------------------------------------------------------- /internal/services/capacity/tests/datasource/Validate_Read/get_tenant_capacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/capacity/tests/datasource/Validate_Read/get_tenant_capacity.json -------------------------------------------------------------------------------- /internal/services/connection/api_connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/api_connection.go -------------------------------------------------------------------------------- /internal/services/connection/datasource_connection_shares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/datasource_connection_shares.go -------------------------------------------------------------------------------- /internal/services/connection/datasource_connection_shares_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/datasource_connection_shares_test.go -------------------------------------------------------------------------------- /internal/services/connection/datasource_connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/datasource_connections.go -------------------------------------------------------------------------------- /internal/services/connection/datasource_connections_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/datasource_connections_test.go -------------------------------------------------------------------------------- /internal/services/connection/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/dto.go -------------------------------------------------------------------------------- /internal/services/connection/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/models.go -------------------------------------------------------------------------------- /internal/services/connection/resource_connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/resource_connection.go -------------------------------------------------------------------------------- /internal/services/connection/resource_connection_share.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/resource_connection_share.go -------------------------------------------------------------------------------- /internal/services/connection/resource_connection_share_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/resource_connection_share_test.go -------------------------------------------------------------------------------- /internal/services/connection/resource_connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/resource_connection_test.go -------------------------------------------------------------------------------- /internal/services/connection/tests/datasource/connections/Validate_Read/get_connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/tests/datasource/connections/Validate_Read/get_connections.json -------------------------------------------------------------------------------- /internal/services/connection/tests/resource/connections/Validate_Create/put_connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connection/tests/resource/connections/Validate_Create/put_connection.json -------------------------------------------------------------------------------- /internal/services/connectors/api_connectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/api_connectors.go -------------------------------------------------------------------------------- /internal/services/connectors/datasource_connectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/datasource_connectors.go -------------------------------------------------------------------------------- /internal/services/connectors/datasource_connectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/datasource_connectors_test.go -------------------------------------------------------------------------------- /internal/services/connectors/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/dto.go -------------------------------------------------------------------------------- /internal/services/connectors/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/models.go -------------------------------------------------------------------------------- /internal/services/connectors/tests/Test_Files/TerraformTestCustomConnector_1_0_0_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/tests/Test_Files/TerraformTestCustomConnector_1_0_0_1.zip -------------------------------------------------------------------------------- /internal/services/connectors/tests/Validate_Read/get_apis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/tests/Validate_Read/get_apis.json -------------------------------------------------------------------------------- /internal/services/connectors/tests/Validate_Read/get_unblockable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/tests/Validate_Read/get_unblockable.json -------------------------------------------------------------------------------- /internal/services/connectors/tests/Validate_Read/get_virtual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/connectors/tests/Validate_Read/get_virtual.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/api_copilot_studio_application_insights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/api_copilot_studio_application_insights.go -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/dto.go -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/models.go -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/resource_copilot_studio_application_insights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/resource_copilot_studio_application_insights.go -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Test_Files/testagent_1_0_0_1_managed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Test_Files/testagent_1_0_0_1_managed.zip -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Create/app_insights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Create/app_insights.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Create/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Create/get_environments.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Update/get_app_insights_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Update/get_app_insights_1.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Update/get_app_insights_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Update/get_app_insights_2.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Update/get_app_insights_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Update/get_app_insights_3.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Update/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Update/get_environments.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Update/put_app_insights_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Update/put_app_insights_1.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Update/put_app_insights_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Update/put_app_insights_2.json -------------------------------------------------------------------------------- /internal/services/copilot_studio_application_insights/tests/Validate_Update/put_app_insights_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/copilot_studio_application_insights/tests/Validate_Update/put_app_insights_3.json -------------------------------------------------------------------------------- /internal/services/currencies/api_currencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/currencies/api_currencies.go -------------------------------------------------------------------------------- /internal/services/currencies/datasource_currencies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/currencies/datasource_currencies.go -------------------------------------------------------------------------------- /internal/services/currencies/datasource_currencies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/currencies/datasource_currencies_test.go -------------------------------------------------------------------------------- /internal/services/currencies/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/currencies/dto.go -------------------------------------------------------------------------------- /internal/services/currencies/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/currencies/models.go -------------------------------------------------------------------------------- /internal/services/currencies/tests/datasource/Validate_Read/get_currencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/currencies/tests/datasource/Validate_Read/get_currencies.json -------------------------------------------------------------------------------- /internal/services/data_record/api_data_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/api_data_record.go -------------------------------------------------------------------------------- /internal/services/data_record/datasource_data_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/datasource_data_record.go -------------------------------------------------------------------------------- /internal/services/data_record/datasource_data_record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/datasource_data_record_test.go -------------------------------------------------------------------------------- /internal/services/data_record/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/dto.go -------------------------------------------------------------------------------- /internal/services/data_record/dynamic_columns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/dynamic_columns.go -------------------------------------------------------------------------------- /internal/services/data_record/dynamic_columns_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/dynamic_columns_validator.go -------------------------------------------------------------------------------- /internal/services/data_record/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/models.go -------------------------------------------------------------------------------- /internal/services/data_record/odata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/odata.go -------------------------------------------------------------------------------- /internal/services/data_record/resource_data_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/resource_data_record.go -------------------------------------------------------------------------------- /internal/services/data_record/resource_data_record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/resource_data_record_test.go -------------------------------------------------------------------------------- /internal/services/data_record/tests/datasource/get_entitydefinition_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/tests/datasource/get_entitydefinition_account.json -------------------------------------------------------------------------------- /internal/services/data_record/tests/datasource/get_entitydefinition_contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/tests/datasource/get_entitydefinition_contact.json -------------------------------------------------------------------------------- /internal/services/data_record/tests/resource/Validate_Create/get_entitydefinition_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/tests/resource/Validate_Create/get_entitydefinition_account.json -------------------------------------------------------------------------------- /internal/services/data_record/tests/resource/Validate_Create/get_entitydefinition_contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/tests/resource/Validate_Create/get_entitydefinition_contact.json -------------------------------------------------------------------------------- /internal/services/data_record/tests/resource/Validate_Delete/get_entitydefinition_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/tests/resource/Validate_Delete/get_entitydefinition_account.json -------------------------------------------------------------------------------- /internal/services/data_record/tests/resource/Validate_Delete/get_entitydefinition_contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/tests/resource/Validate_Delete/get_entitydefinition_contact.json -------------------------------------------------------------------------------- /internal/services/data_record/tests/resource/Validate_Update/get_entitydefinition_contact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/data_record/tests/resource/Validate_Update/get_entitydefinition_contact.json -------------------------------------------------------------------------------- /internal/services/dlp_policy/api_dlp_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/api_dlp_policy.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/datasource_dlp_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/datasource_dlp_policy.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/datasource_dlp_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/datasource_dlp_policy_test.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/dto.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/helpers.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/models.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/resource_dlp_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/resource_dlp_policy.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/resource_dlp_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/resource_dlp_policy_test.go -------------------------------------------------------------------------------- /internal/services/dlp_policy/tests/datasource/Validate_Read/get_policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/dlp_policy/tests/datasource/Validate_Read/get_policies.json -------------------------------------------------------------------------------- /internal/services/enterprise_policy/api_enterprise_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/enterprise_policy/api_enterprise_policy.go -------------------------------------------------------------------------------- /internal/services/enterprise_policy/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/enterprise_policy/dto.go -------------------------------------------------------------------------------- /internal/services/enterprise_policy/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/enterprise_policy/models.go -------------------------------------------------------------------------------- /internal/services/enterprise_policy/resource_enterprise_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/enterprise_policy/resource_enterprise_policy.go -------------------------------------------------------------------------------- /internal/services/enterprise_policy/resource_enterprise_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/enterprise_policy/resource_enterprise_policy_test.go -------------------------------------------------------------------------------- /internal/services/enterprise_policy/tests/Validate_Create/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/enterprise_policy/tests/Validate_Create/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/enterprise_policy/tests/Validate_Create/get_operation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/enterprise_policy/tests/Validate_Create/get_operation.json -------------------------------------------------------------------------------- /internal/services/environment/api_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/api_environment.go -------------------------------------------------------------------------------- /internal/services/environment/datasource_environments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/datasource_environments.go -------------------------------------------------------------------------------- /internal/services/environment/datasource_environments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/datasource_environments_test.go -------------------------------------------------------------------------------- /internal/services/environment/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/dto.go -------------------------------------------------------------------------------- /internal/services/environment/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/models.go -------------------------------------------------------------------------------- /internal/services/environment/resource_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/resource_environment.go -------------------------------------------------------------------------------- /internal/services/environment/resource_environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/resource_environment_test.go -------------------------------------------------------------------------------- /internal/services/environment/tests/datasource/Validate_Read/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/datasource/Validate_Read/get_environments.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Create_Environment_And_Add_Env_Group/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Create_Environment_And_Add_Env_Group/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Create_Environment_With_Env_Group/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Create_Environment_With_Env_Group/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Attribute_Validators/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Attribute_Validators/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Attribute_Validators/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Attribute_Validators/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_0.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_1.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_2.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_And_Update/get_environment_3.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_And_Update/get_environments_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_And_Update/get_environments_1.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_And_Update/get_lifecycle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_And_Update/get_lifecycle_1.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_And_Update/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_And_Update/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_Dev_Env/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_Dev_Env/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_Dev_Env/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_Dev_Env/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_Early_Release_Cycle/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_Early_Release_Cycle/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_No_Dataverse/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_No_Dataverse/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_No_Dataverse/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_No_Dataverse/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_With_Billing_Policy/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_With_Billing_Policy/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_With_D365_Template/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_With_D365_Template/get_environments.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Create_With_D365_Template/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Create_With_D365_Template/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Do_Not_Retry_On_NoCapacity/post_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Do_Not_Retry_On_NoCapacity/post_environment.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Locations_And_Azure_Regions/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Locations_And_Azure_Regions/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Retry_LidecycleOperation/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Retry_LidecycleOperation/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_0.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_1.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_2.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_3.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_4.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_5.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_environment_6.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_Environment_Type/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment/tests/resource/Validate_Update_With_Billing_Policy/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment/tests/resource/Validate_Update_With_Billing_Policy/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/api_environment_group_rule_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/api_environment_group_rule_set.go -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/constants.go -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/dto.go -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/models.go -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/resource_environment_group_rule_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/resource_environment_group_rule_set.go -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/resource_environment_group_rule_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/resource_environment_group_rule_set_test.go -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Create/get_rule_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Create/get_rule_set.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Create/post_rule_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Create/post_rule_set.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_0.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_1.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_2.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_3.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Update/get_rule_set_4.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Update/post_rule_set_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Update/post_rule_set_0.json -------------------------------------------------------------------------------- /internal/services/environment_group_rule_set/tests/Validate_Update/put_rule_set_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_group_rule_set/tests/Validate_Update/put_rule_set_0.json -------------------------------------------------------------------------------- /internal/services/environment_groups/api_environment_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_groups/api_environment_group.go -------------------------------------------------------------------------------- /internal/services/environment_groups/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_groups/dto.go -------------------------------------------------------------------------------- /internal/services/environment_groups/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_groups/models.go -------------------------------------------------------------------------------- /internal/services/environment_groups/resource_environment_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_groups/resource_environment_group.go -------------------------------------------------------------------------------- /internal/services/environment_groups/resource_environment_group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_groups/resource_environment_group_test.go -------------------------------------------------------------------------------- /internal/services/environment_groups/tests/resources/get_environment_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_groups/tests/resources/get_environment_group.json -------------------------------------------------------------------------------- /internal/services/environment_settings/api_environment_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/api_environment_settings.go -------------------------------------------------------------------------------- /internal/services/environment_settings/datasource_environment_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/datasource_environment_settings.go -------------------------------------------------------------------------------- /internal/services/environment_settings/datasource_environment_settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/datasource_environment_settings_test.go -------------------------------------------------------------------------------- /internal/services/environment_settings/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/dto.go -------------------------------------------------------------------------------- /internal/services/environment_settings/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/models.go -------------------------------------------------------------------------------- /internal/services/environment_settings/resource_environment_settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/resource_environment_settings_test.go -------------------------------------------------------------------------------- /internal/services/environment_settings/resources_environment_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/resources_environment_settings.go -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/datasource/Validate_No_Dataverse/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/datasource/Validate_No_Dataverse/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/datasource/Validate_No_Dataverse/organisations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/datasource/Validate_No_Dataverse/organisations.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/datasource/Validate_Read/get_retrievesettinglist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/datasource/Validate_Read/get_retrievesettinglist.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/datasource/Validate_Read/organisations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/datasource/Validate_Read/organisations.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/datasource/organisations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/datasource/organisations.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_No_Dataverse/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_No_Dataverse/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Read/get_organisations_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Read/get_organisations_1.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Read/get_organisations_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Read/get_organisations_2.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Read/get_organisations_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Read/get_organisations_3.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Read/get_retrievesettinglist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Read/get_retrievesettinglist.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_1.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_2.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_3.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_4.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_5.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/Validate_Update/get_organisations_6.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/get_organisations_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/get_organisations_1.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/get_organisations_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/get_organisations_2.json -------------------------------------------------------------------------------- /internal/services/environment_settings/tests/resources/get_organisations_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_settings/tests/resources/get_organisations_3.json -------------------------------------------------------------------------------- /internal/services/environment_templates/api_environment_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_templates/api_environment_templates.go -------------------------------------------------------------------------------- /internal/services/environment_templates/datasource_environment_templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_templates/datasource_environment_templates.go -------------------------------------------------------------------------------- /internal/services/environment_templates/datasource_environment_templates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_templates/datasource_environment_templates_test.go -------------------------------------------------------------------------------- /internal/services/environment_templates/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_templates/dto.go -------------------------------------------------------------------------------- /internal/services/environment_templates/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_templates/models.go -------------------------------------------------------------------------------- /internal/services/environment_wave/api_environment_wave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_wave/api_environment_wave.go -------------------------------------------------------------------------------- /internal/services/environment_wave/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_wave/models.go -------------------------------------------------------------------------------- /internal/services/environment_wave/resource_environment_wave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_wave/resource_environment_wave.go -------------------------------------------------------------------------------- /internal/services/environment_wave/resource_environment_wave_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/environment_wave/resource_environment_wave_test.go -------------------------------------------------------------------------------- /internal/services/languages/api_languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/languages/api_languages.go -------------------------------------------------------------------------------- /internal/services/languages/datasource_languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/languages/datasource_languages.go -------------------------------------------------------------------------------- /internal/services/languages/datasource_languages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/languages/datasource_languages_test.go -------------------------------------------------------------------------------- /internal/services/languages/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/languages/dto.go -------------------------------------------------------------------------------- /internal/services/languages/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/languages/models.go -------------------------------------------------------------------------------- /internal/services/languages/tests/datasource/Validate_Read/get_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/languages/tests/datasource/Validate_Read/get_languages.json -------------------------------------------------------------------------------- /internal/services/licensing/api_licensing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/api_licensing.go -------------------------------------------------------------------------------- /internal/services/licensing/datasource_billing_policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/datasource_billing_policies.go -------------------------------------------------------------------------------- /internal/services/licensing/datasource_billing_policies_environments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/datasource_billing_policies_environments.go -------------------------------------------------------------------------------- /internal/services/licensing/datasource_billing_policies_environments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/datasource_billing_policies_environments_test.go -------------------------------------------------------------------------------- /internal/services/licensing/datasource_billing_policies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/datasource_billing_policies_test.go -------------------------------------------------------------------------------- /internal/services/licensing/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/dto.go -------------------------------------------------------------------------------- /internal/services/licensing/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/models.go -------------------------------------------------------------------------------- /internal/services/licensing/resource_billing_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/resource_billing_policy.go -------------------------------------------------------------------------------- /internal/services/licensing/resource_billing_policy_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/resource_billing_policy_environment.go -------------------------------------------------------------------------------- /internal/services/licensing/resource_billing_policy_environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/resource_billing_policy_environment_test.go -------------------------------------------------------------------------------- /internal/services/licensing/resource_billing_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/resource_billing_policy_test.go -------------------------------------------------------------------------------- /internal/services/licensing/test/datasource/environments/get_environments_for_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/datasource/environments/get_environments_for_policy.json -------------------------------------------------------------------------------- /internal/services/licensing/test/datasource/policies/get_billing_policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/datasource/policies/get_billing_policies.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/environments/Validate_Update/get_environments_for_policy_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": [] 3 | } 4 | -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Create/post_billing_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Create/post_billing_policy.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_1.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_2.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_3.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_4.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Update/get_billing_policy_5.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Update/post_billing_policy_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Update/post_billing_policy_1.json -------------------------------------------------------------------------------- /internal/services/licensing/test/resource/policies/Validate_Update/put_billing_policy_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/licensing/test/resource/policies/Validate_Update/put_billing_policy_1.json -------------------------------------------------------------------------------- /internal/services/locations/api_locations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/locations/api_locations.go -------------------------------------------------------------------------------- /internal/services/locations/datasource_locations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/locations/datasource_locations.go -------------------------------------------------------------------------------- /internal/services/locations/datasource_locations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/locations/datasource_locations_test.go -------------------------------------------------------------------------------- /internal/services/locations/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/locations/dto.go -------------------------------------------------------------------------------- /internal/services/locations/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/locations/models.go -------------------------------------------------------------------------------- /internal/services/locations/tests/datasource/Validate_Read/get_locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/locations/tests/datasource/Validate_Read/get_locations.json -------------------------------------------------------------------------------- /internal/services/managed_environment/api_managed_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/api_managed_environment.go -------------------------------------------------------------------------------- /internal/services/managed_environment/md_solution_checker_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/md_solution_checker_rules.go -------------------------------------------------------------------------------- /internal/services/managed_environment/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/models.go -------------------------------------------------------------------------------- /internal/services/managed_environment/resource_managed_environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/resource_managed_environment.go -------------------------------------------------------------------------------- /internal/services/managed_environment/resource_managed_environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/resource_managed_environment_test.go -------------------------------------------------------------------------------- /internal/services/managed_environment/tests/datasource/Validate_Read/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/tests/datasource/Validate_Read/get_environments.json -------------------------------------------------------------------------------- /internal/services/managed_environment/tests/get_rulesset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/tests/get_rulesset.json -------------------------------------------------------------------------------- /internal/services/managed_environment/tests/resource/Validate_Create_And_Update/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/managed_environment/tests/resource/Validate_Create_And_Update/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/powerapps/api_powerapps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/api_powerapps.go -------------------------------------------------------------------------------- /internal/services/powerapps/datasource_environment_powerapps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/datasource_environment_powerapps.go -------------------------------------------------------------------------------- /internal/services/powerapps/datasource_environment_powerapps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/datasource_environment_powerapps_test.go -------------------------------------------------------------------------------- /internal/services/powerapps/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/dto.go -------------------------------------------------------------------------------- /internal/services/powerapps/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/models.go -------------------------------------------------------------------------------- /internal/services/powerapps/tests/Validate_Read/get_apps_00000000-0000-0000-0000-000000000001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/tests/Validate_Read/get_apps_00000000-0000-0000-0000-000000000001.json -------------------------------------------------------------------------------- /internal/services/powerapps/tests/Validate_Read/get_apps_00000000-0000-0000-0000-000000000002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/tests/Validate_Read/get_apps_00000000-0000-0000-0000-000000000002.json -------------------------------------------------------------------------------- /internal/services/powerapps/tests/Validate_Read/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/powerapps/tests/Validate_Read/get_environments.json -------------------------------------------------------------------------------- /internal/services/rest/api_rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/api_rest.go -------------------------------------------------------------------------------- /internal/services/rest/datasource_rest_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/datasource_rest_query.go -------------------------------------------------------------------------------- /internal/services/rest/datasource_rest_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/datasource_rest_query_test.go -------------------------------------------------------------------------------- /internal/services/rest/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/models.go -------------------------------------------------------------------------------- /internal/services/rest/resource_rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/resource_rest.go -------------------------------------------------------------------------------- /internal/services/rest/resource_rest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/resource_rest_test.go -------------------------------------------------------------------------------- /internal/services/rest/tests/datasource/Web_Apis_WhoAmI/get_whoami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/tests/datasource/Web_Apis_WhoAmI/get_whoami.json -------------------------------------------------------------------------------- /internal/services/rest/tests/resource/Web_Api_Validate_Create/post_account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/rest/tests/resource/Web_Api_Validate_Create/post_account.json -------------------------------------------------------------------------------- /internal/services/solution/api_solution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/api_solution.go -------------------------------------------------------------------------------- /internal/services/solution/datasource_solutions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/datasource_solutions.go -------------------------------------------------------------------------------- /internal/services/solution/datasource_solutions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/datasource_solutions_test.go -------------------------------------------------------------------------------- /internal/services/solution/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/dto.go -------------------------------------------------------------------------------- /internal/services/solution/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/models.go -------------------------------------------------------------------------------- /internal/services/solution/resource_solution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/resource_solution.go -------------------------------------------------------------------------------- /internal/services/solution/resource_solution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/resource_solution_test.go -------------------------------------------------------------------------------- /internal/services/solution/tests/datasource/Validate_No_Dataverse/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/datasource/Validate_No_Dataverse/get_environments.json -------------------------------------------------------------------------------- /internal/services/solution/tests/datasource/Validate_No_Dataverse/get_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/datasource/Validate_No_Dataverse/get_solution.json -------------------------------------------------------------------------------- /internal/services/solution/tests/datasource/Validate_Read/get_environments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/datasource/Validate_Read/get_environments.json -------------------------------------------------------------------------------- /internal/services/solution/tests/datasource/Validate_Read/get_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/datasource/Validate_Read/get_solution.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Test_Files/TerraformTestSolution_Complex_1_1_0_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Test_Files/TerraformTestSolution_Complex_1_1_0_0.zip -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_And_Force_Recreate/get_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_And_Force_Recreate/get_solution.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_async_operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_async_operations.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_lifecycle_delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_lifecycle_delete.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Dataverse/get_solution.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Dataverse/post_stage_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Dataverse/post_stage_solution.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Settings_File/get_lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Settings_File/get_lifecycle.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Settings_File/get_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Settings_File/get_solution.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_No_Settings_File/post_stage_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_No_Settings_File/post_stage_solution.json -------------------------------------------------------------------------------- /internal/services/solution/tests/resource/Validate_Create_With_Settings_File/get_solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution/tests/resource/Validate_Create_With_Settings_File/get_solution.json -------------------------------------------------------------------------------- /internal/services/solution_checker_rules/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution_checker_rules/client.go -------------------------------------------------------------------------------- /internal/services/solution_checker_rules/datasource_solution_checker_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution_checker_rules/datasource_solution_checker_rules.go -------------------------------------------------------------------------------- /internal/services/solution_checker_rules/datasource_solution_checker_rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution_checker_rules/datasource_solution_checker_rules_test.go -------------------------------------------------------------------------------- /internal/services/solution_checker_rules/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution_checker_rules/models.go -------------------------------------------------------------------------------- /internal/services/solution_checker_rules/tests/datasource/Validate_Read/get_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution_checker_rules/tests/datasource/Validate_Read/get_environment.json -------------------------------------------------------------------------------- /internal/services/solution_checker_rules/tests/datasource/Validate_Read/get_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/solution_checker_rules/tests/datasource/Validate_Read/get_rules.json -------------------------------------------------------------------------------- /internal/services/tenant/api_tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant/api_tenant.go -------------------------------------------------------------------------------- /internal/services/tenant/datasource_tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant/datasource_tenant.go -------------------------------------------------------------------------------- /internal/services/tenant/datasource_tenant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant/datasource_tenant_test.go -------------------------------------------------------------------------------- /internal/services/tenant/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant/dto.go -------------------------------------------------------------------------------- /internal/services/tenant/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant/models.go -------------------------------------------------------------------------------- /internal/services/tenant/tests/datasource/Validate_Read/get_tenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant/tests/datasource/Validate_Read/get_tenant.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/api_tenant_isolation_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/api_tenant_isolation_policy.go -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/dto.go -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/models.go -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/resource_tenant_isolation_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/resource_tenant_isolation_policy.go -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/resource_tenant_isolation_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/resource_tenant_isolation_policy_test.go -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Create/policy_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Create/policy_response.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Create/response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Create/response.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Create_Error/error_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Create_Error/error_response.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Delete/empty_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Delete/empty_policy.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Delete/initial_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Delete/initial_policy.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Delete/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Delete/policy.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Update/initial_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Update/initial_policy.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Update/initial_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Update/initial_state.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Update/updated_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Update/updated_policy.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/Validate_Update/updated_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/Validate_Update/updated_state.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/empty_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/empty_policy.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/get_empty_policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/get_empty_policy.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/get_tenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/get_tenant.json -------------------------------------------------------------------------------- /internal/services/tenant_isolation_policy/tests/resource/tenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_isolation_policy/tests/resource/tenant.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/api_tenant_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/api_tenant_settings.go -------------------------------------------------------------------------------- /internal/services/tenant_settings/datasource_tenant_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/datasource_tenant_settings.go -------------------------------------------------------------------------------- /internal/services/tenant_settings/datasource_tenant_settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/datasource_tenant_settings_test.go -------------------------------------------------------------------------------- /internal/services/tenant_settings/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/dto.go -------------------------------------------------------------------------------- /internal/services/tenant_settings/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/models.go -------------------------------------------------------------------------------- /internal/services/tenant_settings/resource_tenant_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/resource_tenant_settings.go -------------------------------------------------------------------------------- /internal/services/tenant_settings/resource_tenant_settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/resource_tenant_settings_test.go -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/datasource/post_list_tenant_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/datasource/post_list_tenant_settings.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/resources/Validate_Create/get_tenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/resources/Validate_Create/get_tenant.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/resources/Validate_Create/post_update_tenant_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/resources/Validate_Create/post_update_tenant_settings.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/resources/Validate_Update/get_tenant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/resources/Validate_Update/get_tenant.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_1.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_2.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_3.json -------------------------------------------------------------------------------- /internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/services/tenant_settings/tests/resources/Validate_Update/post_list_tenant_settings_4.json -------------------------------------------------------------------------------- /internal/validators/make_field_required_when_other_field_does_not_have_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/validators/make_field_required_when_other_field_does_not_have_value.go -------------------------------------------------------------------------------- /internal/validators/make_field_required_when_other_field_does_not_have_value_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/validators/make_field_required_when_other_field_does_not_have_value_validator.go -------------------------------------------------------------------------------- /internal/validators/other_field_required_when_value_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/validators/other_field_required_when_value_of.go -------------------------------------------------------------------------------- /internal/validators/other_field_required_when_value_of_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/internal/validators/other_field_required_when_value_of_validator.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/main.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/makefile -------------------------------------------------------------------------------- /scripts/user_story_prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/scripts/user_story_prompt.sh -------------------------------------------------------------------------------- /templates/guides/app_registration.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/app_registration.md.tmpl -------------------------------------------------------------------------------- /templates/guides/azure_cli.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/azure_cli.md.tmpl -------------------------------------------------------------------------------- /templates/guides/azure_developer_cli.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/azure_developer_cli.md.tmpl -------------------------------------------------------------------------------- /templates/guides/client_secret.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/client_secret.md.tmpl -------------------------------------------------------------------------------- /templates/guides/continuous_access_evaluation.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/continuous_access_evaluation.md.tmpl -------------------------------------------------------------------------------- /templates/guides/dynamic_configuration.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/dynamic_configuration.md.tmpl -------------------------------------------------------------------------------- /templates/guides/importing.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/importing.md.tmpl -------------------------------------------------------------------------------- /templates/guides/managed_identity.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/managed_identity.md.tmpl -------------------------------------------------------------------------------- /templates/guides/nonpublic_clouds.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/nonpublic_clouds.md.tmpl -------------------------------------------------------------------------------- /templates/guides/oidc.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/oidc.md.tmpl -------------------------------------------------------------------------------- /templates/guides/security_considerations.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/guides/security_considerations.md.tmpl -------------------------------------------------------------------------------- /templates/index.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/index.md.tmpl -------------------------------------------------------------------------------- /templates/resources/data_record.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/resources/data_record.md.tmpl -------------------------------------------------------------------------------- /templates/resources/environment_application_package_install.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/templates/resources/environment_application_package_install.md.tmpl -------------------------------------------------------------------------------- /terraform-registry-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/terraform-registry-manifest.json -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/terraform-provider-power-platform/HEAD/tools.go --------------------------------------------------------------------------------