@pulumi/azure 6.16.0-alpha.1737093913 → 6.16.0-alpha.1737452301
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.
- package/containerservice/index.d.ts +3 -0
- package/containerservice/index.js +6 -1
- package/containerservice/index.js.map +1 -1
- package/containerservice/kubernetesClusterNodePool.d.ts +56 -42
- package/containerservice/kubernetesClusterNodePool.js +4 -0
- package/containerservice/kubernetesClusterNodePool.js.map +1 -1
- package/containerservice/registryCredentialSet.d.ts +212 -0
- package/containerservice/registryCredentialSet.js +183 -0
- package/containerservice/registryCredentialSet.js.map +1 -0
- package/costmanagement/anomalyAlert.d.ts +12 -0
- package/costmanagement/anomalyAlert.js +2 -0
- package/costmanagement/anomalyAlert.js.map +1 -1
- package/dataprotection/backupVault.d.ts +15 -3
- package/dataprotection/backupVault.js +2 -0
- package/dataprotection/backupVault.js.map +1 -1
- package/eventhub/namespace.d.ts +6 -0
- package/eventhub/namespace.js.map +1 -1
- package/mssql/index.d.ts +6 -0
- package/mssql/index.js +11 -1
- package/mssql/index.js.map +1 -1
- package/mssql/job.d.ts +125 -0
- package/mssql/job.js +109 -0
- package/mssql/job.js.map +1 -0
- package/mssql/jobSchedule.d.ts +174 -0
- package/mssql/jobSchedule.js +125 -0
- package/mssql/jobSchedule.js.map +1 -0
- package/package.json +2 -2
- package/redis/enterpriseCluster.d.ts +3 -3
- package/servicebus/namespace.d.ts +6 -0
- package/servicebus/namespace.js.map +1 -1
- package/storage/account.d.ts +6 -0
- package/storage/account.js.map +1 -1
- package/storage/container.d.ts +2 -2
- package/storage/container.js +2 -2
- package/types/input.d.ts +78 -48
- package/types/output.d.ts +82 -48
package/types/output.d.ts
CHANGED
|
@@ -10166,7 +10166,7 @@ export declare namespace appservice {
|
|
|
10166
10166
|
*/
|
|
10167
10167
|
javaVersion?: string;
|
|
10168
10168
|
/**
|
|
10169
|
-
* The version of Node to run. Possible values include `12`, `14`, `16`, `18` and `
|
|
10169
|
+
* The version of Node to run. Possible values include `12`, `14`, `16`, `18` `20` and `22`.
|
|
10170
10170
|
*/
|
|
10171
10171
|
nodeVersion?: string;
|
|
10172
10172
|
/**
|
|
@@ -12230,7 +12230,7 @@ export declare namespace appservice {
|
|
|
12230
12230
|
/**
|
|
12231
12231
|
* The Version of Java to use. Possible values include `8`, `11`, `17`, and `21`.
|
|
12232
12232
|
*
|
|
12233
|
-
* > **NOTE:** The valid version combinations for `javaVersion`, `javaServer` and `javaServerVersion` can be checked from the command line via `az webapp list-runtimes --linux`.
|
|
12233
|
+
* > **NOTE:** The valid version combinations for `javaVersion`, `javaServer` and `javaServerVersion` can be checked from the command line via `az webapp list-runtimes --os-type linux`.
|
|
12234
12234
|
*
|
|
12235
12235
|
* > **NOTE:** `javaServer`, `javaServerVersion`, and `javaVersion` must all be specified if building a java app
|
|
12236
12236
|
*/
|
|
@@ -13346,7 +13346,7 @@ export declare namespace appservice {
|
|
|
13346
13346
|
/**
|
|
13347
13347
|
* The Version of Java to use. Possible values include `8`, `11`, and `17`.
|
|
13348
13348
|
*
|
|
13349
|
-
* > **NOTE:** The valid version combinations for `javaVersion`, `javaServer` and `javaServerVersion` can be checked from the command line via `az webapp list-runtimes --linux`.
|
|
13349
|
+
* > **NOTE:** The valid version combinations for `javaVersion`, `javaServer` and `javaServerVersion` can be checked from the command line via `az webapp list-runtimes --os-type linux`.
|
|
13350
13350
|
*/
|
|
13351
13351
|
javaVersion?: string;
|
|
13352
13352
|
/**
|
|
@@ -15120,7 +15120,7 @@ export declare namespace appservice {
|
|
|
15120
15120
|
*/
|
|
15121
15121
|
javaVersion?: string;
|
|
15122
15122
|
/**
|
|
15123
|
-
* The version of Node to run. Possible values include `~12`, `~14`, `~16`, `~18` and `~
|
|
15123
|
+
* The version of Node to run. Possible values include `~12`, `~14`, `~16`, `~18` `~20` and `~22`.
|
|
15124
15124
|
*/
|
|
15125
15125
|
nodeVersion?: string;
|
|
15126
15126
|
/**
|
|
@@ -28163,6 +28163,10 @@ export declare namespace containerapp {
|
|
|
28163
28163
|
* One or more `tcpScaleRule` blocks as defined below.
|
|
28164
28164
|
*/
|
|
28165
28165
|
tcpScaleRules?: outputs.containerapp.AppTemplateTcpScaleRule[];
|
|
28166
|
+
/**
|
|
28167
|
+
* The time in seconds after the container is sent the termination signal before the process if forcibly killed.
|
|
28168
|
+
*/
|
|
28169
|
+
terminationGracePeriodSeconds?: number;
|
|
28166
28170
|
/**
|
|
28167
28171
|
* A `volume` block as detailed below.
|
|
28168
28172
|
*/
|
|
@@ -28825,6 +28829,10 @@ export declare namespace containerapp {
|
|
|
28825
28829
|
*/
|
|
28826
28830
|
revisionSuffix: string;
|
|
28827
28831
|
tcpScaleRules: outputs.containerapp.GetAppTemplateTcpScaleRule[];
|
|
28832
|
+
/**
|
|
28833
|
+
* The time in seconds after the container is sent the termination signal before the process if forcibly killed.
|
|
28834
|
+
*/
|
|
28835
|
+
terminationGracePeriodSeconds: number;
|
|
28828
28836
|
/**
|
|
28829
28837
|
* A `volume` block as detailed below.
|
|
28830
28838
|
*/
|
|
@@ -31926,179 +31934,179 @@ export declare namespace containerservice {
|
|
|
31926
31934
|
}
|
|
31927
31935
|
interface KubernetesClusterNodePoolKubeletConfig {
|
|
31928
31936
|
/**
|
|
31929
|
-
* Specifies the allow list of unsafe sysctls command or patterns (ending in `*`).
|
|
31937
|
+
* Specifies the allow list of unsafe sysctls command or patterns (ending in `*`).
|
|
31930
31938
|
*/
|
|
31931
31939
|
allowedUnsafeSysctls?: string[];
|
|
31932
31940
|
/**
|
|
31933
|
-
* Specifies the maximum number of container log files that can be present for a container. must be at least 2.
|
|
31941
|
+
* Specifies the maximum number of container log files that can be present for a container. must be at least 2.
|
|
31934
31942
|
*/
|
|
31935
31943
|
containerLogMaxLine?: number;
|
|
31936
31944
|
/**
|
|
31937
|
-
* Specifies the maximum size (e.g. 10MB) of container log file before it is rotated.
|
|
31945
|
+
* Specifies the maximum size (e.g. 10MB) of container log file before it is rotated.
|
|
31938
31946
|
*/
|
|
31939
31947
|
containerLogMaxSizeMb?: number;
|
|
31940
31948
|
/**
|
|
31941
|
-
* Is CPU CFS quota enforcement for containers enabled?
|
|
31949
|
+
* Is CPU CFS quota enforcement for containers enabled? Defaults to `true`.
|
|
31942
31950
|
*/
|
|
31943
31951
|
cpuCfsQuotaEnabled?: boolean;
|
|
31944
31952
|
/**
|
|
31945
|
-
* Specifies the CPU CFS quota period value.
|
|
31953
|
+
* Specifies the CPU CFS quota period value.
|
|
31946
31954
|
*/
|
|
31947
31955
|
cpuCfsQuotaPeriod?: string;
|
|
31948
31956
|
/**
|
|
31949
|
-
* Specifies the CPU Manager policy to use. Possible values are `none` and `static`,
|
|
31957
|
+
* Specifies the CPU Manager policy to use. Possible values are `none` and `static`,
|
|
31950
31958
|
*/
|
|
31951
31959
|
cpuManagerPolicy?: string;
|
|
31952
31960
|
/**
|
|
31953
|
-
* Specifies the percent of disk usage above which image garbage collection is always run. Must be between `0` and `100`.
|
|
31961
|
+
* Specifies the percent of disk usage above which image garbage collection is always run. Must be between `0` and `100`.
|
|
31954
31962
|
*/
|
|
31955
31963
|
imageGcHighThreshold?: number;
|
|
31956
31964
|
/**
|
|
31957
|
-
* Specifies the percent of disk usage lower than which image garbage collection is never run. Must be between `0` and `100`.
|
|
31965
|
+
* Specifies the percent of disk usage lower than which image garbage collection is never run. Must be between `0` and `100`.
|
|
31958
31966
|
*/
|
|
31959
31967
|
imageGcLowThreshold?: number;
|
|
31960
31968
|
/**
|
|
31961
|
-
* Specifies the maximum number of processes per pod.
|
|
31969
|
+
* Specifies the maximum number of processes per pod.
|
|
31962
31970
|
*/
|
|
31963
31971
|
podMaxPid?: number;
|
|
31964
31972
|
/**
|
|
31965
|
-
* Specifies the Topology Manager policy to use. Possible values are `none`, `best-effort`, `restricted` or `single-numa-node`.
|
|
31973
|
+
* Specifies the Topology Manager policy to use. Possible values are `none`, `best-effort`, `restricted` or `single-numa-node`.
|
|
31966
31974
|
*/
|
|
31967
31975
|
topologyManagerPolicy?: string;
|
|
31968
31976
|
}
|
|
31969
31977
|
interface KubernetesClusterNodePoolLinuxOsConfig {
|
|
31970
31978
|
/**
|
|
31971
|
-
* Specifies the size of swap file on each node in MB.
|
|
31979
|
+
* Specifies the size of swap file on each node in MB.
|
|
31972
31980
|
*/
|
|
31973
31981
|
swapFileSizeMb?: number;
|
|
31974
31982
|
/**
|
|
31975
|
-
* A `sysctlConfig` block as defined below.
|
|
31983
|
+
* A `sysctlConfig` block as defined below.
|
|
31976
31984
|
*/
|
|
31977
31985
|
sysctlConfig?: outputs.containerservice.KubernetesClusterNodePoolLinuxOsConfigSysctlConfig;
|
|
31978
31986
|
/**
|
|
31979
|
-
* specifies the defrag configuration for Transparent Huge Page. Possible values are `always`, `defer`, `defer+madvise`, `madvise` and `never`.
|
|
31987
|
+
* specifies the defrag configuration for Transparent Huge Page. Possible values are `always`, `defer`, `defer+madvise`, `madvise` and `never`.
|
|
31980
31988
|
*/
|
|
31981
31989
|
transparentHugePageDefrag?: string;
|
|
31982
31990
|
/**
|
|
31983
|
-
* Specifies the Transparent Huge Page enabled configuration. Possible values are `always`, `madvise` and `never`.
|
|
31991
|
+
* Specifies the Transparent Huge Page enabled configuration. Possible values are `always`, `madvise` and `never`.
|
|
31984
31992
|
*/
|
|
31985
31993
|
transparentHugePageEnabled?: string;
|
|
31986
31994
|
}
|
|
31987
31995
|
interface KubernetesClusterNodePoolLinuxOsConfigSysctlConfig {
|
|
31988
31996
|
/**
|
|
31989
|
-
* The sysctl setting fs.aio-max-nr. Must be between `65536` and `6553500`.
|
|
31997
|
+
* The sysctl setting fs.aio-max-nr. Must be between `65536` and `6553500`.
|
|
31990
31998
|
*/
|
|
31991
31999
|
fsAioMaxNr?: number;
|
|
31992
32000
|
/**
|
|
31993
|
-
* The sysctl setting fs.file-max. Must be between `8192` and `12000500`.
|
|
32001
|
+
* The sysctl setting fs.file-max. Must be between `8192` and `12000500`.
|
|
31994
32002
|
*/
|
|
31995
32003
|
fsFileMax?: number;
|
|
31996
32004
|
/**
|
|
31997
|
-
* The sysctl setting fs.inotify.max_user_watches. Must be between `781250` and `2097152`.
|
|
32005
|
+
* The sysctl setting fs.inotify.max_user_watches. Must be between `781250` and `2097152`.
|
|
31998
32006
|
*/
|
|
31999
32007
|
fsInotifyMaxUserWatches?: number;
|
|
32000
32008
|
/**
|
|
32001
|
-
* The sysctl setting fs.nr_open. Must be between `8192` and `20000500`.
|
|
32009
|
+
* The sysctl setting fs.nr_open. Must be between `8192` and `20000500`.
|
|
32002
32010
|
*/
|
|
32003
32011
|
fsNrOpen?: number;
|
|
32004
32012
|
/**
|
|
32005
|
-
* The sysctl setting kernel.threads-max. Must be between `20` and `513785`.
|
|
32013
|
+
* The sysctl setting kernel.threads-max. Must be between `20` and `513785`.
|
|
32006
32014
|
*/
|
|
32007
32015
|
kernelThreadsMax?: number;
|
|
32008
32016
|
/**
|
|
32009
|
-
* The sysctl setting net.core.netdev_max_backlog. Must be between `1000` and `3240000`.
|
|
32017
|
+
* The sysctl setting net.core.netdev_max_backlog. Must be between `1000` and `3240000`.
|
|
32010
32018
|
*/
|
|
32011
32019
|
netCoreNetdevMaxBacklog?: number;
|
|
32012
32020
|
/**
|
|
32013
|
-
* The sysctl setting net.core.optmem_max. Must be between `20480` and `4194304`.
|
|
32021
|
+
* The sysctl setting net.core.optmem_max. Must be between `20480` and `4194304`.
|
|
32014
32022
|
*/
|
|
32015
32023
|
netCoreOptmemMax?: number;
|
|
32016
32024
|
/**
|
|
32017
|
-
* The sysctl setting net.core.rmem_default. Must be between `212992` and `134217728`.
|
|
32025
|
+
* The sysctl setting net.core.rmem_default. Must be between `212992` and `134217728`.
|
|
32018
32026
|
*/
|
|
32019
32027
|
netCoreRmemDefault?: number;
|
|
32020
32028
|
/**
|
|
32021
|
-
* The sysctl setting net.core.rmem_max. Must be between `212992` and `134217728`.
|
|
32029
|
+
* The sysctl setting net.core.rmem_max. Must be between `212992` and `134217728`.
|
|
32022
32030
|
*/
|
|
32023
32031
|
netCoreRmemMax?: number;
|
|
32024
32032
|
/**
|
|
32025
|
-
* The sysctl setting net.core.somaxconn. Must be between `4096` and `3240000`.
|
|
32033
|
+
* The sysctl setting net.core.somaxconn. Must be between `4096` and `3240000`.
|
|
32026
32034
|
*/
|
|
32027
32035
|
netCoreSomaxconn?: number;
|
|
32028
32036
|
/**
|
|
32029
|
-
* The sysctl setting net.core.wmem_default. Must be between `212992` and `134217728`.
|
|
32037
|
+
* The sysctl setting net.core.wmem_default. Must be between `212992` and `134217728`.
|
|
32030
32038
|
*/
|
|
32031
32039
|
netCoreWmemDefault?: number;
|
|
32032
32040
|
/**
|
|
32033
|
-
* The sysctl setting net.core.wmem_max. Must be between `212992` and `134217728`.
|
|
32041
|
+
* The sysctl setting net.core.wmem_max. Must be between `212992` and `134217728`.
|
|
32034
32042
|
*/
|
|
32035
32043
|
netCoreWmemMax?: number;
|
|
32036
32044
|
/**
|
|
32037
|
-
* The sysctl setting net.ipv4.ip_local_port_range max value. Must be between `32768` and `65535`.
|
|
32045
|
+
* The sysctl setting net.ipv4.ip_local_port_range max value. Must be between `32768` and `65535`.
|
|
32038
32046
|
*/
|
|
32039
32047
|
netIpv4IpLocalPortRangeMax?: number;
|
|
32040
32048
|
/**
|
|
32041
|
-
* The sysctl setting net.ipv4.ip_local_port_range min value. Must be between `1024` and `60999`.
|
|
32049
|
+
* The sysctl setting net.ipv4.ip_local_port_range min value. Must be between `1024` and `60999`.
|
|
32042
32050
|
*/
|
|
32043
32051
|
netIpv4IpLocalPortRangeMin?: number;
|
|
32044
32052
|
/**
|
|
32045
|
-
* The sysctl setting net.ipv4.neigh.default.gc_thresh1. Must be between `128` and `80000`.
|
|
32053
|
+
* The sysctl setting net.ipv4.neigh.default.gc_thresh1. Must be between `128` and `80000`.
|
|
32046
32054
|
*/
|
|
32047
32055
|
netIpv4NeighDefaultGcThresh1?: number;
|
|
32048
32056
|
/**
|
|
32049
|
-
* The sysctl setting net.ipv4.neigh.default.gc_thresh2. Must be between `512` and `90000`.
|
|
32057
|
+
* The sysctl setting net.ipv4.neigh.default.gc_thresh2. Must be between `512` and `90000`.
|
|
32050
32058
|
*/
|
|
32051
32059
|
netIpv4NeighDefaultGcThresh2?: number;
|
|
32052
32060
|
/**
|
|
32053
|
-
* The sysctl setting net.ipv4.neigh.default.gc_thresh3. Must be between `1024` and `100000`.
|
|
32061
|
+
* The sysctl setting net.ipv4.neigh.default.gc_thresh3. Must be between `1024` and `100000`.
|
|
32054
32062
|
*/
|
|
32055
32063
|
netIpv4NeighDefaultGcThresh3?: number;
|
|
32056
32064
|
/**
|
|
32057
|
-
* The sysctl setting net.ipv4.tcp_fin_timeout. Must be between `5` and `120`.
|
|
32065
|
+
* The sysctl setting net.ipv4.tcp_fin_timeout. Must be between `5` and `120`.
|
|
32058
32066
|
*/
|
|
32059
32067
|
netIpv4TcpFinTimeout?: number;
|
|
32060
32068
|
/**
|
|
32061
|
-
* The sysctl setting net.ipv4.tcp_keepalive_intvl. Must be between `10` and `90`.
|
|
32069
|
+
* The sysctl setting net.ipv4.tcp_keepalive_intvl. Must be between `10` and `90`.
|
|
32062
32070
|
*/
|
|
32063
32071
|
netIpv4TcpKeepaliveIntvl?: number;
|
|
32064
32072
|
/**
|
|
32065
|
-
* The sysctl setting net.ipv4.tcp_keepalive_probes. Must be between `1` and `15`.
|
|
32073
|
+
* The sysctl setting net.ipv4.tcp_keepalive_probes. Must be between `1` and `15`.
|
|
32066
32074
|
*/
|
|
32067
32075
|
netIpv4TcpKeepaliveProbes?: number;
|
|
32068
32076
|
/**
|
|
32069
|
-
* The sysctl setting net.ipv4.tcp_keepalive_time. Must be between `30` and `432000`.
|
|
32077
|
+
* The sysctl setting net.ipv4.tcp_keepalive_time. Must be between `30` and `432000`.
|
|
32070
32078
|
*/
|
|
32071
32079
|
netIpv4TcpKeepaliveTime?: number;
|
|
32072
32080
|
/**
|
|
32073
|
-
* The sysctl setting net.ipv4.tcp_max_syn_backlog. Must be between `128` and `3240000`.
|
|
32081
|
+
* The sysctl setting net.ipv4.tcp_max_syn_backlog. Must be between `128` and `3240000`.
|
|
32074
32082
|
*/
|
|
32075
32083
|
netIpv4TcpMaxSynBacklog?: number;
|
|
32076
32084
|
/**
|
|
32077
|
-
* The sysctl setting net.ipv4.tcp_max_tw_buckets. Must be between `8000` and `1440000`.
|
|
32085
|
+
* The sysctl setting net.ipv4.tcp_max_tw_buckets. Must be between `8000` and `1440000`.
|
|
32078
32086
|
*/
|
|
32079
32087
|
netIpv4TcpMaxTwBuckets?: number;
|
|
32080
32088
|
/**
|
|
32081
|
-
* Is sysctl setting net.ipv4.tcp_tw_reuse enabled?
|
|
32089
|
+
* Is sysctl setting net.ipv4.tcp_tw_reuse enabled?
|
|
32082
32090
|
*/
|
|
32083
32091
|
netIpv4TcpTwReuse?: boolean;
|
|
32084
32092
|
/**
|
|
32085
|
-
* The sysctl setting net.netfilter.nf_conntrack_buckets. Must be between `65536` and `524288`.
|
|
32093
|
+
* The sysctl setting net.netfilter.nf_conntrack_buckets. Must be between `65536` and `524288`.
|
|
32086
32094
|
*/
|
|
32087
32095
|
netNetfilterNfConntrackBuckets?: number;
|
|
32088
32096
|
/**
|
|
32089
|
-
* The sysctl setting net.netfilter.nf_conntrack_max. Must be between `131072` and `2097152`.
|
|
32097
|
+
* The sysctl setting net.netfilter.nf_conntrack_max. Must be between `131072` and `2097152`.
|
|
32090
32098
|
*/
|
|
32091
32099
|
netNetfilterNfConntrackMax?: number;
|
|
32092
32100
|
/**
|
|
32093
|
-
* The sysctl setting vm.max_map_count. Must be between `65530` and `262144`.
|
|
32101
|
+
* The sysctl setting vm.max_map_count. Must be between `65530` and `262144`.
|
|
32094
32102
|
*/
|
|
32095
32103
|
vmMaxMapCount?: number;
|
|
32096
32104
|
/**
|
|
32097
|
-
* The sysctl setting vm.swappiness. Must be between `0` and `100`.
|
|
32105
|
+
* The sysctl setting vm.swappiness. Must be between `0` and `100`.
|
|
32098
32106
|
*/
|
|
32099
32107
|
vmSwappiness?: number;
|
|
32100
32108
|
/**
|
|
32101
|
-
* The sysctl setting vm.vfs_cache_pressure. Must be between `0` and `100`.
|
|
32109
|
+
* The sysctl setting vm.vfs_cache_pressure. Must be between `0` and `100`.
|
|
32102
32110
|
*/
|
|
32103
32111
|
vmVfsCachePressure?: number;
|
|
32104
32112
|
}
|
|
@@ -32142,7 +32150,7 @@ export declare namespace containerservice {
|
|
|
32142
32150
|
*/
|
|
32143
32151
|
maxSurge: string;
|
|
32144
32152
|
/**
|
|
32145
|
-
* The amount of time in minutes to wait after draining a node and before reimaging and moving on to next node.
|
|
32153
|
+
* The amount of time in minutes to wait after draining a node and before reimaging and moving on to next node.
|
|
32146
32154
|
*/
|
|
32147
32155
|
nodeSoakDurationInMinutes?: number;
|
|
32148
32156
|
}
|
|
@@ -32331,6 +32339,32 @@ export declare namespace containerservice {
|
|
|
32331
32339
|
fqdn: string;
|
|
32332
32340
|
kubernetesVersion: string;
|
|
32333
32341
|
}
|
|
32342
|
+
interface RegistryCredentialSetAuthenticationCredentials {
|
|
32343
|
+
/**
|
|
32344
|
+
* The URI of the secret containing the password in a Key Vault.
|
|
32345
|
+
*
|
|
32346
|
+
* > NOTE: Be aware that you will need to permit the Identity that is created for the Container Registry to have `get` on secrets to the Key Vault, e.g. using the `azure.keyvault.AccessPolicy` resource.
|
|
32347
|
+
*/
|
|
32348
|
+
passwordSecretId: string;
|
|
32349
|
+
/**
|
|
32350
|
+
* The URI of the secret containing the username in a Key Vault.
|
|
32351
|
+
*/
|
|
32352
|
+
usernameSecretId: string;
|
|
32353
|
+
}
|
|
32354
|
+
interface RegistryCredentialSetIdentity {
|
|
32355
|
+
/**
|
|
32356
|
+
* The principal ID of the Identity.
|
|
32357
|
+
*/
|
|
32358
|
+
principalId: string;
|
|
32359
|
+
/**
|
|
32360
|
+
* The tenant ID of the Identity.
|
|
32361
|
+
*/
|
|
32362
|
+
tenantId: string;
|
|
32363
|
+
/**
|
|
32364
|
+
* The type of Managed Service Identity that is configured on for the Container Registry Credential Set. Currently the only possible value is `SystemAssigned`.
|
|
32365
|
+
*/
|
|
32366
|
+
type: string;
|
|
32367
|
+
}
|
|
32334
32368
|
interface RegistryEncryption {
|
|
32335
32369
|
/**
|
|
32336
32370
|
* The client ID of the managed identity associated with the encryption key.
|