@azure/arm-appcontainers 1.0.0 → 1.1.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.
@@ -819,6 +819,50 @@ export interface Volume {
819
819
  storageName?: string;
820
820
  }
821
821
 
822
+ /** Custom domain analysis. */
823
+ export interface CustomHostnameAnalysisResult {
824
+ /**
825
+ * Host name that was analyzed
826
+ * NOTE: This property will not be serialized. It can only be populated by the server.
827
+ */
828
+ readonly hostName?: string;
829
+ /**
830
+ * <code>true</code> if hostname is already verified; otherwise, <code>false</code>.
831
+ * NOTE: This property will not be serialized. It can only be populated by the server.
832
+ */
833
+ readonly isHostnameAlreadyVerified?: boolean;
834
+ /**
835
+ * DNS verification test result.
836
+ * NOTE: This property will not be serialized. It can only be populated by the server.
837
+ */
838
+ readonly customDomainVerificationTest?: DnsVerificationTestResult;
839
+ /**
840
+ * Raw failure information if DNS verification fails.
841
+ * NOTE: This property will not be serialized. It can only be populated by the server.
842
+ */
843
+ readonly customDomainVerificationFailureInfo?: DefaultErrorResponse;
844
+ /**
845
+ * <code>true</code> if there is a conflict on the Container App's managed environment; otherwise, <code>false</code>.
846
+ * NOTE: This property will not be serialized. It can only be populated by the server.
847
+ */
848
+ readonly hasConflictOnManagedEnvironment?: boolean;
849
+ /**
850
+ * Name of the conflicting Container App on the Managed Environment if it's within the same subscription.
851
+ * NOTE: This property will not be serialized. It can only be populated by the server.
852
+ */
853
+ readonly conflictingContainerAppResourceId?: string;
854
+ /** CName records visible for this hostname. */
855
+ cNameRecords?: string[];
856
+ /** TXT records visible for this hostname. */
857
+ txtRecords?: string[];
858
+ /** A records visible for this hostname. */
859
+ aRecords?: string[];
860
+ /** Alternate CName records visible for this hostname. */
861
+ alternateCNameRecords?: string[];
862
+ /** Alternate TXT records visible for this hostname. */
863
+ alternateTxtRecords?: string[];
864
+ }
865
+
822
866
  /** Container App Secrets Collection ARM resource. */
