Contains the information required to retrieve an app or cookbook from a repository. For more information, see Creating Apps or Custom Recipes and Cookbooks .

 public CreateAppRequest WithAppSource(Source appSource)
 {
     this.appSource = appSource;
     return this;
 }
 public UpdateStackRequest WithCustomCookbooksSource(Source customCookbooksSource)
 {
     this.customCookbooksSource = customCookbooksSource;
     return this;
 }
 public App WithAppSource(Source appSource)
 {
     this.appSource = appSource;
     return this;
 }
Beispiel #4
0
 /// <summary>
 /// Sets the CustomCookbooksSource property
 /// </summary>
 /// <param name="customCookbooksSource">The value to set for the CustomCookbooksSource property </param>
 /// <returns>this instance</returns>
 public Stack WithCustomCookbooksSource(Source customCookbooksSource)
 {
     this.customCookbooksSource = customCookbooksSource;
     return this;
 }
Beispiel #5
0
 public UpdateStackRequest WithCustomCookbooksSource(Source customCookbooksSource)
 {
     this.customCookbooksSource = customCookbooksSource;
     return(this);
 }