@@ -1598,10 +1598,12 @@ export interface Workspace extends TrackedResource {
15981598 */
15991599 sqlAdministratorLoginPassword ?: string ;
16001600 /**
1601- * Workspace managed resource group
1602- * **NOTE: This property will not be serialized. It can only be populated by the server.**
1601+ * Workspace managed resource group. The resource group name uniquely identifies the resource
1602+ * group within the user subscriptionId. The resource group name must be no longer than 90
1603+ * characters long, and must be alphanumeric characters (Char.IsLetterOrDigit()) and '-', '_',
1604+ * '(', ')' and'.'. Note that the name cannot end with '.'
16031605 */
1604- readonly managedResourceGroupName ?: string ;
1606+ managedResourceGroupName ?: string ;
16051607 /**
16061608 * Resource provisioning state
16071609 * **NOTE: This property will not be serialized. It can only be populated by the server.**
@@ -1628,6 +1630,11 @@ export interface Workspace extends TrackedResource {
16281630 * Private endpoint connections to the workspace
16291631 */
16301632 privateEndpointConnections ?: PrivateEndpointConnection [ ] ;
1633+ /**
1634+ * Workspace level configs and feature flags
1635+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
1636+ */
1637+ readonly extraProperties ?: { [ propertyName : string ] : any } ;
16311638 /**
16321639 * Identity of the workspace
16331640 */
@@ -3199,6 +3206,17 @@ export interface IntegrationRuntimesCreateOptionalParams extends msRest.RequestO
31993206 ifMatch ?: string ;
32003207}
32013208
3209+ /**
3210+ * Optional Parameters.
3211+ */
3212+ export interface IntegrationRuntimesBeginCreateOptionalParams extends msRest . RequestOptionsBase {
3213+ /**
3214+ * ETag of the integration runtime entity. Should only be specified for update, for which it
3215+ * should match existing entity or can be * for unconditional update.
3216+ */
3217+ ifMatch ?: string ;
3218+ }
3219+
32023220/**
32033221 * Optional Parameters.
32043222 */
@@ -5715,6 +5733,26 @@ export type IntegrationRuntimesStartResponse = IntegrationRuntimeStatusResponse
57155733 } ;
57165734} ;
57175735
5736+ /**
5737+ * Contains response data for the beginCreate operation.
5738+ */
5739+ export type IntegrationRuntimesBeginCreateResponse = IntegrationRuntimeResource & {
5740+ /**
5741+ * The underlying HTTP response.
5742+ */
5743+ _response : msRest . HttpResponse & {
5744+ /**
5745+ * The response body as text (string format)
5746+ */
5747+ bodyAsText : string ;
5748+
5749+ /**
5750+ * The response body as parsed JSON or XML
5751+ */
5752+ parsedBody : IntegrationRuntimeResource ;
5753+ } ;
5754+ } ;
5755+
57185756/**
57195757 * Contains response data for the listByWorkspaceNext operation.
57205758 */
0 commit comments