Exemplo n.º 1
0
 ///GENMHASH:7F0A9CB4CB6BBC98F72CF50A81EBFBF4:BBFAD2E04A2C1C43EB33356B7F7A2AD6
 public StorageProfileTypes StorageProfile()
 {
     return(StorageProfileTypes.Parse(this.Inner.StorageProfile));
 }
Exemplo n.º 2
0
        ///GENMHASH:A7BB228682D91D0BE3771990EB9A8B24:A767CA83A1AD0D08917EABEC893AD28A
        public ContainerServiceAgentPoolImpl WithStorageProfile(StorageProfileTypes storageProfile)
        {
            this.Inner.StorageProfile = storageProfile.Value;

            return(this);
        }
Exemplo n.º 3
0
        ///GENMHASH:471813C8A7A79400855C3DE35D356C78:9EF17E64DA70F46F3B3EC162AB9FD2A5
        public ContainerServiceImpl WithMasterStorageProfile(StorageProfileTypes storageProfile)
        {
            this.Inner.MasterProfile.StorageProfile = storageProfile.Value;

            return(this);
        }
Exemplo n.º 4
0
 /// <summary>
 /// Specifies the storage kind to be used for every machine in master pool.
 /// </summary>
 /// <param name="storageProfile">The storage kind to be used for every machine in the master pool.</param>
 /// <return>The next stage of the definition.</return>
 ContainerService.Definition.IWithCreate ContainerService.Definition.IWithMasterStorageProfile.WithMasterStorageProfile(StorageProfileTypes storageProfile)
 {
     return(this.WithMasterStorageProfile(storageProfile));
 }
Exemplo n.º 5
0
 /// <summary>
 /// Specifies the storage kind to be used for each virtual machine in the agent pool.
 /// </summary>
 /// <param name="storageProfile">The storage kind to be used for each virtual machine in the agent pool.</param>
 /// <return>The next stage of the definition.</return>
 ContainerServiceAgentPool.Definition.IWithAttach <ContainerService.Definition.IWithCreate> ContainerServiceAgentPool.Definition.IWithStorageProfile <ContainerService.Definition.IWithCreate> .WithStorageProfile(StorageProfileTypes storageProfile)
 {
     return(this.WithStorageProfile(storageProfile));
 }