@@ -2338,6 +2338,7 @@ export type AzureDiagnosticSettingMetricSettings = {
2338
2338
} ;
2339
2339
2340
2340
export type AzureDisk = AzureResource & {
2341
+ azureDiskEncryptionEnabled ?: Maybe < Scalars [ 'Boolean' ] > ;
2341
2342
createOption ?: Maybe < Scalars [ 'String' ] > ;
2342
2343
diskIopsReadWrite ?: Maybe < Scalars [ 'Int' ] > ;
2343
2344
diskMbpsReadWrite ?: Maybe < Scalars [ 'Int' ] > ;
@@ -4416,6 +4417,7 @@ export type AzureStorageAccount = AzureResource & {
4416
4417
primaryMicrosoftEndpoints ?: Maybe < AzureStorageAccountPrimaryMicrosoftEndpoints > ;
4417
4418
privateEndpointConnections ?: Maybe < Array < Maybe < AzureStorageAccountPrivateEndpointConnection > > > ;
4418
4419
provisioningState ?: Maybe < Scalars [ 'String' ] > ;
4420
+ queueServiceProperties ?: Maybe < AzureStorageAccountQueueServiceProperties > ;
4419
4421
resourceGroup ?: Maybe < Array < Maybe < AzureResourceGroup > > > ;
4420
4422
routingPreferenceChoice ?: Maybe < Scalars [ 'String' ] > ;
4421
4423
routingPreferencePublishInternetEndpoints ?: Maybe < Scalars [ 'String' ] > ;
@@ -4473,6 +4475,19 @@ export type AzureStorageAccountPrivateEndpointConnection = {
4473
4475
provisioningState ?: Maybe < Scalars [ 'String' ] > ;
4474
4476
} ;
4475
4477
4478
+ export type AzureStorageAccountQueueServiceProperties = {
4479
+ logging ?: Maybe < AzureStorageAccountQueueServicePropertiesLogging > ;
4480
+ } ;
4481
+
4482
+ export type AzureStorageAccountQueueServicePropertiesLogging = {
4483
+ delete ?: Maybe < Scalars [ 'Boolean' ] > ;
4484
+ read ?: Maybe < Scalars [ 'Boolean' ] > ;
4485
+ retentionPolicyDays ?: Maybe < Scalars [ 'Int' ] > ;
4486
+ retentionPolicyEnabled ?: Maybe < Scalars [ 'Boolean' ] > ;
4487
+ version ?: Maybe < Scalars [ 'String' ] > ;
4488
+ write ?: Maybe < Scalars [ 'Boolean' ] > ;
4489
+ } ;
4490
+
4476
4491
export type AzureStorageAccountResourceAccessRule = {
4477
4492
id : Scalars [ 'String' ] ;
4478
4493
resourceId ?: Maybe < Scalars [ 'String' ] > ;
0 commit comments