Skip to content

Commit

Permalink
CodeGen from PR 12502 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Azure Synapse GA API Version (Azure#12502)

* Base commit - Copied 2019-06-01-preview api version to stable version 2020-12-01

* GA API Version changes.

* updated response property to readOnly and fixed example file.

* Fixed spell check error.

* Fixed review comments.

* Fixed review comment.

* Fixed review comments.

* Fixed review comments.

* Fixed lint errors.

* Fixed go readme. file.

* Fixed review comments and added JEDI requirement swagger.

Co-authored-by: Amogh Natu <[email protected]>
  • Loading branch information
SDKAuto and Amogh Natu committed Jan 23, 2021
1 parent 7477eac commit 0974c85
Show file tree
Hide file tree
Showing 14 changed files with 1,588 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@
from .operations import SqlPoolDataWarehouseUserActivitiesOperations
from .operations import SqlPoolRestorePointsOperations
from .operations import SqlPoolReplicationLinksOperations
from .operations import SqlPoolMaintenanceWindowsOperations
from .operations import SqlPoolMaintenanceWindowOptionsOperations
from .operations import SqlPoolTransparentDataEncryptionsOperations
from .operations import SqlPoolBlobAuditingPoliciesOperations
from .operations import SqlPoolOperations
from .operations import SqlPoolUsagesOperations
from .operations import SqlPoolSensitivityLabelsOperations
from .operations import SqlPoolRecommendedSensitivityLabelsOperations
from .operations import SqlPoolSchemasOperations
from .operations import SqlPoolTablesOperations
from .operations import SqlPoolTableColumnsOperations
Expand Down Expand Up @@ -57,6 +60,7 @@
from .operations import IntegrationRuntimeMonitoringDataOperations
from .operations import IntegrationRuntimeStatusOperations
from .operations import PrivateLinkResourcesOperations
from .operations import PrivateLinkHubPrivateLinkResourcesOperations
from .operations import PrivateEndpointConnectionsOperations
from .operations import PrivateLinkHubsOperations
from .operations import PrivateEndpointConnectionsPrivateLinkHubOperations
Expand Down Expand Up @@ -96,6 +100,10 @@ class SynapseManagementClient(SDKClient):
:vartype sql_pool_restore_points: azure.mgmt.synapse.operations.SqlPoolRestorePointsOperations
:ivar sql_pool_replication_links: SqlPoolReplicationLinks operations
:vartype sql_pool_replication_links: azure.mgmt.synapse.operations.SqlPoolReplicationLinksOperations
:ivar sql_pool_maintenance_windows: SqlPoolMaintenanceWindows operations
:vartype sql_pool_maintenance_windows: azure.mgmt.synapse.operations.SqlPoolMaintenanceWindowsOperations
:ivar sql_pool_maintenance_window_options: SqlPoolMaintenanceWindowOptions operations
:vartype sql_pool_maintenance_window_options: azure.mgmt.synapse.operations.SqlPoolMaintenanceWindowOptionsOperations
:ivar sql_pool_transparent_data_encryptions: SqlPoolTransparentDataEncryptions operations
:vartype sql_pool_transparent_data_encryptions: azure.mgmt.synapse.operations.SqlPoolTransparentDataEncryptionsOperations
:ivar sql_pool_blob_auditing_policies: SqlPoolBlobAuditingPolicies operations
Expand All @@ -106,6 +114,8 @@ class SynapseManagementClient(SDKClient):
:vartype sql_pool_usages: azure.mgmt.synapse.operations.SqlPoolUsagesOperations
:ivar sql_pool_sensitivity_labels: SqlPoolSensitivityLabels operations
:vartype sql_pool_sensitivity_labels: azure.mgmt.synapse.operations.SqlPoolSensitivityLabelsOperations
:ivar sql_pool_recommended_sensitivity_labels: SqlPoolRecommendedSensitivityLabels operations
:vartype sql_pool_recommended_sensitivity_labels: azure.mgmt.synapse.operations.SqlPoolRecommendedSensitivityLabelsOperations
:ivar sql_pool_schemas: SqlPoolSchemas operations
:vartype sql_pool_schemas: azure.mgmt.synapse.operations.SqlPoolSchemasOperations
:ivar sql_pool_tables: SqlPoolTables operations
Expand Down Expand Up @@ -164,6 +174,8 @@ class SynapseManagementClient(SDKClient):
:vartype integration_runtime_status: azure.mgmt.synapse.operations.IntegrationRuntimeStatusOperations
:ivar private_link_resources: PrivateLinkResources operations
:vartype private_link_resources: azure.mgmt.synapse.operations.PrivateLinkResourcesOperations
:ivar private_link_hub_private_link_resources: PrivateLinkHubPrivateLinkResources operations
:vartype private_link_hub_private_link_resources: azure.mgmt.synapse.operations.PrivateLinkHubPrivateLinkResourcesOperations
:ivar private_endpoint_connections: PrivateEndpointConnections operations
:vartype private_endpoint_connections: azure.mgmt.synapse.operations.PrivateEndpointConnectionsOperations
:ivar private_link_hubs: PrivateLinkHubs operations
Expand Down Expand Up @@ -224,6 +236,10 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_replication_links = SqlPoolReplicationLinksOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_maintenance_windows = SqlPoolMaintenanceWindowsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_maintenance_window_options = SqlPoolMaintenanceWindowOptionsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_transparent_data_encryptions = SqlPoolTransparentDataEncryptionsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_blob_auditing_policies = SqlPoolBlobAuditingPoliciesOperations(
Expand All @@ -234,6 +250,8 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_sensitivity_labels = SqlPoolSensitivityLabelsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_recommended_sensitivity_labels = SqlPoolRecommendedSensitivityLabelsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_schemas = SqlPoolSchemasOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sql_pool_tables = SqlPoolTablesOperations(
Expand Down Expand Up @@ -292,6 +310,8 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.private_link_resources = PrivateLinkResourcesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.private_link_hub_private_link_resources = PrivateLinkHubPrivateLinkResourcesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.private_endpoint_connections = PrivateEndpointConnectionsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.private_link_hubs = PrivateLinkHubsOperations(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from ._models_py3 import DataMaskingPolicy
from ._models_py3 import DataMaskingRule
from ._models_py3 import DataWarehouseUserActivities
from ._models_py3 import DynamicExecutorAllocation
from ._models_py3 import EncryptionDetails
from ._models_py3 import EntityReference
from ._models_py3 import EnvironmentVariableSetup
Expand Down Expand Up @@ -64,6 +65,9 @@
from ._models_py3 import LinkedIntegrationRuntimeKeyAuthorization
from ._models_py3 import LinkedIntegrationRuntimeRbacAuthorization
from ._models_py3 import LinkedIntegrationRuntimeType
from ._models_py3 import MaintenanceWindowOptions
from ._models_py3 import MaintenanceWindows
from ._models_py3 import MaintenanceWindowTimeRange
from ._models_py3 import ManagedIdentity
from ._models_py3 import ManagedIdentitySqlControlSettingsModel
from ._models_py3 import ManagedIdentitySqlControlSettingsModelPropertiesGrantSqlControlToManagedIdentity
Expand Down Expand Up @@ -93,6 +97,8 @@
from ._models_py3 import QueryInterval
from ._models_py3 import QueryMetric
from ._models_py3 import QueryStatistic
from ._models_py3 import RecommendedSensitivityLabelUpdate
from ._models_py3 import RecommendedSensitivityLabelUpdateList
from ._models_py3 import RecoverableSqlPool
from ._models_py3 import ReplaceAllFirewallRulesOperationResponse
from ._models_py3 import ReplaceAllIpFirewallRulesRequest
Expand All @@ -106,6 +112,8 @@
from ._models_py3 import SelfHostedIntegrationRuntimeNode
from ._models_py3 import SelfHostedIntegrationRuntimeStatus
from ._models_py3 import SensitivityLabel
from ._models_py3 import SensitivityLabelUpdate
from ._models_py3 import SensitivityLabelUpdateList
from ._models_py3 import ServerBlobAuditingPolicy
from ._models_py3 import ServerSecurityAlertPolicy
from ._models_py3 import ServerUsage
Expand Down Expand Up @@ -172,6 +180,7 @@
from ._models import DataMaskingPolicy
from ._models import DataMaskingRule
from ._models import DataWarehouseUserActivities
from ._models import DynamicExecutorAllocation
from ._models import EncryptionDetails
from ._models import EntityReference
from ._models import EnvironmentVariableSetup
Expand Down Expand Up @@ -208,6 +217,9 @@
from ._models import LinkedIntegrationRuntimeKeyAuthorization
from ._models import LinkedIntegrationRuntimeRbacAuthorization
from ._models import LinkedIntegrationRuntimeType
from ._models import MaintenanceWindowOptions
from ._models import MaintenanceWindows
from ._models import MaintenanceWindowTimeRange
from ._models import ManagedIdentity
from ._models import ManagedIdentitySqlControlSettingsModel
from ._models import ManagedIdentitySqlControlSettingsModelPropertiesGrantSqlControlToManagedIdentity
Expand Down Expand Up @@ -237,6 +249,8 @@
from ._models import QueryInterval
from ._models import QueryMetric
from ._models import QueryStatistic
from ._models import RecommendedSensitivityLabelUpdate
from ._models import RecommendedSensitivityLabelUpdateList
from ._models import RecoverableSqlPool
from ._models import ReplaceAllFirewallRulesOperationResponse
from ._models import ReplaceAllIpFirewallRulesRequest
Expand All @@ -250,6 +264,8 @@
from ._models import SelfHostedIntegrationRuntimeNode
from ._models import SelfHostedIntegrationRuntimeStatus
from ._models import SensitivityLabel
from ._models import SensitivityLabelUpdate
from ._models import SensitivityLabelUpdateList
from ._models import ServerBlobAuditingPolicy
from ._models import ServerSecurityAlertPolicy
from ._models import ServerUsage
Expand Down Expand Up @@ -345,16 +361,20 @@
RestorePointType,
ReplicationRole,
ReplicationState,
DayOfWeek,
TransparentDataEncryptionStatus,
BlobAuditingPolicyState,
ManagementOperationState,
SensitivityLabelRank,
ColumnDataType,
VulnerabilityAssessmentScanTriggerType,
VulnerabilityAssessmentScanState,
SecurityAlertPolicyState,
DataMaskingState,
DataMaskingRuleState,
DataMaskingFunction,
SensitivityLabelUpdateKind,
RecommendedSensitivityLabelUpdateKind,
ResourceIdentityType,
IntegrationRuntimeType,
IntegrationRuntimeState,
Expand Down Expand Up @@ -393,6 +413,7 @@
'DataMaskingPolicy',
'DataMaskingRule',
'DataWarehouseUserActivities',
'DynamicExecutorAllocation',
'EncryptionDetails',
'EntityReference',
'EnvironmentVariableSetup',
Expand Down Expand Up @@ -429,6 +450,9 @@
'LinkedIntegrationRuntimeKeyAuthorization',
'LinkedIntegrationRuntimeRbacAuthorization',
'LinkedIntegrationRuntimeType',
'MaintenanceWindowOptions',
'MaintenanceWindows',
'MaintenanceWindowTimeRange',
'ManagedIdentity',
'ManagedIdentitySqlControlSettingsModel',
'ManagedIdentitySqlControlSettingsModelPropertiesGrantSqlControlToManagedIdentity',
Expand Down Expand Up @@ -458,6 +482,8 @@
'QueryInterval',
'QueryMetric',
'QueryStatistic',
'RecommendedSensitivityLabelUpdate',
'RecommendedSensitivityLabelUpdateList',
'RecoverableSqlPool',
'ReplaceAllFirewallRulesOperationResponse',
'ReplaceAllIpFirewallRulesRequest',
Expand All @@ -471,6 +497,8 @@
'SelfHostedIntegrationRuntimeNode',
'SelfHostedIntegrationRuntimeStatus',
'SensitivityLabel',
'SensitivityLabelUpdate',
'SensitivityLabelUpdateList',
'ServerBlobAuditingPolicy',
'ServerSecurityAlertPolicy',
'ServerUsage',
Expand Down Expand Up @@ -565,16 +593,20 @@
'RestorePointType',
'ReplicationRole',
'ReplicationState',
'DayOfWeek',
'TransparentDataEncryptionStatus',
'BlobAuditingPolicyState',
'ManagementOperationState',
'SensitivityLabelRank',
'ColumnDataType',
'VulnerabilityAssessmentScanTriggerType',
'VulnerabilityAssessmentScanState',
'SecurityAlertPolicyState',
'DataMaskingState',
'DataMaskingRuleState',
'DataMaskingFunction',
'SensitivityLabelUpdateKind',
'RecommendedSensitivityLabelUpdateKind',
'ResourceIdentityType',
'IntegrationRuntimeType',
'IntegrationRuntimeState',
Expand Down
Loading

0 comments on commit 0974c85

Please sign in to comment.