/// <summary>Snippet for GetAsync</summary>
        public async Task GetAsync()
        {
            // Snippet: GetAsync(string, string, CallSettings)
            // Additional: GetAsync(string, string, CancellationToken)
            // Create client
            SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();

            // Initialize request argument(s)
            string project   = "";
            string sslPolicy = "";
            // Make the request
            SslPolicy response = await sslPoliciesClient.GetAsync(project, sslPolicy);

            // End snippet
        }
        /// <summary>Snippet for GetAsync</summary>
        public async Task GetRequestObjectAsync()
        {
            // Snippet: GetAsync(GetSslPolicyRequest, CallSettings)
            // Additional: GetAsync(GetSslPolicyRequest, CancellationToken)
            // Create client
            SslPoliciesClient sslPoliciesClient = await SslPoliciesClient.CreateAsync();

            // Initialize request argument(s)
            GetSslPolicyRequest request = new GetSslPolicyRequest
            {
                Project   = "",
                SslPolicy = "",
            };
            // Make the request
            SslPolicy response = await sslPoliciesClient.GetAsync(request);

            // End snippet
        }