@azure/arm-appservice 10.0.0 → 11.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/CHANGELOG.md +106 -0
  2. package/LICENSE +1 -1
  3. package/dist/index.js +6685 -4683
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist-esm/src/models/index.d.ts +588 -57
  8. package/dist-esm/src/models/index.d.ts.map +1 -1
  9. package/dist-esm/src/models/index.js +82 -37
  10. package/dist-esm/src/models/index.js.map +1 -1
  11. package/dist-esm/src/models/mappers.d.ts +28 -1
  12. package/dist-esm/src/models/mappers.d.ts.map +1 -1
  13. package/dist-esm/src/models/mappers.js +1085 -16
  14. package/dist-esm/src/models/mappers.js.map +1 -1
  15. package/dist-esm/src/models/parameters.d.ts +2 -0
  16. package/dist-esm/src/models/parameters.d.ts.map +1 -1
  17. package/dist-esm/src/models/parameters.js +17 -2
  18. package/dist-esm/src/models/parameters.js.map +1 -1
  19. package/dist-esm/src/operations/containerApps.d.ts +97 -0
  20. package/dist-esm/src/operations/containerApps.d.ts.map +1 -0
  21. package/dist-esm/src/operations/containerApps.js +444 -0
  22. package/dist-esm/src/operations/containerApps.js.map +1 -0
  23. package/dist-esm/src/operations/containerAppsRevisions.d.ts +70 -0
  24. package/dist-esm/src/operations/containerAppsRevisions.d.ts.map +1 -0
  25. package/dist-esm/src/operations/containerAppsRevisions.js +259 -0
  26. package/dist-esm/src/operations/containerAppsRevisions.js.map +1 -0
  27. package/dist-esm/src/operations/domains.d.ts +8 -1
  28. package/dist-esm/src/operations/domains.d.ts.map +1 -1
  29. package/dist-esm/src/operations/domains.js +33 -0
  30. package/dist-esm/src/operations/domains.js.map +1 -1
  31. package/dist-esm/src/operations/index.d.ts +2 -0
  32. package/dist-esm/src/operations/index.d.ts.map +1 -1
  33. package/dist-esm/src/operations/index.js +2 -0
  34. package/dist-esm/src/operations/index.js.map +1 -1
  35. package/dist-esm/src/operations/webApps.d.ts +8 -1
  36. package/dist-esm/src/operations/webApps.d.ts.map +1 -1
  37. package/dist-esm/src/operations/webApps.js +30 -0
  38. package/dist-esm/src/operations/webApps.js.map +1 -1
  39. package/dist-esm/src/operationsInterfaces/containerApps.d.ts +61 -0
  40. package/dist-esm/src/operationsInterfaces/containerApps.d.ts.map +1 -0
  41. package/dist-esm/src/operationsInterfaces/containerApps.js +9 -0
  42. package/dist-esm/src/operationsInterfaces/containerApps.js.map +1 -0
  43. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.d.ts +45 -0
  44. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.d.ts.map +1 -0
  45. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.js +9 -0
  46. package/dist-esm/src/operationsInterfaces/containerAppsRevisions.js.map +1 -0
  47. package/dist-esm/src/operationsInterfaces/domains.d.ts +8 -1
  48. package/dist-esm/src/operationsInterfaces/domains.d.ts.map +1 -1
  49. package/dist-esm/src/operationsInterfaces/index.d.ts +2 -0
  50. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
  51. package/dist-esm/src/operationsInterfaces/index.js +2 -0
  52. package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
  53. package/dist-esm/src/operationsInterfaces/webApps.d.ts +8 -1
  54. package/dist-esm/src/operationsInterfaces/webApps.d.ts.map +1 -1
  55. package/dist-esm/src/webSiteManagementClient.d.ts +23 -2
  56. package/dist-esm/src/webSiteManagementClient.d.ts.map +1 -1
  57. package/dist-esm/src/webSiteManagementClient.js +114 -12
  58. package/dist-esm/src/webSiteManagementClient.js.map +1 -1
  59. package/package.json +1 -1
  60. package/review/arm-appservice.api.md +468 -26
  61. package/src/models/index.ts +658 -58
  62. package/src/models/mappers.ts +1145 -20
  63. package/src/models/parameters.ts +19 -1
  64. package/src/operations/containerApps.ts +580 -0
  65. package/src/operations/containerAppsRevisions.ts +356 -0
  66. package/src/operations/domains.ts +44 -0
  67. package/src/operations/index.ts +2 -0
  68. package/src/operations/webApps.ts +41 -0
  69. package/src/operationsInterfaces/containerApps.ts +116 -0
  70. package/src/operationsInterfaces/containerAppsRevisions.ts +86 -0
  71. package/src/operationsInterfaces/domains.ts +14 -1
  72. package/src/operationsInterfaces/index.ts +2 -0
  73. package/src/operationsInterfaces/webApps.ts +13 -0
  74. package/src/webSiteManagementClient.ts +126 -2
  75. package/types/arm-appservice.d.ts +790 -52
  76. package/types/tsdoc-metadata.json +1 -1
@@ -5296,6 +5296,809 @@ export const CertificateCollection = {
5296
5296
  }
5297
5297
  }
5298
5298
  };
