@@ -16,8 +16,10 @@ protected FluidRelayContainerCollection() { }
1616 public partial class FluidRelayContainerData : Azure . ResourceManager . Models . ResourceData
1717 {
1818 public FluidRelayContainerData ( ) { }
19+ public System . DateTimeOffset ? CreationOn { get { throw null ; } }
1920 public System . Guid ? FrsContainerId { get { throw null ; } }
2021 public System . Guid ? FrsTenantId { get { throw null ; } }
22+ public System . DateTimeOffset ? LastAccessOn { get { throw null ; } }
2123 public Azure . ResourceManager . FluidRelay . Models . ProvisioningState ? ProvisioningState { get { throw null ; } }
2224 }
2325 public partial class FluidRelayContainerResource : Azure . ResourceManager . ArmResource
@@ -62,10 +64,12 @@ protected FluidRelayServerCollection() { }
6264 public partial class FluidRelayServerData : Azure . ResourceManager . Models . TrackedResourceData
6365 {
6466 public FluidRelayServerData ( Azure . Core . AzureLocation location ) : base ( default ( Azure . Core . AzureLocation ) ) { }
67+ public Azure . ResourceManager . FluidRelay . Models . CustomerManagedKeyEncryptionProperties CustomerManagedKeyEncryption { get { throw null ; } set { } }
6568 public Azure . ResourceManager . FluidRelay . Models . FluidRelayEndpoints FluidRelayEndpoints { get { throw null ; } }
6669 public System . Guid ? FrsTenantId { get { throw null ; } }
6770 public Azure . ResourceManager . Models . ManagedServiceIdentity Identity { get { throw null ; } set { } }
6871 public Azure . ResourceManager . FluidRelay . Models . ProvisioningState ? ProvisioningState { get { throw null ; } set { } }
72+ public Azure . ResourceManager . FluidRelay . Models . StorageSku ? StorageSku { get { throw null ; } set { } }
6973 }
7074 public partial class FluidRelayServerResource : Azure . ResourceManager . ArmResource
7175 {
@@ -97,10 +101,28 @@ protected FluidRelayServerResource() { }
97101}
98102namespace Azure . ResourceManager . FluidRelay . Models
99103{
104+ public enum CmkIdentityType
105+ {
106+ SystemAssigned = 0 ,
107+ UserAssigned = 1 ,
108+ }
109+ public partial class CustomerManagedKeyEncryptionProperties
110+ {
111+ public CustomerManagedKeyEncryptionProperties ( ) { }
112+ public Azure . ResourceManager . FluidRelay . Models . CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentity KeyEncryptionKeyIdentity { get { throw null ; } set { } }
113+ public System . Uri KeyEncryptionKeyUri { get { throw null ; } set { } }
114+ }
115+ public partial class CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentity
116+ {
117+ public CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentity ( ) { }
118+ public Azure . ResourceManager . FluidRelay . Models . CmkIdentityType ? IdentityType { get { throw null ; } set { } }
119+ public string UserAssignedIdentityResourceId { get { throw null ; } set { } }
120+ }
100121 public partial class FluidRelayEndpoints
101122 {
102123 internal FluidRelayEndpoints ( ) { }
103124 public System . Collections . Generic . IReadOnlyList < string > OrdererEndpoints { get { throw null ; } }
125+ public System . Collections . Generic . IReadOnlyList < string > ServiceEndpoints { get { throw null ; } }
104126 public System . Collections . Generic . IReadOnlyList < string > StorageEndpoints { get { throw null ; } }
105127 }
106128 public partial class FluidRelayServerKeys
@@ -112,6 +134,7 @@ internal FluidRelayServerKeys() { }
112134 public partial class FluidRelayServerPatch
113135 {
114136 public FluidRelayServerPatch ( ) { }
137+ public Azure . ResourceManager . FluidRelay . Models . CustomerManagedKeyEncryptionProperties CustomerManagedKeyEncryption { get { throw null ; } set { } }
115138 public Azure . ResourceManager . Models . ManagedServiceIdentity Identity { get { throw null ; } set { } }
116139 public Azure . Core . AzureLocation ? Location { get { throw null ; } set { } }
117140 public System . Collections . Generic . IDictionary < string , string > Tags { get { throw null ; } }
@@ -160,4 +183,22 @@ public partial class RegenerateKeyContent
160183 public RegenerateKeyContent ( Azure . ResourceManager . FluidRelay . Models . KeyName keyName ) { }
161184 public Azure . ResourceManager . FluidRelay . Models . KeyName KeyName { get { throw null ; } }
162185 }
186+ [ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
187+ public readonly partial struct StorageSku : System . IEquatable < Azure . ResourceManager . FluidRelay . Models . StorageSku >
188+ {
189+ private readonly object _dummy ;
190+ private readonly int _dummyPrimitive ;
191+ public StorageSku ( string value ) { throw null ; }
192+ public static Azure . ResourceManager . FluidRelay . Models . StorageSku Basic { get { throw null ; } }
193+ public static Azure . ResourceManager . FluidRelay . Models . StorageSku Standard { get { throw null ; } }
194+ public bool Equals ( Azure . ResourceManager . FluidRelay . Models . StorageSku other ) { throw null ; }
195+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
196+ public override bool Equals ( object obj ) { throw null ; }
197+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
198+ public override int GetHashCode ( ) { throw null ; }
199+ public static bool operator == ( Azure . ResourceManager . FluidRelay . Models . StorageSku left , Azure . ResourceManager . FluidRelay . Models . StorageSku right ) { throw null ; }
200+ public static implicit operator Azure . ResourceManager . FluidRelay . Models . StorageSku ( string value ) { throw null ; }
201+ public static bool operator != ( Azure . ResourceManager . FluidRelay . Models . StorageSku left , Azure . ResourceManager . FluidRelay . Models . StorageSku right ) { throw null ; }
202+ public override string ToString ( ) { throw null ; }
203+ }
163204}
0 commit comments