You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Retrieves the value of a specified environment parameter with options to decode it from Base64
63
+
/// and decrypt it using the provided encryption key.
64
+
/// </summary>
65
+
/// <param name="environment">The name of the environment from which to retrieve the parameter.</param>
66
+
/// <param name="parameter">The name of the parameter to retrieve.</param>
67
+
/// <param name="decode">A boolean value indicating whether to decode the parameter value from Base64.</param>
68
+
/// <param name="encryptionKey">An optional encryption key used to decrypt the parameter value. If <c>null</c> or empty, no decryption is performed.</param>
69
+
/// <returns>The processed parameter value as a string if it exists; otherwise, the default value.</returns>
/// Updates an existing environment with the specified name and parameters,
131
+
/// optionally encoding and encrypting the parameter values.
132
+
/// </summary>
133
+
/// <param name="name">The name of the environment to update.</param>
134
+
/// <param name="parameters">A dictionary of parameters to update in the environment. If <c>null</c>, an empty dictionary is used.</param>
135
+
/// <param name="encode">Indicates whether the parameter values should be converted to Base64.</param>
136
+
/// <param name="encryptionKey">An optional encryption key used to encrypt the parameter values. If <c>null</c> or empty, no encryption is applied.</param>
137
+
/// <returns>An integer representing the HTTP status code:
138
+
/// <c>201</c> if the environment was created successfully,
139
+
/// <c>204</c> if the environment was updated successfully.
0 commit comments