5299
+ export const ContainerAppCollection = {
5300
+ serializedName: "ContainerAppCollection",
5301
+ type: {
5302
+ name: "Composite",
5303
+ className: "ContainerAppCollection",
5304
+ modelProperties: {
5305
+ value: {
5306
+ serializedName: "value",
5307
+ required: true,
5308
+ xmlName: "value",
5309
+ xmlElementName: "ContainerApp",
5310
+ type: {
5311
+ name: "Sequence",
5312
+ element: {
5313
+ type: {
5314
+ name: "Composite",
5315
+ className: "ContainerApp"
5316
+ }
5317
+ }
5318
+ }
5319
+ },
5320
+ nextLink: {
5321
+ serializedName: "nextLink",
5322
+ readOnly: true,
5323
+ xmlName: "nextLink",
5324
+ type: {
5325
+ name: "String"
5326
+ }
5327
+ }
5328
+ }
5329
+ }
5330
+ };
5331
+ export const Configuration = {
5332
+ serializedName: "Configuration",
5333
+ type: {
5334
+ name: "Composite",
5335
+ className: "Configuration",
5336
+ modelProperties: {
5337
+ secrets: {
5338
+ serializedName: "secrets",
5339
+ xmlName: "secrets",
5340
+ xmlElementName: "Secret",
5341
+ type: {
5342
+ name: "Sequence",
5343
+ element: {
5344
+ type: {
5345
+ name: "Composite",
5346
+ className: "Secret"
5347
+ }
5348
+ }
5349
+ }
5350
+ },
5351
+ activeRevisionsMode: {
5352
+ serializedName: "activeRevisionsMode",
5353
+ xmlName: "activeRevisionsMode",
5354
+ type: {
5355
+ name: "String"
5356
+ }
5357
+ },
5358
+ ingress: {
5359
+ serializedName: "ingress",
5360
+ xmlName: "ingress",
5361
+ type: {
5362
+ name: "Composite",
5363
+ className: "Ingress"
5364
+ }
5365
+ },
5366
+ registries: {
5367
+ serializedName: "registries",
5368
+ xmlName: "registries",
5369
+ xmlElementName: "RegistryCredentials",
5370
+ type: {
5371
+ name: "Sequence",
5372
+ element: {
5373
+ type: {
5374
+ name: "Composite",
5375
+ className: "RegistryCredentials"
5376
+ }
5377
+ }
5378
+ }
5379
+ }
5380
+ }
5381
+ }
5382
+ };
5383
+ export const Secret = {
5384
+ serializedName: "Secret",
5385
+ type: {
5386
+ name: "Composite",
5387
+ className: "Secret",
5388
+ modelProperties: {
5389
+ name: {
5390
+ serializedName: "name",
5391
+ xmlName: "name",
5392
+ type: {
5393
+ name: "String"
5394
+ }
5395
+ },
5396
+ value: {
5397
+ serializedName: "value",
5398
+ xmlName: "value",
5399
+ type: {
5400
+ name: "String"
5401
+ }
5402
+ }
5403
+ }
5404
+ }
5405
+ };
5406
+ export const Ingress = {
5407
+ serializedName: "Ingress",
5408
+ type: {
5409
+ name: "Composite",
5410
+ className: "Ingress",
5411
+ modelProperties: {
5412
+ fqdn: {
5413
+ serializedName: "fqdn",
5414
+ readOnly: true,
5415
+ xmlName: "fqdn",
5416
+ type: {
5417
+ name: "String"
5418
+ }
5419
+ },
5420
+ external: {
5421
+ defaultValue: false,
5422
+ serializedName: "external",
5423
+ xmlName: "external",
5424
+ type: {
5425
+ name: "Boolean"
5426
+ }
5427
+ },
5428
+ targetPort: {
5429
+ serializedName: "targetPort",
5430
+ xmlName: "targetPort",
5431
+ type: {
5432
+ name: "Number"
5433
+ }
5434
+ },
5435
+ transport: {
5436
+ serializedName: "transport",
5437
+ xmlName: "transport",
5438
+ type: {
5439
+ name: "String"
5440
+ }
5441
+ },
5442
+ traffic: {
5443
+ serializedName: "traffic",
5444
+ xmlName: "traffic",
5445
+ xmlElementName: "TrafficWeight",
5446
+ type: {
5447
+ name: "Sequence",
5448
+ element: {
5449
+ type: {
5450
+ name: "Composite",
5451
+ className: "TrafficWeight"
5452
+ }
5453
+ }
5454
+ }
5455
+ },
5456
+ allowInsecure: {
5457
+ serializedName: "allowInsecure",
5458
+ xmlName: "allowInsecure",
5459
+ type: {
5460
+ name: "Boolean"
5461
+ }
5462
+ }
5463
+ }
5464
+ }
5465
+ };
5466
+ export const TrafficWeight = {
5467
+ serializedName: "TrafficWeight",
5468
+ type: {
5469
+ name: "Composite",
5470
+ className: "TrafficWeight",
5471
+ modelProperties: {
5472
+ revisionName: {
5473
+ serializedName: "revisionName",
5474
+ xmlName: "revisionName",
5475
+ type: {
5476
+ name: "String"
5477
+ }
5478
+ },
5479
+ weight: {
5480
+ serializedName: "weight",
5481
+ xmlName: "weight",
5482
+ type: {
5483
+ name: "Number"
5484
+ }
5485
+ },
5486
+ latestRevision: {
5487
+ defaultValue: false,
5488
+ serializedName: "latestRevision",
5489
+ xmlName: "latestRevision",
5490
+ type: {
5491
+ name: "Boolean"
5492
+ }
5493
+ }
5494
+ }
5495
+ }
5496
+ };
5497
+ export const RegistryCredentials = {
5498
+ serializedName: "RegistryCredentials",
5499
+ type: {
5500
+ name: "Composite",
5501
+ className: "RegistryCredentials",
5502
+ modelProperties: {
5503
+ server: {
5504
+ serializedName: "server",
5505
+ xmlName: "server",
5506
+ type: {
5507
+ name: "String"
5508
+ }
5509
+ },
5510
+ username: {
5511
+ serializedName: "username",
5512
+ xmlName: "username",
5513
+ type: {
5514
+ name: "String"
5515
+ }
5516
+ },
5517
+ passwordSecretRef: {
5518
+ serializedName: "passwordSecretRef",
5519
+ xmlName: "passwordSecretRef",
5520
+ type: {
5521
+ name: "String"
5522
+ }
5523
+ }
5524
+ }
5525
+ }
5526
+ };
5527
+ export const Template = {
5528
+ serializedName: "Template",
5529
+ type: {
5530
+ name: "Composite",
5531
+ className: "Template",
5532
+ modelProperties: {
5533
+ revisionSuffix: {
5534
+ serializedName: "revisionSuffix",
5535
+ xmlName: "revisionSuffix",
5536
+ type: {
5537
+ name: "String"
5538
+ }
5539
+ },
5540
+ containers: {
5541
+ serializedName: "containers",
5542
+ xmlName: "containers",
5543
+ xmlElementName: "Container",
5544
+ type: {
5545
+ name: "Sequence",
5546
+ element: {
5547
+ type: {
5548
+ name: "Composite",
5549
+ className: "Container"
5550
+ }
5551
+ }
5552
+ }
5553
+ },
5554
+ scale: {
5555
+ serializedName: "scale",
5556
+ xmlName: "scale",
5557
+ type: {
5558
+ name: "Composite",
5559
+ className: "Scale"
5560
+ }
5561
+ },
5562
+ dapr: {
5563
+ serializedName: "dapr",
5564
+ xmlName: "dapr",
5565
+ type: {
5566
+ name: "Composite",
5567
+ className: "Dapr"
5568
+ }
5569
+ }
5570
+ }
5571
+ }
5572
+ };
5573
+ export const Container = {
5574
+ serializedName: "Container",
5575
+ type: {
5576
+ name: "Composite",
5577
+ className: "Container",
5578
+ modelProperties: {
5579
+ image: {
5580
+ serializedName: "image",
5581
+ xmlName: "image",
5582
+ type: {
5583
+ name: "String"
5584
+ }
5585
+ },
5586
+ name: {
5587
+ serializedName: "name",
5588
+ xmlName: "name",
5589
+ type: {
5590
+ name: "String"
5591
+ }
5592
+ },
5593
+ command: {
5594
+ serializedName: "command",
5595
+ xmlName: "command",
5596
+ xmlElementName: "ContainerCommandItem",
5597
+ type: {
5598
+ name: "Sequence",
5599
+ element: {
5600
+ type: {
5601
+ name: "String"
5602
+ }
5603
+ }
5604
+ }
5605
+ },
5606
+ args: {
5607
+ serializedName: "args",
5608
+ xmlName: "args",
5609
+ xmlElementName: "ContainerArgsItem",
5610
+ type: {
5611
+ name: "Sequence",
5612
+ element: {
5613
+ type: {
5614
+ name: "String"
5615
+ }
5616
+ }
5617
+ }
5618
+ },
5619
+ env: {
5620
+ serializedName: "env",
5621
+ xmlName: "env",
5622
+ xmlElementName: "EnvironmentVar",
5623
+ type: {
5624
+ name: "Sequence",
5625
+ element: {
5626
+ type: {
5627
+ name: "Composite",
5628
+ className: "EnvironmentVar"
5629
+ }
5630
+ }
5631
+ }
5632
+ },
5633
+ resources: {
5634
+ serializedName: "resources",
5635
+ xmlName: "resources",
5636
+ type: {
5637
+ name: "Composite",
5638
+ className: "ContainerResources"
5639
+ }
5640
+ }
5641
+ }
5642
+ }
5643
+ };
5644
+ export const EnvironmentVar = {
5645
+ serializedName: "EnvironmentVar",
5646
+ type: {
5647
+ name: "Composite",
5648
+ className: "EnvironmentVar",
5649
+ modelProperties: {
5650
+ name: {
5651
+ serializedName: "name",
5652
+ xmlName: "name",
5653
+ type: {
5654
+ name: "String"
5655
+ }
5656
+ },
5657
+ value: {
5658
+ serializedName: "value",
5659
+ xmlName: "value",
5660
+ type: {
5661
+ name: "String"
5662
+ }
5663
+ },
5664
+ secretRef: {
5665
+ serializedName: "secretRef",
5666
+ xmlName: "secretRef",
5667
+ type: {
5668
+ name: "String"
5669
+ }
5670
+ }
5671
+ }
5672
+ }
5673
+ };
5674
+ export const ContainerResources = {
5675
+ serializedName: "ContainerResources",
5676
+ type: {
5677
+ name: "Composite",
5678
+ className: "ContainerResources",
5679
+ modelProperties: {
5680
+ cpu: {
5681
+ serializedName: "cpu",
5682
+ xmlName: "cpu",
5683
+ type: {
5684
+ name: "Number"
5685
+ }
5686
+ },
5687
+ memory: {
5688
+ serializedName: "memory",
5689
+ xmlName: "memory",
5690
+ type: {
5691
+ name: "String"
5692
+ }
5693
+ }
5694
+ }
5695
+ }
5696
+ };
5697
+ export const Scale = {
5698
+ serializedName: "Scale",
5699
+ type: {
5700
+ name: "Composite",
5701
+ className: "Scale",
5702
+ modelProperties: {
5703
+ minReplicas: {
5704
+ serializedName: "minReplicas",
5705
+ xmlName: "minReplicas",
5706
+ type: {
5707
+ name: "Number"
5708
+ }
5709
+ },
5710
+ maxReplicas: {
5711
+ serializedName: "maxReplicas",
5712
+ xmlName: "maxReplicas",
5713
+ type: {
5714
+ name: "Number"
5715
+ }
5716
+ },
5717
+ rules: {
5718
+ serializedName: "rules",
5719
+ xmlName: "rules",
5720
+ xmlElementName: "ScaleRule",
5721
+ type: {
5722
+ name: "Sequence",
5723
+ element: {
5724
+ type: {
5725
+ name: "Composite",
5726
+ className: "ScaleRule"
5727
+ }
5728
+ }
5729
+ }
5730
+ }
5731
+ }
5732
+ }
5733
+ };
5734
+ export const ScaleRule = {
5735
+ serializedName: "ScaleRule",
5736
+ type: {
5737
+ name: "Composite",
5738
+ className: "ScaleRule",
5739
+ modelProperties: {
5740
+ name: {
5741
+ serializedName: "name",
5742
+ xmlName: "name",
5743
+ type: {
5744
+ name: "String"
5745
+ }
5746
+ },
5747
+ azureQueue: {
5748
+ serializedName: "azureQueue",
5749
+ xmlName: "azureQueue",
5750
+ type: {
5751
+ name: "Composite",
5752
+ className: "QueueScaleRule"
5753
+ }
5754
+ },
5755
+ custom: {
5756
+ serializedName: "custom",
5757
+ xmlName: "custom",
5758
+ type: {
5759
+ name: "Composite",
5760
+ className: "CustomScaleRule"
5761
+ }
5762
+ },
5763
+ http: {
5764
+ serializedName: "http",
5765
+ xmlName: "http",
5766
+ type: {
5767
+ name: "Composite",
5768
+ className: "HttpScaleRule"
5769
+ }
5770
+ }
5771
+ }
5772
+ }
5773
+ };
5774
+ export const QueueScaleRule = {
5775
+ serializedName: "QueueScaleRule",
5776
+ type: {
5777
+ name: "Composite",
5778
+ className: "QueueScaleRule",
5779
+ modelProperties: {
5780
+ queueName: {
5781
+ serializedName: "queueName",
5782
+ xmlName: "queueName",
5783
+ type: {
5784
+ name: "String"
5785
+ }
5786
+ },
5787
+ queueLength: {
5788
+ serializedName: "queueLength",
5789
+ xmlName: "queueLength",
5790
+ type: {
5791
+ name: "Number"
5792
+ }
5793
+ },
5794
+ auth: {
5795
+ serializedName: "auth",
5796
+ xmlName: "auth",
5797
+ xmlElementName: "ScaleRuleAuth",
5798
+ type: {
5799
+ name: "Sequence",
5800
+ element: {
5801
+ type: {
5802
+ name: "Composite",
5803
+ className: "ScaleRuleAuth"
5804
+ }
5805
+ }
5806
+ }
5807
+ }
5808
+ }
5809
+ }
5810
+ };
5811
+ export const ScaleRuleAuth = {
5812
+ serializedName: "ScaleRuleAuth",
5813
+ type: {
5814
+ name: "Composite",
5815
+ className: "ScaleRuleAuth",
5816
+ modelProperties: {
5817
+ secretRef: {
5818
+ serializedName: "secretRef",
5819
+ xmlName: "secretRef",
5820
+ type: {
5821
+ name: "String"
5822
+ }
5823
+ },
5824
+ triggerParameter: {
5825
+ serializedName: "triggerParameter",
5826
+ xmlName: "triggerParameter",
5827
+ type: {
5828
+ name: "String"
5829
+ }
5830
+ }
5831
+ }
5832
+ }
5833
+ };
5834
+ export const CustomScaleRule = {
5835
+ serializedName: "CustomScaleRule",
5836
+ type: {
5837
+ name: "Composite",
5838
+ className: "CustomScaleRule",
5839
+ modelProperties: {
5840
+ type: {
5841
+ serializedName: "type",
5842
+ xmlName: "type",
5843
+ type: {
5844
+ name: "String"
5845
+ }
5846
+ },
5847
+ metadata: {
5848
+ serializedName: "metadata",
5849
+ xmlName: "metadata",
5850
+ type: {
5851
+ name: "Dictionary",
5852
+ value: { type: { name: "String" } }
5853
+ }
5854
+ },
5855
+ auth: {
5856
+ serializedName: "auth",
5857
+ xmlName: "auth",
5858
+ xmlElementName: "ScaleRuleAuth",
5859
+ type: {
5860
+ name: "Sequence",
5861
+ element: {
5862
+ type: {
5863
+ name: "Composite",
5864
+ className: "ScaleRuleAuth"
5865
+ }
5866
+ }
5867
+ }
5868
+ }
5869
+ }
5870
+ }
5871
+ };
5872
+ export const HttpScaleRule = {
5873
+ serializedName: "HttpScaleRule",
5874
+ type: {
5875
+ name: "Composite",
5876
+ className: "HttpScaleRule",
5877
+ modelProperties: {
5878
+ metadata: {
5879
+ serializedName: "metadata",
5880
+ xmlName: "metadata",
5881
+ type: {
5882
+ name: "Dictionary",
5883
+ value: { type: { name: "String" } }
5884
+ }
5885
+ },
5886
+ auth: {
5887
+ serializedName: "auth",
5888
+ xmlName: "auth",
5889
+ xmlElementName: "ScaleRuleAuth",
5890
+ type: {
5891
+ name: "Sequence",
5892
+ element: {
5893
+ type: {
5894
+ name: "Composite",
5895
+ className: "ScaleRuleAuth"
5896
+ }
5897
+ }
5898
+ }
5899
+ }
5900
+ }
5901
+ }
5902
+ };
5903
+ export const Dapr = {
5904
+ serializedName: "Dapr",
5905
+ type: {
5906
+ name: "Composite",
5907
+ className: "Dapr",
5908
+ modelProperties: {
5909
+ enabled: {
5910
+ serializedName: "enabled",
5911
+ xmlName: "enabled",
5912
+ type: {
5913
+ name: "Boolean"
5914
+ }
5915
+ },
5916
+ appId: {
5917
+ serializedName: "appId",
5918
+ xmlName: "appId",
5919
+ type: {
5920
+ name: "String"
5921
+ }
5922
+ },
5923
+ appPort: {
5924
+ serializedName: "appPort",
5925
+ xmlName: "appPort",
5926
+ type: {
5927
+ name: "Number"
5928
+ }
5929
+ },
5930
+ components: {
5931
+ serializedName: "components",
5932
+ xmlName: "components",
5933
+ xmlElementName: "DaprComponent",
5934
+ type: {
5935
+ name: "Sequence",
5936
+ element: {
5937
+ type: {
5938
+ name: "Composite",
5939
+ className: "DaprComponent"
5940
+ }
5941
+ }
5942
+ }
5943
+ }
5944
+ }
5945
+ }
5946
+ };
5947
+ export const DaprComponent = {
5948
+ serializedName: "DaprComponent",
5949
+ type: {
5950
+ name: "Composite",
5951
+ className: "DaprComponent",
5952
+ modelProperties: {
5953
+ name: {
5954
+ serializedName: "name",
5955
+ xmlName: "name",
5956
+ type: {
5957
+ name: "String"
5958
+ }
5959
+ },
5960
+ type: {
5961
+ serializedName: "type",
5962
+ xmlName: "type",
5963
+ type: {
5964
+ name: "String"
5965
+ }
5966
+ },
5967
+ version: {
5968
+ serializedName: "version",
5969
+ xmlName: "version",
5970
+ type: {
5971
+ name: "String"
5972
+ }
5973
+ },
5974
+ metadata: {
5975
+ serializedName: "metadata",
5976
+ xmlName: "metadata",
5977
+ xmlElementName: "DaprMetadata",
5978
+ type: {
5979
+ name: "Sequence",
5980
+ element: {
5981
+ type: {
5982
+ name: "Composite",
5983
+ className: "DaprMetadata"
5984
+ }
5985
+ }
5986
+ }
5987
+ }
5988
+ }
5989
+ }
5990
+ };
5991
+ export const DaprMetadata = {
5992
+ serializedName: "DaprMetadata",
5993
+ type: {
5994
+ name: "Composite",
5995
+ className: "DaprMetadata",
5996
+ modelProperties: {
5997
+ name: {
5998
+ serializedName: "name",
5999
+ xmlName: "name",
6000
+ type: {
6001
+ name: "String"
6002
+ }
6003
+ },
6004
+ value: {
6005
+ serializedName: "value",
6006
+ xmlName: "value",
6007
+ type: {
6008
+ name: "String"
6009
+ }
6010
+ },
6011
+ secretRef: {
6012
+ serializedName: "secretRef",
6013
+ xmlName: "secretRef",
6014
+ type: {
6015
+ name: "String"
6016
+ }
6017
+ }
6018
+ }
6019
+ }
6020
+ };
6021
+ export const SecretsCollection = {
6022
+ serializedName: "SecretsCollection",
6023
+ type: {
6024
+ name: "Composite",
6025
+ className: "SecretsCollection",
6026
+ modelProperties: {
6027
+ value: {
6028
+ serializedName: "value",
6029
+ required: true,
6030
+ xmlName: "value",
6031
+ xmlElementName: "ContainerAppSecret",
6032
+ type: {
6033
+ name: "Sequence",
6034
+ element: {
6035
+ type: {
6036
+ name: "Composite",
6037
+ className: "ContainerAppSecret"
6038
+ }
6039
+ }
6040
+ }
6041
+ }
6042
+ }
6043
+ }
6044
+ };
6045
+ export const ContainerAppSecret = {
6046
+ serializedName: "ContainerAppSecret",
6047
+ type: {
6048
+ name: "Composite",
6049
+ className: "ContainerAppSecret",
6050
+ modelProperties: {
6051
+ name: {
6052
+ serializedName: "name",
6053
+ readOnly: true,
6054
+ xmlName: "name",
6055
+ type: {
6056
+ name: "String"
6057
+ }
6058
+ },
6059
+ value: {
6060
+ serializedName: "value",
6061
+ readOnly: true,
6062
+ xmlName: "value",
6063
+ type: {
6064
+ name: "String"
6065
+ }
6066
+ }
6067
+ }
6068
+ }
6069
+ };
6070
+ export const RevisionCollection = {
6071
+ serializedName: "RevisionCollection",
6072
+ type: {
6073
+ name: "Composite",
6074
+ className: "RevisionCollection",
6075
+ modelProperties: {
6076
+ value: {
6077
+ serializedName: "value",
6078
+ required: true,
6079
+ xmlName: "value",
6080
+ xmlElementName: "Revision",
6081
+ type: {
6082
+ name: "Sequence",
6083
+ element: {
6084
+ type: {
6085
+ name: "Composite",
6086
+ className: "Revision"
6087
+ }
6088
+ }
6089
+ }
6090
+ },
6091
+ nextLink: {
6092
+ serializedName: "nextLink",
6093
+ readOnly: true,
6094
+ xmlName: "nextLink",
6095
+ type: {
6096
+ name: "String"
6097
+ }
6098
+ }
6099
+ }
6100
+ }
6101
+ };
5299
6102
  export const DeletedWebAppCollection = {
5300
6103
  serializedName: "DeletedWebAppCollection",
5301
6104
  type: {
@@ -6076,6 +6879,57 @@ export const LogAnalyticsConfiguration = {
6076
6879
  }
6077
6880
  }
6078
6881
  };
