@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
@@ -18,6 +18,16 @@ export declare interface AbnormalTimePeriod {
18
18
  solutions?: Solution[];
19
19
  }
20
20
 
21
+ /**
22
+ * Defines values for ActiveRevisionsMode. \
23
+ * {@link KnownActiveRevisionsMode} can be used interchangeably with ActiveRevisionsMode,
24
+ * this enum contains the known values that the service supports.
25
+ * ### Known values supported by the service
26
+ * **multiple** \
27
+ * **single**
28
+ */
29
+ export declare type ActiveRevisionsMode = string;
30
+
21
31
  /** Address information for domain registration. */
22
32
  export declare interface Address {
23
33
  /** First line of an Address. */
@@ -3486,6 +3496,21 @@ export declare interface CloningInfo {
3486
3496
  /** Defines values for ComputeModeOptions. */
3487
3497
  export declare type ComputeModeOptions = "Shared" | "Dedicated" | "Dynamic";
3488
3498
 
3499
+ /** Non versioned Container App configuration properties that define the mutable settings of a Container app */
3500
+ export declare interface Configuration {
3501
+ /** Collection of secrets used by a Container app */
3502
+ secrets?: Secret[];
3503
+ /**
3504
+ * ActiveRevisionsMode controls how active revisions are handled for the Container app:
3505
+ * <list><item>Multiple: multiple revisions can be active. If no value if provided, this is the default</item><item>Single: Only one revision can be active at a time. Revision weights can not be used in this mode</item></list>
3506
+ */
3507
+ activeRevisionsMode?: ActiveRevisionsMode;
3508
+ /** Ingress configurations. */
3509
+ ingress?: Ingress;
3510
+ /** Collection of private container registry credentials for containers used by the Container app */
3511
+ registries?: RegistryCredentials[];
3512
+ }
3513
+
3489
3514
  /** String dictionary resource. */
3490
3515
  export declare type ConnectionStringDictionary = ProxyOnlyResource & {
3491
3516
  /** Connection strings. */
@@ -3540,6 +3565,294 @@ export declare interface Contact {
3540
3565
  phone: string;
3541
3566
  }
3542
3567
 
3568
+ /** Container App container definition. */
3569
+ export declare interface Container {
3570
+ /** Container image tag. */
3571
+ image?: string;
3572
+ /** Custom container name. */
3573
+ name?: string;
3574
+ /** Container start command. */
3575
+ command?: string[];
3576
+ /** Container start command arguments. */
3577
+ args?: string[];
3578
+ /** Container environment variables. */
3579
+ env?: EnvironmentVar[];
3580
+ /** Container resource requirements. */
3581
+ resources?: ContainerResources;
3582
+ }
3583
+
3584
+ /** Container App. */
3585
+ export declare type ContainerApp = Resource & {
3586
+ /**
3587
+ * Provisioning state of the Container App.
3588
+ * NOTE: This property will not be serialized. It can only be populated by the server.
3589
+ */
3590
+ readonly provisioningState?: ContainerAppProvisioningState;
3591
+ /** Resource ID of the Container App's KubeEnvironment. */
3592
+ kubeEnvironmentId?: string;
3593
+ /**
3594
+ * Name of the latest revision of the Container App.
3595
+ * NOTE: This property will not be serialized. It can only be populated by the server.
3596
+ */
3597
+ readonly latestRevisionName?: string;
3598
+ /**
3599
+ * Fully Qualified Domain Name of the latest revision of the Container App.
3600
+ * NOTE: This property will not be serialized. It can only be populated by the server.
3601
+ */
3602
+ readonly latestRevisionFqdn?: string;
3603
+ /** Non versioned Container App configuration properties. */
3604
+ configuration?: Configuration;
3605
+ /** Container App versioned application definition. */
3606
+ template?: Template;
3607
+ };
3608
+
3609
+ /** Container App collection ARM resource. */
3610
+ export declare interface ContainerAppCollection {
3611
+ /** Collection of resources. */
3612
+ value: ContainerApp[];
3613
+ /**
3614
+ * Link to next page of resources.
3615
+ * NOTE: This property will not be serialized. It can only be populated by the server.
3616
+ */
3617
+ readonly nextLink?: string;
3618
+ }
3619
+
3620
+ /**
3621
+ * Defines values for ContainerAppProvisioningState. \
3622
+ * {@link KnownContainerAppProvisioningState} can be used interchangeably with ContainerAppProvisioningState,
3623
+ * this enum contains the known values that the service supports.
3624
+ * ### Known values supported by the service
3625
+ * **InProgress** \
3626
+ * **Succeeded** \
3627
+ * **Failed** \
3628
+ * **Canceled**
3629
+ */
3630
+ export declare type ContainerAppProvisioningState = string;
3631
+
3632
+ /** Interface representing a ContainerApps. */
3633
+ export declare interface ContainerApps {
3634
+ /**
3635
+ * Get the Container Apps in a given subscription.
3636
+ * @param options The options parameters.
3637
+ */
3638
+ listBySubscription(options?: ContainerAppsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ContainerApp>;
3639
+ /**
3640
+ * Get the Container Apps in a given resource group.
3641
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3642
+ * @param options The options parameters.
3643
+ */
3644
+ listByResourceGroup(resourceGroupName: string, options?: ContainerAppsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ContainerApp>;
3645
+ /**
3646
+ * Get the properties of a Container App.
3647
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3648
+ * @param name Name of the Container App.
3649
+ * @param options The options parameters.
3650
+ */
3651
+ get(resourceGroupName: string, name: string, options?: ContainerAppsGetOptionalParams): Promise<ContainerAppsGetResponse>;
3652
+ /**
3653
+ * Description for Create or update a Container App.
3654
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3655
+ * @param name Name of the Container App.
3656
+ * @param containerAppEnvelope Container App.
3657
+ * @param options The options parameters.
3658
+ */
3659
+ beginCreateOrUpdate(resourceGroupName: string, name: string, containerAppEnvelope: ContainerApp, options?: ContainerAppsCreateOrUpdateOptionalParams): Promise<PollerLike<PollOperationState<ContainerAppsCreateOrUpdateResponse>, ContainerAppsCreateOrUpdateResponse>>;
3660
+ /**
3661
+ * Description for Create or update a Container App.
3662
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3663
+ * @param name Name of the Container App.
3664
+ * @param containerAppEnvelope Container App.
3665
+ * @param options The options parameters.
3666
+ */
3667
+ beginCreateOrUpdateAndWait(resourceGroupName: string, name: string, containerAppEnvelope: ContainerApp, options?: ContainerAppsCreateOrUpdateOptionalParams): Promise<ContainerAppsCreateOrUpdateResponse>;
3668
+ /**
3669
+ * Description for Delete a Container App.
3670
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3671
+ * @param name Name of the Container App.
3672
+ * @param options The options parameters.
3673
+ */
3674
+ beginDelete(resourceGroupName: string, name: string, options?: ContainerAppsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
3675
+ /**
3676
+ * Description for Delete a Container App.
3677
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3678
+ * @param name Name of the Container App.
3679
+ * @param options The options parameters.
3680
+ */
3681
+ beginDeleteAndWait(resourceGroupName: string, name: string, options?: ContainerAppsDeleteOptionalParams): Promise<void>;
3682
+ /**
3683
+ * List secrets for a container app
3684
+ * @param name Name of the Container App.
3685
+ * @param options The options parameters.
3686
+ */
3687
+ listSecrets(name: string, options?: ContainerAppsListSecretsOptionalParams): Promise<ContainerAppsListSecretsResponse>;
3688
+ }
3689
+
3690
+ export declare interface ContainerAppsConfiguration {
3691
+ /** Azure Monitor instrumentation key used by Dapr to export Service to Service communication telemetry */
3692
+ daprAIInstrumentationKey?: string;
3693
+ /** IP range in CIDR notation that can be reserved for environment infrastructure IP addresses. It must not overlap with any other Subnet IP ranges. */
3694
+ platformReservedCidr?: string;
3695
+ /** An IP address from the IP range defined by platformReservedCidr that will be reserved for the internal DNS server */
3696
+ platformReservedDnsIP?: string;
3697
+ /** Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined. */
3698
+ controlPlaneSubnetResourceId?: string;
3699
+ /** Resource ID of a subnet for control plane infrastructure components. This subnet must be in the same VNET as the subnet defined in appSubnetResourceId. Must not overlap with the IP range defined in platformReservedCidr, if defined. */
3700
+ appSubnetResourceId?: string;
3701
+ /** CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the IP range defined in platformReservedCidr, if defined. */
3702
+ dockerBridgeCidr?: string;
3703
+ }
3704
+
3705
+ /** Optional parameters. */
3706
+ export declare interface ContainerAppsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
3707
+ /** Delay to wait until next poll, in milliseconds. */
3708
+ updateIntervalInMs?: number;
3709
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
3710
+ resumeFrom?: string;
3711
+ }
3712
+
3713
+ /** Contains response data for the createOrUpdate operation. */
3714
+ export declare type ContainerAppsCreateOrUpdateResponse = ContainerApp;
3715
+
3716
+ /** Optional parameters. */
3717
+ export declare interface ContainerAppsDeleteOptionalParams extends coreClient.OperationOptions {
3718
+ /** Delay to wait until next poll, in milliseconds. */
3719
+ updateIntervalInMs?: number;
3720
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
3721
+ resumeFrom?: string;
3722
+ }
3723
+
3724
+ /** Container App Secret. */
3725
+ export declare interface ContainerAppSecret {
3726
+ /**
3727
+ * Secret Name.
3728
+ * NOTE: This property will not be serialized. It can only be populated by the server.
3729
+ */
3730
+ readonly name?: string;
3731
+ /**
3732
+ * Secret Value.
3733
+ * NOTE: This property will not be serialized. It can only be populated by the server.
3734
+ */
3735
+ readonly value?: string;
3736
+ }
3737
+
3738
+ /** Optional parameters. */
3739
+ export declare interface ContainerAppsGetOptionalParams extends coreClient.OperationOptions {
3740
+ }
3741
+
3742
+ /** Contains response data for the get operation. */
3743
+ export declare type ContainerAppsGetResponse = ContainerApp;
3744
+
3745
+ /** Optional parameters. */
3746
+ export declare interface ContainerAppsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
3747
+ }
3748
+
3749
+ /** Contains response data for the listByResourceGroupNext operation. */
3750
+ export declare type ContainerAppsListByResourceGroupNextResponse = ContainerAppCollection;
3751
+
3752
+ /** Optional parameters. */
3753
+ export declare interface ContainerAppsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
3754
+ }
3755
+
3756
+ /** Contains response data for the listByResourceGroup operation. */
3757
+ export declare type ContainerAppsListByResourceGroupResponse = ContainerAppCollection;
3758
+
3759
+ /** Optional parameters. */
3760
+ export declare interface ContainerAppsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
3761
+ }
3762
+
3763
+ /** Contains response data for the listBySubscriptionNext operation. */
3764
+ export declare type ContainerAppsListBySubscriptionNextResponse = ContainerAppCollection;
3765
+
3766
+ /** Optional parameters. */
3767
+ export declare interface ContainerAppsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
3768
+ }
3769
+
3770
+ /** Contains response data for the listBySubscription operation. */
3771
+ export declare type ContainerAppsListBySubscriptionResponse = ContainerAppCollection;
3772
+
3773
+ /** Optional parameters. */
3774
+ export declare interface ContainerAppsListSecretsOptionalParams extends coreClient.OperationOptions {
3775
+ }
3776
+
3777
+ /** Contains response data for the listSecrets operation. */
3778
+ export declare type ContainerAppsListSecretsResponse = SecretsCollection;
3779
+
3780
+ /** Interface representing a ContainerAppsRevisions. */
3781
+ export declare interface ContainerAppsRevisions {
3782
+ /**
3783
+ * Get the Revisions for a given Container App.
3784
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3785
+ * @param containerAppName Name of the Container App for which Revisions are needed.
3786
+ * @param options The options parameters.
3787
+ */
3788
+ listRevisions(resourceGroupName: string, containerAppName: string, options?: ContainerAppsRevisionsListRevisionsOptionalParams): PagedAsyncIterableIterator<Revision>;
3789
+ /**
3790
+ * Get a revision of a Container App.
3791
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3792
+ * @param containerAppName Name of the Container App.
3793
+ * @param name Name of the Container App Revision.
3794
+ * @param options The options parameters.
3795
+ */
3796
+ getRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsGetRevisionOptionalParams): Promise<ContainerAppsRevisionsGetRevisionResponse>;
3797
+ /**
3798
+ * Activates a revision for a Container App
3799
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3800
+ * @param containerAppName Name of the Container App.
3801
+ * @param name Name of the Container App Revision to activate
3802
+ * @param options The options parameters.
3803
+ */
3804
+ activateRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsActivateRevisionOptionalParams): Promise<void>;
3805
+ /**
3806
+ * Deactivates a revision for a Container App
3807
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3808
+ * @param containerAppName Name of the Container App.
3809
+ * @param name Name of the Container App Revision to deactivate
3810
+ * @param options The options parameters.
3811
+ */
3812
+ deactivateRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsDeactivateRevisionOptionalParams): Promise<void>;
3813
+ /**
3814
+ * Restarts a revision for a Container App
3815
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
3816
+ * @param containerAppName Name of the Container App.
3817
+ * @param name Name of the Container App Revision to restart
3818
+ * @param options The options parameters.
3819
+ */
3820
+ restartRevision(resourceGroupName: string, containerAppName: string, name: string, options?: ContainerAppsRevisionsRestartRevisionOptionalParams): Promise<void>;
3821
+ }
3822
+
3823
+ /** Optional parameters. */
3824
+ export declare interface ContainerAppsRevisionsActivateRevisionOptionalParams extends coreClient.OperationOptions {
3825
+ }
3826
+
3827
+ /** Optional parameters. */
3828
+ export declare interface ContainerAppsRevisionsDeactivateRevisionOptionalParams extends coreClient.OperationOptions {
3829
+ }
3830
+
3831
+ /** Optional parameters. */
3832
+ export declare interface ContainerAppsRevisionsGetRevisionOptionalParams extends coreClient.OperationOptions {
3833
+ }
3834
+
3835
+ /** Contains response data for the getRevision operation. */
3836
+ export declare type ContainerAppsRevisionsGetRevisionResponse = Revision;
3837
+
3838
+ /** Optional parameters. */
3839
+ export declare interface ContainerAppsRevisionsListRevisionsNextOptionalParams extends coreClient.OperationOptions {
3840
+ }
3841
+
3842
+ /** Contains response data for the listRevisionsNext operation. */
3843
+ export declare type ContainerAppsRevisionsListRevisionsNextResponse = RevisionCollection;
3844
+
3845
+ /** Optional parameters. */
3846
+ export declare interface ContainerAppsRevisionsListRevisionsOptionalParams extends coreClient.OperationOptions {
3847
+ }
3848
+
3849
+ /** Contains response data for the listRevisions operation. */
3850
+ export declare type ContainerAppsRevisionsListRevisionsResponse = RevisionCollection;
3851
+
3852
+ /** Optional parameters. */
3853
+ export declare interface ContainerAppsRevisionsRestartRevisionOptionalParams extends coreClient.OperationOptions {
3854
+ }
3855
+
3543
3856
  export declare interface ContainerCpuStatistics {
3544
3857
  cpuUsage?: ContainerCpuUsage;
3545
3858
  systemCpuUsage?: number;
@@ -3582,6 +3895,14 @@ export declare interface ContainerNetworkInterfaceStatistics {
3582
3895
  txDropped?: number;
3583
3896
  }
3584
3897
 
3898
+ /** Container App container resource requirements. */
3899
+ export declare interface ContainerResources {
3900
+ /** Required CPU in cores, e.g. 0.5 */
3901
+ cpu?: number;
3902
+ /** Required memory, e.g. "250Mb" */
3903
+ memory?: string;
3904
+ }
3905
+
3585
3906
  export declare interface ContainerThrottlingData {
3586
3907
  periods?: number;
3587
3908
  throttledPeriods?: number;
@@ -3809,6 +4130,24 @@ export declare type CustomHostnameAnalysisResult = ProxyOnlyResource & {
3809
4130
  /** Defines values for CustomHostNameDnsRecordType. */
3810
4131
  export declare type CustomHostNameDnsRecordType = "CName" | "A";
3811
4132
 
4133
+ /** A hostname and its assigned sites */
4134
+ export declare type CustomHostnameSites = ProxyOnlyResource & {
4135
+ customHostname?: string;
4136
+ region?: string;
4137
+ siteResourceIds?: Identifier[];
4138
+ };
4139
+
4140
+ /** Collection of custom hostname sites */
4141
+ export declare interface CustomHostnameSitesCollection {
4142
+ /** Collection of resources. */
4143
+ value: CustomHostnameSites[];
4144
+ /**
4145
+ * Link to next page of resources.
4146
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4147
+ */
4148
+ readonly nextLink?: string;
4149
+ }
4150
+
3812
4151
  /** The configuration settings of the custom Open ID Connect provider. */
3813
4152
  export declare interface CustomOpenIdConnectProvider {
3814
4153
  /** <code>false</code> if the custom Open ID provider provider should not be enabled; otherwise, <code>true</code>. */
@@ -3819,6 +4158,55 @@ export declare interface CustomOpenIdConnectProvider {
3819
4158
  login?: OpenIdConnectLogin;
3820
4159
  }
3821
4160
 
4161
+ /** Container App container Custom scaling rule. */
4162
+ export declare interface CustomScaleRule {
4163
+ /**
4164
+ * Type of the custom scale rule
4165
+ * eg: azure-servicebus, redis etc.
4166
+ */
4167
+ type?: string;
4168
+ /** Metadata properties to describe custom scale rule. */
4169
+ metadata?: {
4170
+ [propertyName: string]: string;
4171
+ };
4172
+ /** Authentication secrets for the custom scale rule. */
4173
+ auth?: ScaleRuleAuth[];
4174
+ }
4175
+
4176
+ /** Container App Dapr configuration. */
4177
+ export declare interface Dapr {
4178
+ /** Boolean indicating if the Dapr side car is enabled */
4179
+ enabled?: boolean;
4180
+ /** Dapr application identifier */
4181
+ appId?: string;
4182
+ /** Port on which the Dapr side car */
4183
+ appPort?: number;
4184
+ /** Collection of Dapr components */
4185
+ components?: DaprComponent[];
4186
+ }
4187
+
4188
+ /** Dapr component configuration */
4189
+ export declare interface DaprComponent {
4190
+ /** Component name */
4191
+ name?: string;
4192
+ /** Component type */
4193
+ type?: string;
4194
+ /** Component version */
4195
+ version?: string;
4196
+ /** Component metadata */
4197
+ metadata?: DaprMetadata[];
4198
+ }
4199
+
4200
+ /** Container App Dapr component metadata. */
4201
+ export declare interface DaprMetadata {
4202
+ /** Metadata property name. */
4203
+ name?: string;
4204
+ /** Metadata property value. */
4205
+ value?: string;
4206
+ /** Name of the Container App secret from which to pull the metadata property value. */
4207
+ secretRef?: string;
4208
+ }
4209
+
3822
4210
  /** Database backup settings. */
3823
4211
  export declare interface DatabaseBackupSetting {
3824
4212
  /** Database type (e.g. SqlAzure / MySql). */
@@ -5236,6 +5624,13 @@ export declare interface Domains {
5236
5624
  * @param options The options parameters.
5237
5625
  */
5238
5626
  renew(resourceGroupName: string, domainName: string, options?: DomainsRenewOptionalParams): Promise<void>;
5627
+ /**
5628
+ * Transfer out domain to another registrar
5629
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
5630
+ * @param domainName Name of domain.
5631
+ * @param options The options parameters.
5632
+ */
5633
+ transferOut(resourceGroupName: string, domainName: string, options?: DomainsTransferOutOptionalParams): Promise<DomainsTransferOutResponse>;
5239
5634
  }
5240
5635
 
5241
5636
  /** Optional parameters. */
@@ -5357,6 +5752,13 @@ export declare interface DomainsRenewOptionalParams extends coreClient.Operation
5357
5752
  /** Defines values for DomainStatus. */
5358
5753
  export declare type DomainStatus = "Active" | "Awaiting" | "Cancelled" | "Confiscated" | "Disabled" | "Excluded" | "Expired" | "Failed" | "Held" | "Locked" | "Parked" | "Pending" | "Reserved" | "Reverted" | "Suspended" | "Transferred" | "Unknown" | "Unlocked" | "Unparked" | "Updated" | "JsonConverterFailed";
5359
5754
 
5755
+ /** Optional parameters. */
5756
+ export declare interface DomainsTransferOutOptionalParams extends coreClient.OperationOptions {
5757
+ }
5758
+
5759
+ /** Contains response data for the transferOut operation. */
5760
+ export declare type DomainsTransferOutResponse = Domain;
5761
+
5360
5762
  /** Optional parameters. */
5361
5763
  export declare interface DomainsUpdateOptionalParams extends coreClient.OperationOptions {
5362
5764
  }
@@ -5401,8 +5803,20 @@ export declare interface EndpointDetail {
5401
5803
  }
5402
5804
 
5403
5805
  /**
5404
- * Defines values for Enum10. \
5405
- * {@link KnownEnum10} can be used interchangeably with Enum10,
5806
+ * Defines values for EnterpriseGradeCdnStatus. \
5807
+ * {@link KnownEnterpriseGradeCdnStatus} can be used interchangeably with EnterpriseGradeCdnStatus,
5808
+ * this enum contains the known values that the service supports.
5809
+ * ### Known values supported by the service
5810
+ * **Enabled** \
5811
+ * **Enabling** \
5812
+ * **Disabled** \
5813
+ * **Disabling**
5814
+ */
5815
+ export declare type EnterpriseGradeCdnStatus = string;
5816
+
5817
+ /**
5818
+ * Defines values for Enum15. \
5819
+ * {@link KnownEnum15} can be used interchangeably with Enum15,
5406
5820
  * this enum contains the known values that the service supports.
5407
5821
  * ### Known values supported by the service
5408
5822
  * **Windows** \
@@ -5411,55 +5825,55 @@ export declare interface EndpointDetail {
5411
5825
  * **LinuxFunctions** \
5412
5826
  * **All**
5413
5827
  */
5414
- export declare type Enum10 = string;
5828
+ export declare type Enum15 = string;
5415
5829
 
5416
5830
  /**
5417
- * Defines values for Enum11. \
5418
- * {@link KnownEnum11} can be used interchangeably with Enum11,
5831
+ * Defines values for Enum16. \
5832
+ * {@link KnownEnum16} can be used interchangeably with Enum16,
5419
5833
  * this enum contains the known values that the service supports.
5420
5834
  * ### Known values supported by the service
5421
5835
  * **Windows** \
5422
5836
  * **Linux** \
5423
5837
  * **All**
5424
5838
  */
5425
- export declare type Enum11 = string;
5839
+ export declare type Enum16 = string;
5426
5840
 
5427
5841
  /**
5428
- * Defines values for Enum12. \
5429
- * {@link KnownEnum12} can be used interchangeably with Enum12,
5842
+ * Defines values for Enum17. \
5843
+ * {@link KnownEnum17} can be used interchangeably with Enum17,
5430
5844
  * this enum contains the known values that the service supports.
5431
5845
  * ### Known values supported by the service
5432
5846
  * **Windows** \
5433
5847
  * **Linux** \
5434
5848
  * **All**
5435
5849
  */
5436
- export declare type Enum12 = string;
5850
+ export declare type Enum17 = string;
5437
5851
 
5438
5852
  /**
5439
- * Defines values for Enum13. \
5440
- * {@link KnownEnum13} can be used interchangeably with Enum13,
5853
+ * Defines values for Enum18. \
5854
+ * {@link KnownEnum18} can be used interchangeably with Enum18,
5441
5855
  * this enum contains the known values that the service supports.
5442
5856
  * ### Known values supported by the service
5443
5857
  * **Windows** \
5444
5858
  * **Linux** \
5445
5859
  * **All**
5446
5860
  */
5447
- export declare type Enum13 = string;
5861
+ export declare type Enum18 = string;
5448
5862
 
5449
5863
  /**
5450
- * Defines values for Enum14. \
5451
- * {@link KnownEnum14} can be used interchangeably with Enum14,
5864
+ * Defines values for Enum19. \
5865
+ * {@link KnownEnum19} can be used interchangeably with Enum19,
5452
5866
  * this enum contains the known values that the service supports.
5453
5867
  * ### Known values supported by the service
5454
5868
  * **Windows** \
5455
5869
  * **Linux** \
5456
5870
  * **All**
5457
5871
  */
5458
- export declare type Enum14 = string;
5872
+ export declare type Enum19 = string;
5459
5873
 
5460
5874
  /**
5461
- * Defines values for Enum15. \
5462
- * {@link KnownEnum15} can be used interchangeably with Enum15,
5875
+ * Defines values for Enum20. \
5876
+ * {@link KnownEnum20} can be used interchangeably with Enum20,
5463
5877
  * this enum contains the known values that the service supports.
5464
5878
  * ### Known values supported by the service
5465
5879
  * **Windows** \
@@ -5468,7 +5882,17 @@ export declare type Enum14 = string;
5468
5882
  * **LinuxFunctions** \
5469
5883
  * **All**
5470
5884
  */
5471
- export declare type Enum15 = string;
5885
+ export declare type Enum20 = string;
5886
+
5887
+ /** Container App container environment variable. */
5888
+ export declare interface EnvironmentVar {
5889
+ /** Environment variable name. */
5890
+ name?: string;
5891
+ /** Non-secret environment variable value. */
5892
+ value?: string;
5893
+ /** Name of the Container App secret from which to pull the environment variable value. */
5894
+ secretRef?: string;
5895
+ }
5472
5896
 
5473
5897
  /** Body of the error response returned from the API. */
5474
5898
  export declare interface ErrorEntity {
@@ -6140,6 +6564,16 @@ export declare interface HttpLogsConfig {
6140
6564
  azureBlobStorage?: AzureBlobStorageHttpLogsConfig;
6141
6565
  }
6142
6566
 
6567
+ /** Container App container Custom scaling rule. */
6568
+ export declare interface HttpScaleRule {
6569
+ /** Metadata properties to describe http scale rule. */
6570
+ metadata?: {
6571
+ [propertyName: string]: string;
6572
+ };
6573
+ /** Authentication secrets for the custom scale rule. */
6574
+ auth?: ScaleRuleAuth[];
6575
+ }
6576
+
6143
6577
  /** The configuration settings of the HTTP requests for authentication and authorization requests made against App Service Authentication/Authorization. */
6144
6578
  export declare interface HttpSettings {
6145
6579
  /** <code>false</code> if the authentication/authorization responses not having the HTTPS scheme are permissible; otherwise, <code>true</code>. */
@@ -6293,6 +6727,35 @@ export declare interface InboundEnvironmentEndpointCollection {
6293
6727
  readonly nextLink?: string;
6294
6728
  }
6295
6729
 
6730
+ /** Container App Ingress configuration. */
6731
+ export declare interface Ingress {
6732
+ /**
6733
+ * Hostname.
6734
+ * NOTE: This property will not be serialized. It can only be populated by the server.
6735
+ */
6736
+ readonly fqdn?: string;
6737
+ /** Bool indicating if app exposes an external http endpoint */
6738
+ external?: boolean;
6739
+ /** Target Port in containers for traffic from ingress */
6740
+ targetPort?: number;
6741
+ /** Ingress transport protocol */
6742
+ transport?: IngressTransportMethod;
6743
+ traffic?: TrafficWeight[];
6744
+ /** Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections */
6745
+ allowInsecure?: boolean;
6746
+ }
6747
+
6748
+ /**
6749
+ * Defines values for IngressTransportMethod. \
6750
+ * {@link KnownIngressTransportMethod} can be used interchangeably with IngressTransportMethod,
6751
+ * this enum contains the known values that the service supports.
6752
+ * ### Known values supported by the service
6753
+ * **auto** \
6754
+ * **http** \
6755
+ * **http2**
6756
+ */
6757
+ export declare type IngressTransportMethod = string;
6758
+
6296
6759
  /** Defines values for InsightStatus. */
6297
6760
  export declare type InsightStatus = "Critical" | "Warning" | "Info" | "Success" | "None";
6298
6761
 
@@ -6389,6 +6852,12 @@ export declare interface KeyValuePairStringObject {
6389
6852
  /** Defines values for KeyVaultSecretStatus. */
6390
6853
  export declare type KeyVaultSecretStatus = "Initialized" | "WaitingOnCertificateOrder" | "Succeeded" | "CertificateOrderFailed" | "OperationNotPermittedOnKeyVault" | "AzureServiceUnauthorizedToAccessKeyVault" | "KeyVaultDoesNotExist" | "KeyVaultSecretDoesNotExist" | "UnknownError" | "ExternalPrivateKey" | "Unknown";
6391
6854
 
6855
+ /** Known values of {@link ActiveRevisionsMode} that the service accepts. */
6856
+ export declare enum KnownActiveRevisionsMode {
6857
+ Multiple = "multiple",
6858
+ Single = "single"
6859
+ }
6860
+
6392
6861
  /** Known values of {@link AppServiceCertificateOrderPatchResourcePropertiesAppServiceCertificateNotRenewableReasonsItem} that the service accepts. */
6393
6862
  export declare enum KnownAppServiceCertificateOrderPatchResourcePropertiesAppServiceCertificateNotRenewableReasonsItem {
6394
6863
  RegistrationStatusNotSupportedForRenewal = "RegistrationStatusNotSupportedForRenewal",
@@ -6426,6 +6895,14 @@ export declare enum KnownCheckNameResourceTypes {
6426
6895
  MicrosoftWebPublishingUsers = "Microsoft.Web/publishingUsers"
6427
6896
  }
6428
6897
 
6898
+ /** Known values of {@link ContainerAppProvisioningState} that the service accepts. */
6899
+ export declare enum KnownContainerAppProvisioningState {
6900
+ InProgress = "InProgress",
6901
+ Succeeded = "Succeeded",
6902
+ Failed = "Failed",
6903
+ Canceled = "Canceled"
6904
+ }
6905
+
6429
6906
  /** Known values of {@link CustomDomainStatus} that the service accepts. */
6430
6907
  export declare enum KnownCustomDomainStatus {
6431
6908
  RetrievingValidationToken = "RetrievingValidationToken",
@@ -6458,8 +6935,16 @@ export declare enum KnownDomainPropertiesDomainNotRenewableReasonsItem {
6458
6935
  SubscriptionNotActive = "SubscriptionNotActive"
6459
6936
  }
6460
6937
 
6461
- /** Known values of {@link Enum10} that the service accepts. */
6462
- export declare enum KnownEnum10 {
6938
+ /** Known values of {@link EnterpriseGradeCdnStatus} that the service accepts. */
6939
+ export declare enum KnownEnterpriseGradeCdnStatus {
6940
+ Enabled = "Enabled",
6941
+ Enabling = "Enabling",
6942
+ Disabled = "Disabled",
6943
+ Disabling = "Disabling"
6944
+ }
6945
+
6946
+ /** Known values of {@link Enum15} that the service accepts. */
6947
+ export declare enum KnownEnum15 {
6463
6948
  Windows = "Windows",
6464
6949
  Linux = "Linux",
6465
6950
  WindowsFunctions = "WindowsFunctions",
@@ -6467,36 +6952,36 @@ export declare enum KnownEnum10 {
6467
6952
  All = "All"
6468
6953
  }
6469
6954
 
6470
- /** Known values of {@link Enum11} that the service accepts. */
6471
- export declare enum KnownEnum11 {
6955
+ /** Known values of {@link Enum16} that the service accepts. */
6956
+ export declare enum KnownEnum16 {
6472
6957
  Windows = "Windows",
6473
6958
  Linux = "Linux",
6474
6959
  All = "All"
6475
6960
  }
6476
6961
 
6477
- /** Known values of {@link Enum12} that the service accepts. */
6478
- export declare enum KnownEnum12 {
6962
+ /** Known values of {@link Enum17} that the service accepts. */
6963
+ export declare enum KnownEnum17 {
6479
6964
  Windows = "Windows",
6480
6965
  Linux = "Linux",
6481
6966
  All = "All"
6482
6967
  }
6483
6968
 
6484
- /** Known values of {@link Enum13} that the service accepts. */
6485
- export declare enum KnownEnum13 {
6969
+ /** Known values of {@link Enum18} that the service accepts. */
6970
+ export declare enum KnownEnum18 {
6486
6971
  Windows = "Windows",
6487
6972
  Linux = "Linux",
6488
6973
  All = "All"
6489
6974
  }
6490
6975
 
6491
- /** Known values of {@link Enum14} that the service accepts. */
6492
- export declare enum KnownEnum14 {
6976
+ /** Known values of {@link Enum19} that the service accepts. */
6977
+ export declare enum KnownEnum19 {
6493
6978
  Windows = "Windows",
6494
6979
  Linux = "Linux",
6495
6980
  All = "All"
6496
6981
  }
6497
6982
 
6498
- /** Known values of {@link Enum15} that the service accepts. */
6499
- export declare enum KnownEnum15 {
6983
+ /** Known values of {@link Enum20} that the service accepts. */
6984
+ export declare enum KnownEnum20 {
6500
6985
  Windows = "Windows",
6501
6986
  Linux = "Linux",
6502
6987
  WindowsFunctions = "WindowsFunctions",
@@ -6517,6 +7002,13 @@ export declare enum KnownInAvailabilityReasonType {
6517
7002
  AlreadyExists = "AlreadyExists"
6518
7003
  }
6519
7004
 
7005
+ /** Known values of {@link IngressTransportMethod} that the service accepts. */
7006
+ export declare enum KnownIngressTransportMethod {
7007
+ Auto = "auto",
7008
+ Http = "http",
7009
+ Http2 = "http2"
7010
+ }
7011
+
6520
7012
  /** Known values of {@link IpFilterTag} that the service accepts. */
6521
7013
  export declare enum KnownIpFilterTag {
6522
7014
  Default = "Default",
@@ -6546,6 +7038,22 @@ export declare enum KnownResourceScopeType {
6546
7038
  WebSite = "WebSite"
6547
7039
  }
6548
7040
 
7041
+ /** Known values of {@link RevisionHealthState} that the service accepts. */
7042
+ export declare enum KnownRevisionHealthState {
7043
+ Healthy = "Healthy",
7044
+ Unhealthy = "Unhealthy",
7045
+ None = "None"
7046
+ }
7047
+
7048
+ /** Known values of {@link RevisionProvisioningState} that the service accepts. */
7049
+ export declare enum KnownRevisionProvisioningState {
7050
+ Provisioning = "Provisioning",
7051
+ Provisioned = "Provisioned",
7052
+ Failed = "Failed",
7053
+ Deprovisioning = "Deprovisioning",
7054
+ Deprovisioned = "Deprovisioned"
7055
+ }
7056
+
6549
7057
  /** Known values of {@link RouteType} that the service accepts. */
6550
7058
  export declare enum KnownRouteType {
6551
7059
  Default = "DEFAULT",
@@ -6631,6 +7139,8 @@ export declare type KubeEnvironment = Resource & {
6631
7139
  readonly defaultDomain?: string;
6632
7140
  /** Static IP of the KubeEnvironment */
6633
7141
  staticIp?: string;
7142
+ /** Type of Kubernetes Environment. Only supported for Container App Environments with value as Managed */
7143
+ environmentType?: string;
6634
7144
  /**
6635
7145
  * Cluster configuration which determines the ARC cluster
6636
7146
  * components types. Eg: Choosing between BuildService kind,
@@ -6643,6 +7153,8 @@ export declare type KubeEnvironment = Resource & {
6643
7153
  * supported
6644
7154
  */
6645
7155
  appLogsConfiguration?: AppLogsConfiguration;
7156
+ /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */
7157
+ containerAppsConfiguration?: ContainerAppsConfiguration;
6646
7158
  aksResourceID?: string;
6647
7159
  };
6648
7160
 
@@ -6690,6 +7202,8 @@ export declare type KubeEnvironmentPatchResource = ProxyOnlyResource & {
6690
7202
  * supported
6691
7203
  */
6692
7204
  appLogsConfiguration?: AppLogsConfiguration;
7205
+ /** Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration */
7206
+ containerAppsConfiguration?: ContainerAppsConfiguration;
6693
7207
  aksResourceID?: string;
6694
7208
  };
6695
7209
 
@@ -6911,6 +7425,20 @@ export declare interface ListBillingMetersOptionalParams extends coreClient.Oper
6911
7425
  /** Contains response data for the listBillingMeters operation. */
6912
7426
  export declare type ListBillingMetersResponse = BillingMeterCollection;
6913
7427
 
7428
+ /** Optional parameters. */
7429
+ export declare interface ListCustomHostNameSitesNextOptionalParams extends coreClient.OperationOptions {
7430
+ }
7431
+
7432
+ /** Contains response data for the listCustomHostNameSitesNext operation. */
7433
+ export declare type ListCustomHostNameSitesNextResponse = CustomHostnameSitesCollection;
7434
+
7435
+ /** Optional parameters. */
7436
+ export declare interface ListCustomHostNameSitesOptionalParams extends coreClient.OperationOptions {
7437
+ }
7438
+
7439
+ /** Contains response data for the listCustomHostNameSites operation. */
7440
+ export declare type ListCustomHostNameSitesResponse = CustomHostnameSitesCollection;
7441
+
6914
7442
  /** Optional parameters. */
6915
7443
  export declare interface ListGeoRegionsNextOptionalParams extends coreClient.OperationOptions {
6916
7444
  /** Name of SKU used to filter the regions. */
@@ -7799,7 +8327,7 @@ export declare interface Provider {
7799
8327
 
7800
8328
  /** Optional parameters. */
7801
8329
  export declare interface ProviderGetAvailableStacksNextOptionalParams extends coreClient.OperationOptions {
7802
- osTypeSelected?: Enum10;
8330
+ osTypeSelected?: Enum15;
7803
8331
  }
7804
8332
 
7805
8333
  /** Contains response data for the getAvailableStacksNext operation. */
@@ -7807,7 +8335,7 @@ export declare type ProviderGetAvailableStacksNextResponse = ApplicationStackCol
7807
8335
 
7808
8336
  /** Optional parameters. */
7809
8337
  export declare interface ProviderGetAvailableStacksOnPremNextOptionalParams extends coreClient.OperationOptions {
7810
- osTypeSelected?: Enum15;
8338
+ osTypeSelected?: Enum20;
7811
8339
  }
7812
8340
 
7813
8341
  /** Contains response data for the getAvailableStacksOnPremNext operation. */
@@ -7815,7 +8343,7 @@ export declare type ProviderGetAvailableStacksOnPremNextResponse = ApplicationSt
7815
8343
 
7816
8344
  /** Optional parameters. */
7817
8345
  export declare interface ProviderGetAvailableStacksOnPremOptionalParams extends coreClient.OperationOptions {
7818
- osTypeSelected?: Enum15;
8346
+ osTypeSelected?: Enum20;
7819
8347
  }
7820
8348
 
7821
8349
  /** Contains response data for the getAvailableStacksOnPrem operation. */
@@ -7823,7 +8351,7 @@ export declare type ProviderGetAvailableStacksOnPremResponse = ApplicationStackC
7823
8351
 
7824
8352
  /** Optional parameters. */
7825
8353
  export declare interface ProviderGetAvailableStacksOptionalParams extends coreClient.OperationOptions {
7826
- osTypeSelected?: Enum10;
8354
+ osTypeSelected?: Enum15;
7827
8355
  }
7828
8356
 
7829
8357
  /** Contains response data for the getAvailableStacks operation. */
@@ -7832,7 +8360,7 @@ export declare type ProviderGetAvailableStacksResponse = ApplicationStackCollect
7832
8360
  /** Optional parameters. */
7833
8361
  export declare interface ProviderGetFunctionAppStacksForLocationNextOptionalParams extends coreClient.OperationOptions {
7834
8362
  /** Stack OS Type */
7835
- stackOsType?: Enum12;
8363
+ stackOsType?: Enum17;
7836
8364
  }
7837
8365
 
7838
8366
  /** Contains response data for the getFunctionAppStacksForLocationNext operation. */
@@ -7841,7 +8369,7 @@ export declare type ProviderGetFunctionAppStacksForLocationNextResponse = Functi
7841
8369
  /** Optional parameters. */
7842
8370
  export declare interface ProviderGetFunctionAppStacksForLocationOptionalParams extends coreClient.OperationOptions {
7843
8371
  /** Stack OS Type */
7844
- stackOsType?: Enum12;
8372
+ stackOsType?: Enum17;
7845
8373
  }
7846
8374
 
7847
8375
  /** Contains response data for the getFunctionAppStacksForLocation operation. */
@@ -7850,7 +8378,7 @@ export declare type ProviderGetFunctionAppStacksForLocationResponse = FunctionAp
7850
8378
  /** Optional parameters. */
7851
8379
  export declare interface ProviderGetFunctionAppStacksNextOptionalParams extends coreClient.OperationOptions {
7852
8380
  /** Stack OS Type */
7853
- stackOsType?: Enum11;
8381
+ stackOsType?: Enum16;
7854
8382
  }
7855
8383
 
7856
8384
  /** Contains response data for the getFunctionAppStacksNext operation. */
@@ -7859,7 +8387,7 @@ export declare type ProviderGetFunctionAppStacksNextResponse = FunctionAppStackC
7859
8387
  /** Optional parameters. */
7860
8388
  export declare interface ProviderGetFunctionAppStacksOptionalParams extends coreClient.OperationOptions {
7861
8389
  /** Stack OS Type */
7862
- stackOsType?: Enum11;
8390
+ stackOsType?: Enum16;
7863
8391
  }
7864
8392
 
7865
8393
  /** Contains response data for the getFunctionAppStacks operation. */
@@ -7868,7 +8396,7 @@ export declare type ProviderGetFunctionAppStacksResponse = FunctionAppStackColle
7868
8396
  /** Optional parameters. */
7869
8397
  export declare interface ProviderGetWebAppStacksForLocationNextOptionalParams extends coreClient.OperationOptions {
7870
8398
  /** Stack OS Type */
7871
- stackOsType?: Enum13;
8399
+ stackOsType?: Enum18;
7872
8400
  }
7873
8401
 
7874
8402
  /** Contains response data for the getWebAppStacksForLocationNext operation. */
@@ -7877,7 +8405,7 @@ export declare type ProviderGetWebAppStacksForLocationNextResponse = WebAppStack
7877
8405
  /** Optional parameters. */
7878
8406
  export declare interface ProviderGetWebAppStacksForLocationOptionalParams extends coreClient.OperationOptions {
7879
8407
  /** Stack OS Type */
7880
- stackOsType?: Enum13;
8408
+ stackOsType?: Enum18;
7881
8409
  }
7882
8410
 
7883
8411
  /** Contains response data for the getWebAppStacksForLocation operation. */
@@ -7886,7 +8414,7 @@ export declare type ProviderGetWebAppStacksForLocationResponse = WebAppStackColl
7886
8414
  /** Optional parameters. */
7887
8415
  export declare interface ProviderGetWebAppStacksNextOptionalParams extends coreClient.OperationOptions {
7888
8416
  /** Stack OS Type */
7889
- stackOsType?: Enum14;
8417
+ stackOsType?: Enum19;
7890
8418
  }
7891
8419
 
7892
8420
  /** Contains response data for the getWebAppStacksNext operation. */
@@ -7895,7 +8423,7 @@ export declare type ProviderGetWebAppStacksNextResponse = WebAppStackCollection;
7895
8423
  /** Optional parameters. */
7896
8424
  export declare interface ProviderGetWebAppStacksOptionalParams extends coreClient.OperationOptions {
7897
8425
  /** Stack OS Type */
7898
- stackOsType?: Enum14;
8426
+ stackOsType?: Enum19;
7899
8427
  }
7900
8428
 
7901
8429
  /** Contains response data for the getWebAppStacks operation. */
@@ -8021,6 +8549,16 @@ export declare interface QueryUtterancesResults {
8021
8549
  results?: QueryUtterancesResult[];
8022
8550
  }
8023
8551
 
8552
+ /** Container App container Azure Queue based scaling rule. */
8553
+ export declare interface QueueScaleRule {
8554
+ /** Queue name. */
8555
+ queueName?: string;
8556
+ /** Queue length. */
8557
+ queueLength?: number;
8558
+ /** Authentication secrets for the queue scale rule. */
8559
+ auth?: ScaleRuleAuth[];
8560
+ }
8561
+
8024
8562
  /** Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance. */
8025
8563
  export declare interface RampUpRule {
8026
8564
  /** Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net. */
@@ -8426,6 +8964,16 @@ export declare interface RecommendationsResetAllFiltersOptionalParams extends co
8426
8964
  /** Defines values for RedundancyMode. */
8427
8965
  export declare type RedundancyMode = "None" | "Manual" | "Failover" | "ActiveActive" | "GeoRedundant";
8428
8966
 
8967
+ /** Container App Private Registry */
8968
+ export declare interface RegistryCredentials {
8969
+ /** Container Registry Server */
8970
+ server?: string;
8971
+ /** Container Registry Username */
8972
+ username?: string;
8973
+ /** The name of the Secret that contains the registry login password */
8974
+ passwordSecretRef?: string;
8975
+ }
8976
+
8429
8977
  /** Class representing certificate reissue request. */
8430
8978
  export declare type ReissueCertificateOrderRequest = ProxyOnlyResource & {
8431
8979
  /** Certificate Key Size. */
@@ -8837,6 +9385,93 @@ export declare type RestoreRequest = ProxyOnlyResource & {
8837
9385
  hostingEnvironment?: string;
8838
9386
  };
8839
9387
 
9388
+ /** Container App Revision. */
9389
+ export declare type Revision = Resource & {
9390
+ /**
9391
+ * Timestamp describing when the revision was created
9392
+ * by controller
9393
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9394
+ */
9395
+ readonly createdTime?: Date;
9396
+ /**
9397
+ * Fully qualified domain name of the revision
9398
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9399
+ */
9400
+ readonly fqdn?: string;
9401
+ /**
9402
+ * Container App Revision Template with all possible settings and the
9403
+ * defaults if user did not provide them. The defaults are populated
9404
+ * as they were at the creation time
9405
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9406
+ */
9407
+ readonly template?: Template;
9408
+ /**
9409
+ * Boolean describing if the Revision is Active
9410
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9411
+ */
9412
+ readonly active?: boolean;
9413
+ /**
9414
+ * Number of pods currently running for this revision
9415
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9416
+ */
9417
+ readonly replicas?: number;
9418
+ /**
9419
+ * Traffic weight assigned to this revision
9420
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9421
+ */
9422
+ readonly trafficWeight?: number;
9423
+ /**
9424
+ * Optional Field - Platform Error Message
9425
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9426
+ */
9427
+ readonly provisioningError?: string;
9428
+ /**
9429
+ * Current health State of the revision
9430
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9431
+ */
9432
+ readonly healthState?: RevisionHealthState;
9433
+ /**
9434
+ * Current provisioning State of the revision
9435
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9436
+ */
9437
+ readonly provisioningState?: RevisionProvisioningState;
9438
+ };
9439
+
9440
+ /** Container App Revisions collection ARM resource. */
9441
+ export declare interface RevisionCollection {
9442
+ /** Collection of resources. */
9443
+ value: Revision[];
9444
+ /**
9445
+ * Link to next page of resources.
9446
+ * NOTE: This property will not be serialized. It can only be populated by the server.
9447
+ */
9448
+ readonly nextLink?: string;
9449
+ }
9450
+
9451
+ /**
9452
+ * Defines values for RevisionHealthState. \
9453
+ * {@link KnownRevisionHealthState} can be used interchangeably with RevisionHealthState,
9454
+ * this enum contains the known values that the service supports.
9455
+ * ### Known values supported by the service
9456
+ * **Healthy** \
9457
+ * **Unhealthy** \
9458
+ * **None**
9459
+ */
9460
+ export declare type RevisionHealthState = string;
9461
+
9462
+ /**
9463
+ * Defines values for RevisionProvisioningState. \
9464
+ * {@link KnownRevisionProvisioningState} can be used interchangeably with RevisionProvisioningState,
9465
+ * this enum contains the known values that the service supports.
9466
+ * ### Known values supported by the service
9467
+ * **Provisioning** \
9468
+ * **Provisioned** \
9469
+ * **Failed** \
9470
+ * **Deprovisioning** \
9471
+ * **Deprovisioned**
9472
+ */
9473
+ export declare type RevisionProvisioningState = string;
9474
+
8840
9475
  /**
8841
9476
  * Defines values for RouteType. \
8842
9477
  * {@link KnownRouteType} can be used interchangeably with RouteType,
@@ -8858,6 +9493,36 @@ export declare interface SampleUtterance {
8858
9493
  qid?: string;
8859
9494
  }
8860
9495
 
9496
+ /** Container App scaling configurations. */
9497
+ export declare interface Scale {
9498
+ /** Optional. Minimum number of container replicas. */
9499
+ minReplicas?: number;
9500
+ /** Optional. Maximum number of container replicas. Defaults to 10 if not set. */
9501
+ maxReplicas?: number;
9502
+ /** Scaling rules. */
9503
+ rules?: ScaleRule[];
9504
+ }
9505
+
9506
+ /** Container App container scaling rule. */
9507
+ export declare interface ScaleRule {
9508
+ /** Scale Rule Name */
9509
+ name?: string;
9510
+ /** Azure Queue based scaling. */
9511
+ azureQueue?: QueueScaleRule;
9512
+ /** Custom scale rule. */
9513
+ custom?: CustomScaleRule;
9514
+ /** HTTP requests based scaling. */
9515
+ http?: HttpScaleRule;
9516
+ }
9517
+
9518
+ /** Auth Secrets for Container App Scale Rule */
9519
+ export declare interface ScaleRuleAuth {
9520
+ /** Name of the Container App secret from which to pull the auth params. */
9521
+ secretRef?: string;
9522
+ /** Trigger Parameter that uses the secret */
9523
+ triggerParameter?: string;
9524
+ }
9525
+
8861
9526
  /**
8862
9527
  * Defines values for ScmType. \
8863
9528
  * {@link KnownScmType} can be used interchangeably with ScmType,
@@ -8880,6 +9545,20 @@ export declare interface SampleUtterance {
8880
9545
  */
8881
9546
  export declare type ScmType = string;
8882
9547
 
9548
+ /** Container App Secret. */
9549
+ export declare interface Secret {
9550
+ /** Secret Name. */
9551
+ name?: string;
9552
+ /** Secret Value. */
9553
+ value?: string;
9554
+ }
9555
+
9556
+ /** Container App Secrets Collection ARM resource. */
9557
+ export declare interface SecretsCollection {
9558
+ /** Collection of resources. */
9559
+ value: ContainerAppSecret[];
9560
+ }
9561
+
8883
9562
  /** Resource metrics service provided by Microsoft.Insights resource provider. */
8884
9563
  export declare interface ServiceSpecification {
8885
9564
  metricSpecifications?: MetricSpecification[];
@@ -10380,11 +11059,10 @@ export declare type StaticSiteARMResource = Resource & {
10380
11059
  * NOTE: This property will not be serialized. It can only be populated by the server.
10381
11060
  */
10382
11061
  readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
10383
- /**
10384
- * The provider that submitted the last deployment to the primary environment of the static site.
10385
- * NOTE: This property will not be serialized. It can only be populated by the server.
10386
- */
10387
- readonly provider?: string;
11062
+ /** The provider that submitted the last deployment to the primary environment of the static site. */
11063
+ provider?: string;
11064
+ /** State indicating the status of the enterprise grade CDN serving traffic to the static web app. */
11065
+ enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
10388
11066
  };
10389
11067
 
10390
11068
  /** Static Site Build ARM resource. */
@@ -10587,11 +11265,10 @@ export declare type StaticSitePatchResource = ProxyOnlyResource & {
10587
11265
  * NOTE: This property will not be serialized. It can only be populated by the server.
10588
11266
  */
10589
11267
  readonly userProvidedFunctionApps?: StaticSiteUserProvidedFunctionApp[];
10590
- /**
10591
- * The provider that submitted the last deployment to the primary environment of the static site.
10592
- * NOTE: This property will not be serialized. It can only be populated by the server.
10593
- */
10594
- readonly provider?: string;
11268
+ /** The provider that submitted the last deployment to the primary environment of the static site. */
11269
+ provider?: string;
11270
+ /** State indicating the status of the enterprise grade CDN serving traffic to the static web app. */
11271
+ enterpriseGradeCdnStatus?: EnterpriseGradeCdnStatus;
10595
11272
  };
10596
11273
 
10597
11274
  /** Static Site Reset Properties ARM resource. */
@@ -11801,6 +12478,22 @@ export declare type SwiftVirtualNetwork = ProxyOnlyResource & {
11801
12478
  swiftSupported?: boolean;
11802
12479
  };
11803
12480
 
12481
+ /**
12482
+ * Container App versioned application definition.
12483
+ * Defines the desired state of an immutable revision.
12484
+ * Any changes to this section Will result in a new revision being created
12485
+ */
12486
+ export declare interface Template {
12487
+ /** User friendly suffix that is appended to the revision name */
12488
+ revisionSuffix?: string;
12489
+ /** List of container definitions for the Container App. */
12490
+ containers?: Container[];
12491
+ /** Scaling properties for the Container App. */
12492
+ scale?: Scale;
12493
+ /** Dapr configuration for the Container App. */
12494
+ dapr?: Dapr;
12495
+ }
12496
+
11804
12497
  /** Legal agreement for a top level domain. */
11805
12498
  export declare interface TldLegalAgreement {
11806
12499
  /** Unique identifier for the agreement. */
@@ -11924,6 +12617,16 @@ export declare interface TopLevelDomainsListOptionalParams extends coreClient.Op
11924
12617
  /** Contains response data for the list operation. */
11925
12618
  export declare type TopLevelDomainsListResponse = TopLevelDomainCollection;
11926
12619
 
12620
+ /** Traffic weight assigned to a revision */
12621
+ export declare interface TrafficWeight {
12622
+ /** Name of a revision */
12623
+ revisionName?: string;
12624
+ /** Traffic weight assigned to a revision */
12625
+ weight?: number;
12626
+ /** Indicates that the traffic weight belongs to a latest stable revision */
12627
+ latestRevision?: boolean;
12628
+ }
12629
+
11927
12630
  /** Triggered Web Job History. List of Triggered Web Job Run Information elements. */
11928
12631
  export declare type TriggeredJobHistory = ProxyOnlyResource & {
11929
12632
  /** List of triggered web job runs. */
@@ -13250,6 +13953,13 @@ export declare interface WebApps {
13250
13953
  * @param options The options parameters.
13251
13954
  */
13252
13955
  getAuthSettings(resourceGroupName: string, name: string, options?: WebAppsGetAuthSettingsOptionalParams): Promise<WebAppsGetAuthSettingsResponse>;
13956
+ /**
13957
+ * Description for Gets site's Authentication / Authorization settings for apps via the V2 format
13958
+ * @param resourceGroupName Name of the resource group to which the resource belongs.
13959
+ * @param name Name of the app.
13960
+ * @param options The options parameters.
13961
+ */
13962
+ getAuthSettingsV2WithoutSecrets(resourceGroupName: string, name: string, options?: WebAppsGetAuthSettingsV2WithoutSecretsOptionalParams): Promise<WebAppsGetAuthSettingsV2WithoutSecretsResponse>;
13253
13963
  /**
13254
13964
  * Description for Updates site's Authentication / Authorization settings for apps via the V2 format
13255
13965
  * @param resourceGroupName Name of the resource group to which the resource belongs.
@@ -16985,6 +17695,13 @@ export declare interface WebAppsGetAuthSettingsV2SlotOptionalParams extends core
16985
17695
  /** Contains response data for the getAuthSettingsV2Slot operation. */
16986
17696
  export declare type WebAppsGetAuthSettingsV2SlotResponse = SiteAuthSettingsV2;
16987
17697
 
17698
+ /** Optional parameters. */
17699
+ export declare interface WebAppsGetAuthSettingsV2WithoutSecretsOptionalParams extends coreClient.OperationOptions {
17700
+ }
17701
+
17702
+ /** Contains response data for the getAuthSettingsV2WithoutSecrets operation. */
17703
+ export declare type WebAppsGetAuthSettingsV2WithoutSecretsResponse = SiteAuthSettingsV2;
17704
+
16988
17705
  /** Optional parameters. */
16989
17706
  export declare interface WebAppsGetBackupConfigurationOptionalParams extends coreClient.OperationOptions {
16990
17707
  }
@@ -19757,6 +20474,13 @@ export declare class WebSiteManagementClient extends coreClient.ServiceClient {
19757
20474
  listBillingMeters(options?: ListBillingMetersOptionalParams): PagedAsyncIterableIterator<BillingMeter>;
19758
20475
  private listBillingMetersPagingPage;
19759
20476
  private listBillingMetersPagingAll;
20477
+ /**
20478
+ * Get custom hostnames under this subscription
20479
+ * @param options The options parameters.
20480
+ */
20481
+ listCustomHostNameSites(options?: ListCustomHostNameSitesOptionalParams): PagedAsyncIterableIterator<CustomHostnameSites>;
20482
+ private listCustomHostNameSitesPagingPage;
20483
+ private listCustomHostNameSitesPagingAll;
19760
20484
  /**
19761
20485
  * Description for Get a list of available geographical regions.
19762
20486
  * @param options The options parameters.
@@ -19820,6 +20544,11 @@ export declare class WebSiteManagementClient extends coreClient.ServiceClient {
19820
20544
  * @param options The options parameters.
19821
20545
  */
19822
20546
  checkNameAvailability(name: string, typeParam: CheckNameResourceTypes, options?: CheckNameAvailabilityOptionalParams): Promise<CheckNameAvailabilityResponse>;
20547
+ /**
20548
+ * Get custom hostnames under this subscription
20549
+ * @param options The options parameters.
20550
+ */
20551
+ private _listCustomHostNameSites;
19823
20552
  /**
19824
20553
  * Description for Gets list of available geo regions plus ministamps
19825
20554
  * @param options The options parameters.
@@ -19886,6 +20615,13 @@ export declare class WebSiteManagementClient extends coreClient.ServiceClient {
19886
20615
  * @param options The options parameters.
19887
20616
  */
19888
20617
  private _listBillingMetersNext;
20618
+ /**
20619
+ * ListCustomHostNameSitesNext
20620
+ * @param nextLink The nextLink from the previous successful call to the ListCustomHostNameSites
20621
+ * method.
20622
+ * @param options The options parameters.
20623
+ */
20624
+ private _listCustomHostNameSitesNext;
19889
20625
  /**
19890
20626
  * ListGeoRegionsNext
19891
20627
  * @param nextLink The nextLink from the previous successful call to the ListGeoRegions method.
@@ -19915,6 +20651,8 @@ export declare class WebSiteManagementClient extends coreClient.ServiceClient {
19915
20651
  appServiceEnvironments: AppServiceEnvironments;
19916
20652
  appServicePlans: AppServicePlans;
19917
20653
  certificates: Certificates;
20654
+ containerApps: ContainerApps;
20655
+ containerAppsRevisions: ContainerAppsRevisions;
19918
20656
  deletedWebApps: DeletedWebApps;
19919
20657
  diagnostics: Diagnostics;
19920
20658
  global: Global;