Skip to content

Commit

Permalink
feat: add new RPCs GetSettings, UpdateSettings and new messages Setti…
Browse files Browse the repository at this point in the history
…ngs, NotificationSettings, GetSettingsRequest, UpdateSettingsRequest

PiperOrigin-RevId: 568252764

Source-Link: googleapis/googleapis@c981bf5

Source-Link: googleapis/googleapis-gen@a37d28d
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuQWR2aXNvcnlOb3RpZmljYXRpb25zLlYxLy5Pd2xCb3QueWFtbCIsImgiOiJhMzdkMjhkYWNiY2QxOGZhZjUyOTdkMmZkZmFlMjlmZWEwMGQ5NmJkIn0=
  • Loading branch information
gcf-owl-bot[bot] authored and jskeet committed Sep 25, 2023
1 parent 8f008d6 commit 881c034
Show file tree
Hide file tree
Showing 17 changed files with 2,681 additions and 35 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_async_flattened]
using Google.Cloud.AdvisoryNotifications.V1;
using System.Threading.Tasks;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for GetSettingsAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task GetSettingsAsync()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = await AdvisoryNotificationsServiceClient.CreateAsync();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/settings";
// Make the request
Settings response = await advisoryNotificationsServiceClient.GetSettingsAsync(name);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_async_flattened]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_async]
using Google.Cloud.AdvisoryNotifications.V1;
using System.Threading.Tasks;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for GetSettingsAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task GetSettingsRequestObjectAsync()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = await AdvisoryNotificationsServiceClient.CreateAsync();
// Initialize request argument(s)
GetSettingsRequest request = new GetSettingsRequest
{
SettingsName = SettingsName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
};
// Make the request
Settings response = await advisoryNotificationsServiceClient.GetSettingsAsync(request);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_async]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_sync]
using Google.Cloud.AdvisoryNotifications.V1;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for GetSettings</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public void GetSettingsRequestObject()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = AdvisoryNotificationsServiceClient.Create();
// Initialize request argument(s)
GetSettingsRequest request = new GetSettingsRequest
{
SettingsName = SettingsName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]"),
};
// Make the request
Settings response = advisoryNotificationsServiceClient.GetSettings(request);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_sync]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_async_flattened_resourceNames]
using Google.Cloud.AdvisoryNotifications.V1;
using System.Threading.Tasks;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for GetSettingsAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task GetSettingsResourceNamesAsync()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = await AdvisoryNotificationsServiceClient.CreateAsync();
// Initialize request argument(s)
SettingsName name = SettingsName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
Settings response = await advisoryNotificationsServiceClient.GetSettingsAsync(name);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_async_flattened_resourceNames]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_sync_flattened_resourceNames]
using Google.Cloud.AdvisoryNotifications.V1;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for GetSettings</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public void GetSettingsResourceNames()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = AdvisoryNotificationsServiceClient.Create();
// Initialize request argument(s)
SettingsName name = SettingsName.FromOrganizationLocation("[ORGANIZATION]", "[LOCATION]");
// Make the request
Settings response = advisoryNotificationsServiceClient.GetSettings(name);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_sync_flattened_resourceNames]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_sync_flattened]
using Google.Cloud.AdvisoryNotifications.V1;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for GetSettings</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public void GetSettings()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = AdvisoryNotificationsServiceClient.Create();
// Initialize request argument(s)
string name = "organizations/[ORGANIZATION]/locations/[LOCATION]/settings";
// Make the request
Settings response = advisoryNotificationsServiceClient.GetSettings(name);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_GetSettings_sync_flattened]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_UpdateSettings_async_flattened]
using Google.Cloud.AdvisoryNotifications.V1;
using System.Threading.Tasks;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for UpdateSettingsAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task UpdateSettingsAsync()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = await AdvisoryNotificationsServiceClient.CreateAsync();
// Initialize request argument(s)
Settings settings = new Settings();
// Make the request
Settings response = await advisoryNotificationsServiceClient.UpdateSettingsAsync(settings);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_UpdateSettings_async_flattened]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated code. DO NOT EDIT!

namespace GoogleCSharpSnippets
{
// [START advisorynotifications_v1_generated_AdvisoryNotificationsService_UpdateSettings_async]
using Google.Cloud.AdvisoryNotifications.V1;
using System.Threading.Tasks;

public sealed partial class GeneratedAdvisoryNotificationsServiceClientSnippets
{
/// <summary>Snippet for UpdateSettingsAsync</summary>
/// <remarks>
/// This snippet has been automatically generated and should be regarded as a code template only.
/// It will require modifications to work:
/// - It may require correct/in-range values for request initialization.
/// - It may require specifying regional endpoints when creating the service client as shown in
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
/// </remarks>
public async Task UpdateSettingsRequestObjectAsync()
{
// Create client
AdvisoryNotificationsServiceClient advisoryNotificationsServiceClient = await AdvisoryNotificationsServiceClient.CreateAsync();
// Initialize request argument(s)
UpdateSettingsRequest request = new UpdateSettingsRequest
{
Settings = new Settings(),
};
// Make the request
Settings response = await advisoryNotificationsServiceClient.UpdateSettingsAsync(request);
}
}
// [END advisorynotifications_v1_generated_AdvisoryNotificationsService_UpdateSettings_async]
}
Loading

0 comments on commit 881c034

Please sign in to comment.