6882
+ export const ContainerAppsConfiguration = {
6883
+ serializedName: "ContainerAppsConfiguration",
6884
+ type: {
6885
+ name: "Composite",
6886
+ className: "ContainerAppsConfiguration",
6887
+ modelProperties: {
6888
+ daprAIInstrumentationKey: {
6889
+ serializedName: "daprAIInstrumentationKey",
6890
+ xmlName: "daprAIInstrumentationKey",
6891
+ type: {
6892
+ name: "String"
6893
+ }
6894
+ },
6895
+ platformReservedCidr: {
6896
+ serializedName: "platformReservedCidr",
6897
+ xmlName: "platformReservedCidr",
6898
+ type: {
6899
+ name: "String"
6900
+ }
6901
+ },
6902
+ platformReservedDnsIP: {
6903
+ serializedName: "platformReservedDnsIP",
6904
+ xmlName: "platformReservedDnsIP",
6905
+ type: {
6906
+ name: "String"
6907
+ }
6908
+ },
6909
+ controlPlaneSubnetResourceId: {
6910
+ serializedName: "controlPlaneSubnetResourceId",
6911
+ xmlName: "controlPlaneSubnetResourceId",
6912
+ type: {
6913
+ name: "String"
6914
+ }
6915
+ },
6916
+ appSubnetResourceId: {
6917
+ serializedName: "appSubnetResourceId",
6918
+ xmlName: "appSubnetResourceId",
6919
+ type: {
6920
+ name: "String"
6921
+ }
6922
+ },
6923
+ dockerBridgeCidr: {
6924
+ serializedName: "dockerBridgeCidr",
6925
+ xmlName: "dockerBridgeCidr",
6926
+ type: {
6927
+ name: "String"
6928
+ }
6929
+ }
6930
+ }
6931
+ }
6932
+ };
6079
6933
  export const ApplicationStackCollection = {
6080
6934
  serializedName: "ApplicationStackCollection",
6081
6935
  type: {
@@ -7229,6 +8083,38 @@ export const ResourceNameAvailability = {
7229
8083
  }
7230
8084
  }
7231
8085
  };