823
867
  export interface SecretsCollection {
824
868
  /** Collection of resources. */
@@ -945,7 +989,7 @@ export interface ManagedEnvironmentsCollection {
945
989
 
946
990
  /** Configuration properties for apps environment to join a Virtual Network */
947
991
  export interface VnetConfiguration {
948
- /** Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource, must provide ControlPlaneSubnetResourceId and AppSubnetResourceId if enabling this property */
992
+ /** Boolean indicating the environment only has an internal load balancer. These environments do not have a public static IP resource. They must provide runtimeSubnetId and infrastructureSubnetId if enabling this property */
949
993
  internal?: boolean;
950
994
  /** Resource ID of a subnet for infrastructure components. This subnet must be in the same VNET as the subnet defined in runtimeSubnetId. Must not overlap with any other provided IP ranges. */
951
995
  infrastructureSubnetId?: string;
@@ -1136,18 +1180,18 @@ export interface AzureCredentials {
1136
1180
  }
1137
1181
 
1138
1182
  /** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
1139
- export type ProxyResource = Resource & {};
1183
+ export interface ProxyResource extends Resource {}
1140
1184
 
1141
1185
  /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
1142
- export type TrackedResource = Resource & {
1186
+ export interface TrackedResource extends Resource {
1143
1187
  /** Resource tags. */
1144
1188
  tags?: { [propertyName: string]: string };
1145
1189
  /** The geo-location where the resource lives */
1146
1190
  location: string;
1147
- };
1191
+ }
1148
1192
 
1149
1193
  /** Configuration settings for the Azure ContainerApp Service Authentication / Authorization feature. */
1150
- export type AuthConfig = ProxyResource & {
1194
+ export interface AuthConfig extends ProxyResource {
1151
1195
  /** The configuration settings of the platform of ContainerApp Service Authentication/Authorization. */
1152
1196
  platform?: AuthPlatform;
1153
1197
  /** The configuration settings that determines the validation flow of users using Service Authentication/Authorization. */
@@ -1158,54 +1202,10 @@ export type AuthConfig = ProxyResource & {
1158
1202
  login?: Login;
1159
1203
  /** The configuration settings of the HTTP requests for authentication and authorization requests made against ContainerApp Service Authentication/Authorization. */
1160
1204
  httpSettings?: HttpSettings;
1161
- };
1162
-
1163
- /** Custom domain analysis. */
1164
- export type CustomHostnameAnalysisResult = ProxyResource & {
1165
- /**
1166
- * Host name that was analyzed
1167
- * NOTE: This property will not be serialized. It can only be populated by the server.
1168
- */
1169
- readonly hostName?: string;
1170
- /**
1171
- * <code>true</code> if hostname is already verified; otherwise, <code>false</code>.
1172
- * NOTE: This property will not be serialized. It can only be populated by the server.
1173
- */
1174
- readonly isHostnameAlreadyVerified?: boolean;
1175
- /**
1176
- * DNS verification test result.
1177
- * NOTE: This property will not be serialized. It can only be populated by the server.
1178
- */
1179
- readonly customDomainVerificationTest?: DnsVerificationTestResult;
1180
- /**
1181
- * Raw failure information if DNS verification fails.
1182
- * NOTE: This property will not be serialized. It can only be populated by the server.
1183
- */
1184
- readonly customDomainVerificationFailureInfo?: DefaultErrorResponse;
1185
- /**
1186
- * <code>true</code> if there is a conflict on the Container App's managed environment; otherwise, <code>false</code>.
1187
- * NOTE: This property will not be serialized. It can only be populated by the server.
1188
- */
1189
- readonly hasConflictOnManagedEnvironment?: boolean;
1190
- /**
1191
- * Name of the conflicting Container App on the Managed Environment if it's within the same subscription.
1192
- * NOTE: This property will not be serialized. It can only be populated by the server.
1193
- */
1194
- readonly conflictingContainerAppResourceId?: string;
1195
- /** CName records visible for this hostname. */
1196
- cNameRecords?: string[];
1197
- /** TXT records visible for this hostname. */
1198
- txtRecords?: string[];
1199
- /** A records visible for this hostname. */
1200
- aRecords?: string[];
1201
- /** Alternate CName records visible for this hostname. */
1202
- alternateCNameRecords?: string[];
1203
- /** Alternate TXT records visible for this hostname. */
1204
- alternateTxtRecords?: string[];
1205
- };
1205
+ }
1206
1206
 
1207
1207
  /** Container App Revision. */
1208
- export type Revision = ProxyResource & {
1208
+ export interface Revision extends ProxyResource {
1209
1209
  /**
1210
1210
  * Timestamp describing when the revision was created
1211
1211
  * by controller
@@ -1254,10 +1254,10 @@ export type Revision = ProxyResource & {
1254
1254
  * NOTE: This property will not be serialized. It can only be populated by the server.
1255
1255
  */
1256
1256
  readonly provisioningState?: RevisionProvisioningState;
1257
- };
1257
+ }
1258
1258
 
1259
1259
  /** Container App Revision Replica. */
1260
- export type Replica = ProxyResource & {
1260
+ export interface Replica extends ProxyResource {
1261
1261
  /**
1262
1262
  * Timestamp describing when the pod was created by controller
1263
1263
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1265,10 +1265,10 @@ export type Replica = ProxyResource & {
1265
1265
  readonly createdTime?: Date;
1266
1266
  /** The containers collection under a replica. */
1267
1267
  containers?: ReplicaContainer[];
1268
- };
1268
+ }
1269
1269
 
1270
1270
  /** Dapr Component. */
1271
- export type DaprComponent = ProxyResource & {
1271
+ export interface DaprComponent extends ProxyResource {
1272
1272
  /** Component type */
1273
1273
  componentType?: string;
1274
1274
  /** Component version */
@@ -1283,16 +1283,16 @@ export type DaprComponent = ProxyResource & {
1283
1283
  metadata?: DaprMetadata[];
1284
1284
  /** Names of container apps that can use this Dapr component */
1285
1285
  scopes?: string[];
1286
- };
1286
+ }
1287
1287
 
1288
1288
  /** Storage resource for managedEnvironment. */
1289
- export type ManagedEnvironmentStorage = ProxyResource & {
1289
+ export interface ManagedEnvironmentStorage extends ProxyResource {
1290
1290
  /** Storage properties */
1291
1291
  properties?: ManagedEnvironmentStorageProperties;
1292
- };
1292
+ }
1293
1293
 
1294
1294
  /** Container App SourceControl. */
1295
- export type SourceControl = ProxyResource & {
1295
+ export interface SourceControl extends ProxyResource {
1296
1296
  /**
1297
1297
  * Current provisioning State of the operation
1298
1298
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1308,10 +1308,10 @@ export type SourceControl = ProxyResource & {
1308
1308
  * as they were at the creation time
1309
1309
  */
1310
1310
  githubActionConfiguration?: GithubActionConfiguration;
1311
- };
1311
+ }
1312
1312
 
1313
1313
  /** Container App. */
1314
- export type ContainerApp = TrackedResource & {
1314
+ export interface ContainerApp extends TrackedResource {
1315
1315
  /** managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code. */
1316
1316
  identity?: ManagedServiceIdentity;
1317
1317
  /**
@@ -1344,11 +1344,11 @@ export type ContainerApp = TrackedResource & {
1344
1344
  * Outbound IP Addresses for container app.
1345
1345
  * NOTE: This property will not be serialized. It can only be populated by the server.
1346
1346
  */
1347
- readonly outboundIPAddresses?: string[];
1348
- };
1347
+ readonly outboundIpAddresses?: string[];
1348
+ }
1349
1349
 
1350
1350
  /** An environment for hosting container apps */
1351
- export type ManagedEnvironment = TrackedResource & {
1351
+ export interface ManagedEnvironment extends TrackedResource {
1352
1352
  /**
1353
1353
  * Provisioning state of the Environment.
1354
1354
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1383,19 +1383,23 @@ export type ManagedEnvironment = TrackedResource & {
1383
1383
  appLogsConfiguration?: AppLogsConfiguration;
1384
1384
  /** Whether or not this Managed Environment is zone-redundant. */
1385
1385
  zoneRedundant?: boolean;
1386
- };
1386
+ }
1387
1387
 
1388
1388
  /** Certificate used for Custom Domain bindings of Container Apps in a Managed Environment */
1389
- export type Certificate = TrackedResource & {
1389
+ export interface Certificate extends TrackedResource {
1390
1390
  /** Certificate resource specific properties */
1391
1391
  properties?: CertificateProperties;
1392
- };
1392
+ }
1393
1393
 
1394
1394
  /** Known values of {@link CreatedByType} that the service accepts. */
1395
1395
  export enum KnownCreatedByType {
1396
+ /** User */
1396
1397
  User = "User",
1398
+ /** Application */
1397
1399
  Application = "Application",
1400
+ /** ManagedIdentity */
1398
1401
  ManagedIdentity = "ManagedIdentity",
1402
+ /** Key */
1399
1403
  Key = "Key"
1400
1404
  }
1401
1405
 
@@ -1413,9 +1417,13 @@ export type CreatedByType = string;
1413
1417
 
1414
1418
  /** Known values of {@link ManagedServiceIdentityType} that the service accepts. */
1415
1419
  export enum KnownManagedServiceIdentityType {
1420
+ /** None */
1416
1421
  None = "None",
1422
+ /** SystemAssigned */
1417
1423
  SystemAssigned = "SystemAssigned",
1424
+ /** UserAssigned */
1418
1425
  UserAssigned = "UserAssigned",
1426
+ /** SystemAssignedUserAssigned */
1419
1427
  SystemAssignedUserAssigned = "SystemAssigned,UserAssigned"
1420
1428
  }
1421
1429
 
@@ -1433,9 +1441,13 @@ export type ManagedServiceIdentityType = string;
1433
1441
 
1434
1442
  /** Known values of {@link ContainerAppProvisioningState} that the service accepts. */
1435
1443
  export enum KnownContainerAppProvisioningState {
1444
+ /** InProgress */
1436
1445
  InProgress = "InProgress",
1446
+ /** Succeeded */
1437
1447
  Succeeded = "Succeeded",
1448
+ /** Failed */
1438
1449
  Failed = "Failed",
1450
+ /** Canceled */
1439
1451
  Canceled = "Canceled"
1440
1452
  }
1441
1453
 
@@ -1453,7 +1465,9 @@ export type ContainerAppProvisioningState = string;
1453
1465
 
1454
1466
  /** Known values of {@link ActiveRevisionsMode} that the service accepts. */
1455
1467
  export enum KnownActiveRevisionsMode {
1468
+ /** Multiple */
1456
1469
  Multiple = "Multiple",
1470
+ /** Single */
1457
1471
  Single = "Single"
1458
1472
  }
1459
1473
 
@@ -1469,8 +1483,11 @@ export type ActiveRevisionsMode = string;
1469
1483
 
1470
1484
  /** Known values of {@link IngressTransportMethod} that the service accepts. */
1471
1485
  export enum KnownIngressTransportMethod {
1486
+ /** Auto */
1472
1487
  Auto = "auto",
1488
+ /** Http */
1473
1489
  Http = "http",
1490
+ /** Http2 */
1474
1491
  Http2 = "http2"
1475
1492
  }
1476
1493
 
@@ -1487,7 +1504,9 @@ export type IngressTransportMethod = string;
1487
1504
 
1488
1505
  /** Known values of {@link BindingType} that the service accepts. */
1489
1506
  export enum KnownBindingType {
1507
+ /** Disabled */
1490
1508
  Disabled = "Disabled",
1509
+ /** SniEnabled */
1491
1510
  SniEnabled = "SniEnabled"
1492
1511
  }
1493
1512
 
@@ -1503,7 +1522,9 @@ export type BindingType = string;
1503
1522
 
1504
1523
  /** Known values of {@link AppProtocol} that the service accepts. */
1505
1524
  export enum KnownAppProtocol {
1525
+ /** Http */
1506
1526
  Http = "http",
1527
+ /** Grpc */
1507
1528
  Grpc = "grpc"
1508
1529
  }
1509
1530
 
@@ -1519,7 +1540,9 @@ export type AppProtocol = string;
1519
1540
 
1520
1541
  /** Known values of {@link Scheme} that the service accepts. */
1521
1542
  export enum KnownScheme {
1543
+ /** Http */
1522
1544
  Http = "HTTP",
1545
+ /** Https */
1523
1546
  Https = "HTTPS"
1524
1547
  }
1525
1548
 
@@ -1535,8 +1558,11 @@ export type Scheme = string;
1535
1558
 
1536
1559
  /** Known values of {@link Type} that the service accepts. */
1537
1560
  export enum KnownType {
1561
+ /** Liveness */
1538
1562
  Liveness = "Liveness",
1563
+ /** Readiness */
1539
1564
  Readiness = "Readiness",
1565
+ /** Startup */
1540
1566
  Startup = "Startup"
1541
1567
  }
1542
1568
 
@@ -1553,7 +1579,9 @@ export type Type = string;
1553
1579
 
1554
1580
  /** Known values of {@link StorageType} that the service accepts. */
1555
1581
  export enum KnownStorageType {
1582
+ /** AzureFile */
1556
1583
  AzureFile = "AzureFile",
1584
+ /** EmptyDir */
1557
1585
  EmptyDir = "EmptyDir"
1558
1586
  }
1559
1587
 
@@ -1569,8 +1597,11 @@ export type StorageType = string;
1569
1597
 
1570
1598
  /** Known values of {@link RevisionHealthState} that the service accepts. */
1571
1599
  export enum KnownRevisionHealthState {
1600
+ /** Healthy */
1572
1601
  Healthy = "Healthy",
1602
+ /** Unhealthy */
1573
1603
  Unhealthy = "Unhealthy",
1604
+ /** None */
1574
1605
  None = "None"
1575
1606
  }
1576
1607
 
@@ -1587,10 +1618,15 @@ export type RevisionHealthState = string;
1587
1618
 
1588
1619
  /** Known values of {@link RevisionProvisioningState} that the service accepts. */
1589
1620
  export enum KnownRevisionProvisioningState {
1621
+ /** Provisioning */
1590
1622
  Provisioning = "Provisioning",
1623
+ /** Provisioned */
1591
1624
  Provisioned = "Provisioned",
1625
+ /** Failed */
1592
1626
  Failed = "Failed",
1627
+ /** Deprovisioning */
1593
1628
  Deprovisioning = "Deprovisioning",
1629
+ /** Deprovisioned */
1594
1630
  Deprovisioned = "Deprovisioned"
1595
1631
  }
1596
1632
 
@@ -1609,15 +1645,25 @@ export type RevisionProvisioningState = string;
1609
1645
 
1610
1646
  /** Known values of {@link EnvironmentProvisioningState} that the service accepts. */
1611
1647
  export enum KnownEnvironmentProvisioningState {
1648
+ /** Succeeded */
1612
1649
  Succeeded = "Succeeded",
1650
+ /** Failed */
1613
1651
  Failed = "Failed",
1652
+ /** Canceled */
1614
1653
  Canceled = "Canceled",
1654
+ /** Waiting */
1615
1655
  Waiting = "Waiting",
1656
+ /** InitializationInProgress */
1616
1657
  InitializationInProgress = "InitializationInProgress",
1658
+ /** InfrastructureSetupInProgress */
1617
1659
  InfrastructureSetupInProgress = "InfrastructureSetupInProgress",
1660
+ /** InfrastructureSetupComplete */
1618
1661
  InfrastructureSetupComplete = "InfrastructureSetupComplete",
1662
+ /** ScheduledForDelete */
1619
1663
  ScheduledForDelete = "ScheduledForDelete",
1664
+ /** UpgradeRequested */
1620
1665
  UpgradeRequested = "UpgradeRequested",
1666
+ /** UpgradeFailed */
1621
1667
  UpgradeFailed = "UpgradeFailed"
1622
1668
  }
1623
1669
 
@@ -1641,10 +1687,15 @@ export type EnvironmentProvisioningState = string;
1641
1687
 
1642
1688
  /** Known values of {@link CertificateProvisioningState} that the service accepts. */
1643
1689
  export enum KnownCertificateProvisioningState {
1690
+ /** Succeeded */
1644
1691
  Succeeded = "Succeeded",
1692
+ /** Failed */
1645
1693
  Failed = "Failed",
1694
+ /** Canceled */
1646
1695
  Canceled = "Canceled",
1696
+ /** DeleteFailed */
1647
1697
  DeleteFailed = "DeleteFailed",
1698
+ /** Pending */
1648
1699
  Pending = "Pending"
1649
1700
  }
1650
1701
 
@@ -1663,7 +1714,9 @@ export type CertificateProvisioningState = string;
1663
1714
 
1664
1715
  /** Known values of {@link CheckNameAvailabilityReason} that the service accepts. */
1665
1716
  export enum KnownCheckNameAvailabilityReason {
1717
+ /** Invalid */
1666
1718
  Invalid = "Invalid",
1719
+ /** AlreadyExists */
1667
1720
  AlreadyExists = "AlreadyExists"
1668
1721
  }
1669
1722
 
@@ -1679,7 +1732,9 @@ export type CheckNameAvailabilityReason = string;
1679
1732
 
1680
1733
  /** Known values of {@link AccessMode} that the service accepts. */
1681
1734
  export enum KnownAccessMode {
1735
+ /** ReadOnly */
1682
1736
  ReadOnly = "ReadOnly",
1737
+ /** ReadWrite */
1683
1738
  ReadWrite = "ReadWrite"
1684
1739
  }
1685
1740
 
@@ -1695,9 +1750,13 @@ export type AccessMode = string;
1695
1750
 
1696
1751
  /** Known values of {@link SourceControlOperationState} that the service accepts. */
1697
1752
  export enum KnownSourceControlOperationState {
1753
+ /** InProgress */
1698
1754
  InProgress = "InProgress",
1755
+ /** Succeeded */
1699
1756
  Succeeded = "Succeeded",
1757
+ /** Failed */
1700
1758
  Failed = "Failed",
1759
+ /** Canceled */
1701
1760
  Canceled = "Canceled"
1702
1761
  }
1703
1762
 
@@ -2149,6 +2149,113 @@ export const Volume: coreClient.CompositeMapper = {
2149
2149
  }
2150
2150
  };
2151
2151
 
2152
+ export const CustomHostnameAnalysisResult: coreClient.CompositeMapper = {
2153
+ type: {
2154
+ name: "Composite",
2155
+ className: "CustomHostnameAnalysisResult",
2156
+ modelProperties: {
2157
+ hostName: {
2158
+ serializedName: "hostName",
2159
+ readOnly: true,
2160
+ type: {
2161
+ name: "String"
2162
+ }
2163
+ },
2164
+ isHostnameAlreadyVerified: {
2165
+ serializedName: "isHostnameAlreadyVerified",
2166
+ readOnly: true,
2167
+ type: {
2168
+ name: "Boolean"
2169
+ }
2170
+ },
2171
+ customDomainVerificationTest: {
2172
+ serializedName: "customDomainVerificationTest",
2173
+ readOnly: true,
2174
+ type: {
2175
+ name: "Enum",
2176
+ allowedValues: ["Passed", "Failed", "Skipped"]
2177
+ }
2178
+ },
2179
+ customDomainVerificationFailureInfo: {
2180
+ serializedName: "customDomainVerificationFailureInfo",
2181
+ type: {
2182
+ name: "Composite",
2183
+ className: "DefaultErrorResponse"
2184
+ }
2185
+ },
2186
+ hasConflictOnManagedEnvironment: {
2187
+ serializedName: "hasConflictOnManagedEnvironment",
2188
+ readOnly: true,
2189
+ type: {
2190
+ name: "Boolean"
2191
+ }
2192
+ },
2193
+ conflictingContainerAppResourceId: {
2194
+ serializedName: "conflictingContainerAppResourceId",
2195
+ readOnly: true,
2196
+ type: {
2197
+ name: "String"
2198
+ }
2199
+ },
2200
+ cNameRecords: {
2201
+ serializedName: "cNameRecords",
2202
+ type: {
2203
+ name: "Sequence",
2204
+ element: {
2205
+ type: {
2206
+ name: "String"
2207
+ }
2208
+ }
2209
+ }
2210
+ },
2211
+ txtRecords: {
2212
+ serializedName: "txtRecords",
2213
+ type: {
2214
+ name: "Sequence",
2215
+ element: {
2216
+ type: {
2217
+ name: "String"
2218
+ }
2219
+ }
2220
+ }
2221
+ },
2222
+ aRecords: {
2223
+ serializedName: "aRecords",
2224
+ type: {
2225
+ name: "Sequence",
2226
+ element: {
2227
+ type: {
2228
+ name: "String"
2229
+ }
2230
+ }
2231
+ }
2232
+ },
2233
+ alternateCNameRecords: {
2234
+ serializedName: "alternateCNameRecords",
2235
+ type: {
2236
+ name: "Sequence",
2237
+ element: {
2238
+ type: {
2239
+ name: "String"
2240
+ }
2241
+ }
2242
+ }
2243
+ },
2244
+ alternateTxtRecords: {
2245
+ serializedName: "alternateTxtRecords",
2246
+ type: {
2247
+ name: "Sequence",
2248
+ element: {
2249
+ type: {
2250
+ name: "String"
2251
+ }
2252
+ }
2253
+ }
2254
+ }
2255
+ }
2256
+ }
2257
+ };
2258
+
2152
2259
  export const SecretsCollection: coreClient.CompositeMapper = {
2153
2260
  type: {
2154
2261
  name: "Composite",
@@ -3041,114 +3148,6 @@ export const AuthConfig: coreClient.CompositeMapper = {
3041
3148
  }
3042
3149
  };
3043
3150
 
3044
- export const CustomHostnameAnalysisResult: coreClient.CompositeMapper = {
3045
- type: {
3046
- name: "Composite",
3047
- className: "CustomHostnameAnalysisResult",
3048
- modelProperties: {
3049
- ...ProxyResource.type.modelProperties,
3050
- hostName: {
3051
- serializedName: "properties.hostName",
3052
- readOnly: true,
3053
- type: {
3054
- name: "String"
3055
- }
3056
- },
3057
- isHostnameAlreadyVerified: {
3058
- serializedName: "properties.isHostnameAlreadyVerified",
3059
- readOnly: true,
3060
- type: {
3061
- name: "Boolean"
3062
- }
3063
- },
3064
- customDomainVerificationTest: {
3065
- serializedName: "properties.customDomainVerificationTest",
3066
- readOnly: true,
3067
- type: {
3068
- name: "Enum",
3069
- allowedValues: ["Passed", "Failed", "Skipped"]
3070
- }
3071
- },
3072
- customDomainVerificationFailureInfo: {
3073
- serializedName: "properties.customDomainVerificationFailureInfo",
3074
- type: {
3075
- name: "Composite",
3076
- className: "DefaultErrorResponse"
3077
- }
3078
- },
3079
- hasConflictOnManagedEnvironment: {
3080
- serializedName: "properties.hasConflictOnManagedEnvironment",
3081
- readOnly: true,
3082
- type: {
3083
- name: "Boolean"
3084
- }
3085
- },
3086
- conflictingContainerAppResourceId: {
3087
- serializedName: "properties.conflictingContainerAppResourceId",
3088
- readOnly: true,
3089
- type: {
3090
- name: "String"
3091
- }
3092
- },
3093
- cNameRecords: {
3094
- serializedName: "properties.cNameRecords",
3095
- type: {
3096
- name: "Sequence",
3097
- element: {
3098
- type: {
3099
- name: "String"
3100
- }
3101
- }
3102
- }
3103
- },
3104
- txtRecords: {
3105
- serializedName: "properties.txtRecords",
3106
- type: {
3107
- name: "Sequence",
3108
- element: {
3109
- type: {
3110
- name: "String"
3111
- }
3112
- }
3113
- }
3114
- },
3115
- aRecords: {
3116
- serializedName: "properties.aRecords",
3117
- type: {
3118
- name: "Sequence",
3119
- element: {
3120
- type: {
3121
- name: "String"
3122
- }
3123
- }
3124
- }
3125
- },
3126
- alternateCNameRecords: {
3127
- serializedName: "properties.alternateCNameRecords",
3128
- type: {
3129
- name: "Sequence",
3130
- element: {
3131
- type: {
3132
- name: "String"
3133
- }
3134
- }
3135
- }
3136
- },
3137
- alternateTxtRecords: {
3138
- serializedName: "properties.alternateTxtRecords",
3139
- type: {
3140
- name: "Sequence",
3141
- element: {
3142
- type: {
3143
- name: "String"
3144
- }
3145
- }
3146
- }
3147
- }
3148
- }
3149
- }
3150
- };
3151
-
3152
3151
  export const Revision: coreClient.CompositeMapper = {
3153
3152
  type: {
3154
3153
  name: "Composite",
@@ -3434,7 +3433,7 @@ export const ContainerApp: coreClient.CompositeMapper = {
3434
3433
  className: "Template"
3435
3434
  }
3436
3435
  },
3437
- outboundIPAddresses: {
3436
+ outboundIpAddresses: {
3438
3437
  serializedName: "properties.outboundIPAddresses",
3439
3438
  readOnly: true,
3440
3439
  type: {