8086
+ export const CustomHostnameSitesCollection = {
8087
+ serializedName: "CustomHostnameSitesCollection",
8088
+ type: {
8089
+ name: "Composite",
8090
+ className: "CustomHostnameSitesCollection",
8091
+ modelProperties: {
8092
+ value: {
8093
+ serializedName: "value",
8094
+ required: true,
8095
+ xmlName: "value",
8096
+ xmlElementName: "CustomHostnameSites",
8097
+ type: {
8098
+ name: "Sequence",
8099
+ element: {
8100
+ type: {
8101
+ name: "Composite",
8102
+ className: "CustomHostnameSites"
8103
+ }
8104
+ }
8105
+ }
8106
+ },
8107
+ nextLink: {
8108
+ serializedName: "nextLink",
8109
+ readOnly: true,
8110
+ xmlName: "nextLink",
8111
+ type: {
8112
+ name: "String"
8113
+ }
8114
+ }
8115
+ }
8116
+ }
8117
+ };
7232
8118
  export const DeploymentLocations = {
7233
8119
  serializedName: "DeploymentLocations",
7234
8120
  type: {
@@ -12652,6 +13538,126 @@ export const Certificate = {
12652
13538
  } })
12653
13539
  }
12654
13540
  };
13541
+ export const ContainerApp = {
13542
+ serializedName: "ContainerApp",
13543
+ type: {
13544
+ name: "Composite",
13545
+ className: "ContainerApp",
13546
+ modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { provisioningState: {
13547
+ serializedName: "properties.provisioningState",
13548
+ readOnly: true,
13549
+ xmlName: "properties.provisioningState",
13550
+ type: {
13551
+ name: "String"
13552
+ }
13553
+ }, kubeEnvironmentId: {
13554
+ serializedName: "properties.kubeEnvironmentId",
13555
+ xmlName: "properties.kubeEnvironmentId",
13556
+ type: {
13557
+ name: "String"
13558
+ }
13559
+ }, latestRevisionName: {
13560
+ serializedName: "properties.latestRevisionName",
13561
+ readOnly: true,
13562
+ xmlName: "properties.latestRevisionName",
13563
+ type: {
13564
+ name: "String"
13565
+ }
13566
+ }, latestRevisionFqdn: {
13567
+ serializedName: "properties.latestRevisionFqdn",
13568
+ readOnly: true,
13569
+ xmlName: "properties.latestRevisionFqdn",
13570
+ type: {
13571
+ name: "String"
13572
+ }
13573
+ }, configuration: {
13574
+ serializedName: "properties.configuration",
13575
+ xmlName: "properties.configuration",
13576
+ type: {
13577
+ name: "Composite",
13578
+ className: "Configuration"
13579
+ }
13580
+ }, template: {
13581
+ serializedName: "properties.template",
13582
+ xmlName: "properties.template",
13583
+ type: {
13584
+ name: "Composite",
13585
+ className: "Template"
13586
+ }
13587
+ } })
13588
+ }
13589
+ };
13590
+ export const Revision = {
13591
+ serializedName: "Revision",
13592
+ type: {
13593
+ name: "Composite",
13594
+ className: "Revision",
13595
+ modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { createdTime: {
13596
+ serializedName: "properties.createdTime",
13597
+ readOnly: true,
13598
+ xmlName: "properties.createdTime",
13599
+ type: {
13600
+ name: "DateTime"
13601
+ }
13602
+ }, fqdn: {
13603
+ serializedName: "properties.fqdn",
13604
+ readOnly: true,
13605
+ xmlName: "properties.fqdn",
13606
+ type: {
13607
+ name: "String"
13608
+ }
13609
+ }, template: {
13610
+ serializedName: "properties.template",
13611
+ xmlName: "properties.template",
13612
+ type: {
13613
+ name: "Composite",
13614
+ className: "Template"
13615
+ }
13616
+ }, active: {
13617
+ serializedName: "properties.active",
13618
+ readOnly: true,
13619
+ xmlName: "properties.active",
13620
+ type: {
13621
+ name: "Boolean"
13622
+ }
13623
+ }, replicas: {
13624
+ serializedName: "properties.replicas",
13625
+ readOnly: true,
13626
+ xmlName: "properties.replicas",
13627
+ type: {
13628
+ name: "Number"
13629
+ }
13630
+ }, trafficWeight: {
13631
+ serializedName: "properties.trafficWeight",
13632
+ readOnly: true,
13633
+ xmlName: "properties.trafficWeight",
13634
+ type: {
13635
+ name: "Number"
13636
+ }
13637
+ }, provisioningError: {
13638
+ serializedName: "properties.provisioningError",
13639
+ readOnly: true,
13640
+ xmlName: "properties.provisioningError",
13641
+ type: {
13642
+ name: "String"
13643
+ }
13644
+ }, healthState: {
13645
+ serializedName: "properties.healthState",
13646
+ readOnly: true,
13647
+ xmlName: "properties.healthState",
13648
+ type: {
13649
+ name: "String"
13650
+ }
13651
+ }, provisioningState: {
13652
+ serializedName: "properties.provisioningState",
13653
+ readOnly: true,
13654
+ xmlName: "properties.provisioningState",
13655
+ type: {
13656
+ name: "String"
13657
+ }
13658
+ } })
13659
+ }
13660
+ };
12655
13661
  export const KubeEnvironment = {
12656
13662
  serializedName: "KubeEnvironment",
12657
13663
  type: {
@@ -12709,6 +13715,12 @@ export const KubeEnvironment = {
12709
13715
  type: {
12710
13716
  name: "String"
12711
13717
  }
13718
+ }, environmentType: {
13719
+ serializedName: "properties.environmentType",
13720
+ xmlName: "properties.environmentType",
13721
+ type: {
13722
+ name: "String"
13723
+ }
12712
13724
  }, arcConfiguration: {
12713
13725
  serializedName: "properties.arcConfiguration",
12714
13726
  xmlName: "properties.arcConfiguration",
@@ -12723,6 +13735,13 @@ export const KubeEnvironment = {
12723
13735
  name: "Composite",
12724
13736
  className: "AppLogsConfiguration"
12725
13737
  }
13738
+ }, containerAppsConfiguration: {
13739
+ serializedName: "properties.containerAppsConfiguration",
13740
+ xmlName: "properties.containerAppsConfiguration",
13741
+ type: {
13742
+ name: "Composite",
13743
+ className: "ContainerAppsConfiguration"
13744
+ }
12726
13745
  }, aksResourceID: {
12727
13746
  serializedName: "properties.aksResourceID",
12728
13747
  xmlName: "properties.aksResourceID",
@@ -12860,11 +13879,16 @@ export const StaticSiteARMResource = {
12860
13879
  }
12861
13880
  }, provider: {
12862
13881
  serializedName: "properties.provider",
12863
- readOnly: true,
12864
13882
  xmlName: "properties.provider",
12865
13883
  type: {
12866
13884
  name: "String"
12867
13885
  }
13886
+ }, enterpriseGradeCdnStatus: {
13887
+ serializedName: "properties.enterpriseGradeCdnStatus",
13888
+ xmlName: "properties.enterpriseGradeCdnStatus",
13889
+ type: {
13890
+ name: "String"
13891
+ }
12868
13892
  } })
12869
13893
  }
12870
13894
  };
@@ -14901,6 +15925,13 @@ export const KubeEnvironmentPatchResource = {
14901
15925
  name: "Composite",
14902
15926
  className: "AppLogsConfiguration"
14903
15927
  }
15928
+ }, containerAppsConfiguration: {
15929
+ serializedName: "properties.containerAppsConfiguration",
15930
+ xmlName: "properties.containerAppsConfiguration",
15931
+ type: {
15932
+ name: "Composite",
15933
+ className: "ContainerAppsConfiguration"
15934
+ }
14904
15935
  }, aksResourceID: {
14905
15936
  serializedName: "properties.aksResourceID",
14906
15937
  xmlName: "properties.aksResourceID",
@@ -15483,6 +16514,53 @@ export const BillingMeter = {
15483
16514
  } })
15484
16515
  }
15485
16516
  };
16517
+ export const Identifier = {
16518
+ serializedName: "Identifier",
16519
+ type: {
16520
+ name: "Composite",
16521
+ className: "Identifier",
16522
+ modelProperties: Object.assign(Object.assign({}, ProxyOnlyResource.type.modelProperties), { value: {
16523
+ serializedName: "properties.id",
16524
+ xmlName: "properties.id",
16525
+ type: {
16526
+ name: "String"
16527
+ }
16528
+ } })
16529
+ }
16530
+ };
16531
+ export const CustomHostnameSites = {
16532
+ serializedName: "CustomHostnameSites",
16533
+ type: {
16534
+ name: "Composite",
16535
+ className: "CustomHostnameSites",
16536
+ modelProperties: Object.assign(Object.assign({}, ProxyOnlyResource.type.modelProperties), { customHostname: {
16537
+ serializedName: "properties.customHostname",
16538
+ xmlName: "properties.customHostname",
16539
+ type: {
16540
+ name: "String"
16541
+ }
16542
+ }, region: {
16543
+ serializedName: "properties.region",
16544
+ xmlName: "properties.region",
16545
+ type: {
16546
+ name: "String"
16547
+ }
16548
+ }, siteResourceIds: {
16549
+ serializedName: "properties.siteResourceIds",
16550
+ xmlName: "properties.siteResourceIds",
16551
+ xmlElementName: "Identifier",
16552
+ type: {
16553
+ name: "Sequence",
16554
+ element: {
16555
+ type: {
16556
+ name: "Composite",
16557
+ className: "Identifier"
16558
+ }
16559
+ }
16560
+ }
16561
+ } })
16562
+ }
16563
+ };
15486
16564
  export const GeoRegion = {
15487
16565
  serializedName: "GeoRegion",
15488
16566
  type: {
@@ -15512,20 +16590,6 @@ export const GeoRegion = {
15512
16590
  } })
15513
16591
  }
15514
16592
  };
15515
- export const Identifier = {
15516
- serializedName: "Identifier",
15517
- type: {
15518
- name: "Composite",
15519
- className: "Identifier",
15520
- modelProperties: Object.assign(Object.assign({}, ProxyOnlyResource.type.modelProperties), { value: {
15521
- serializedName: "properties.id",
15522
- xmlName: "properties.id",
15523
- type: {
15524
- name: "String"
15525
- }
15526
- } })
15527
- }
15528
- };
15529
16593
  export const PremierAddOnOffer = {
15530
16594
  serializedName: "PremierAddOnOffer",
15531
16595
  type: {
@@ -15931,11 +16995,16 @@ export const StaticSitePatchResource = {
15931
16995
  }
15932
16996
  }, provider: {
15933
16997
  serializedName: "properties.provider",
15934
- readOnly: true,
15935
16998
  xmlName: "properties.provider",
15936
16999
  type: {
15937
17000
  name: "String"
15938
17001
  }
17002
+ }, enterpriseGradeCdnStatus: {
17003
+ serializedName: "properties.enterpriseGradeCdnStatus",
17004
+ xmlName: "properties.enterpriseGradeCdnStatus",
17005
+ type: {
17006
+ name: "String"
17007
+ }
15939
17008
  } })
15940
17009
  }
15941
17010
  };