public abstract class UptimeCheckServiceClient
Reference documentation and code samples for the Google Cloud Monitoring v3 API class UptimeCheckServiceClient.
UptimeCheckService client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Monitoring.V3Assembly
Google.Cloud.Monitoring.V3.dll
Remarks
The UptimeCheckService API is used to manage (list, create, delete, edit) Uptime check configurations in the Stackdriver Monitoring product. An Uptime check is a piece of configuration that determines which resources and services to monitor for availability. These configurations can also be configured interactively by navigating to the Cloud Console, selecting the appropriate project, clicking on "Monitoring" on the left-hand side to navigate to Stackdriver, and then clicking on "Uptime".
Properties
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the UptimeCheckService service, which is a host of "monitoring.googleapis.com" and a port of 443.
Type | Description |
String |
DefaultScopes
public static IReadOnlyList<string> DefaultScopes { get; }
The default UptimeCheckService scopes.
Type | Description |
IReadOnlyList<String> |
The default UptimeCheckService scopes are:
GrpcClient
public virtual UptimeCheckService.UptimeCheckServiceClient GrpcClient { get; }
The underlying gRPC UptimeCheckService client
Type | Description |
UptimeCheckService.UptimeCheckServiceClient |
ServiceMetadata
public static ServiceMetadata ServiceMetadata { get; }
The service metadata associated with this client type.
Type | Description |
ServiceMetadata |
Methods
Create()
public static UptimeCheckServiceClient Create()
Synchronously creates a UptimeCheckServiceClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use UptimeCheckServiceClientBuilder .
Type | Description |
UptimeCheckServiceClient | The created UptimeCheckServiceClient. |
CreateAsync(CancellationToken)
public static Task<UptimeCheckServiceClient> CreateAsync(CancellationToken cancellationToken = default(CancellationToken))
Asynchronously creates a UptimeCheckServiceClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use UptimeCheckServiceClientBuilder .
Name | Description |
cancellationToken | CancellationToken The CancellationToken to use while creating the client. |
Type | Description |
Task<UptimeCheckServiceClient> | The task representing the created UptimeCheckServiceClient. |
CreateUptimeCheckConfig(IResourceName, UptimeCheckConfig, CallSettings)
public virtual UptimeCheckConfig CreateUptimeCheckConfig(IResourceName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | IResourceName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
UptimeCheckConfig | The RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
IResourceName parent = new UnparsedResourceName("a/wildcard/resource");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = uptimeCheckServiceClient.CreateUptimeCheckConfig(parent, uptimeCheckConfig);
CreateUptimeCheckConfig(FolderName, UptimeCheckConfig, CallSettings)
public virtual UptimeCheckConfig CreateUptimeCheckConfig(FolderName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | FolderName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
UptimeCheckConfig | The RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = uptimeCheckServiceClient.CreateUptimeCheckConfig(parent, uptimeCheckConfig);
CreateUptimeCheckConfig(OrganizationName, UptimeCheckConfig, CallSettings)
public virtual UptimeCheckConfig CreateUptimeCheckConfig(OrganizationName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | OrganizationName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
UptimeCheckConfig | The RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = uptimeCheckServiceClient.CreateUptimeCheckConfig(parent, uptimeCheckConfig);
CreateUptimeCheckConfig(ProjectName, UptimeCheckConfig, CallSettings)
public virtual UptimeCheckConfig CreateUptimeCheckConfig(ProjectName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | ProjectName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
UptimeCheckConfig | The RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = uptimeCheckServiceClient.CreateUptimeCheckConfig(parent, uptimeCheckConfig);
CreateUptimeCheckConfig(CreateUptimeCheckConfigRequest, CallSettings)
public virtual UptimeCheckConfig CreateUptimeCheckConfig(CreateUptimeCheckConfigRequest request, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
request | CreateUptimeCheckConfigRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
UptimeCheckConfig | The RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
CreateUptimeCheckConfigRequest request = new CreateUptimeCheckConfigRequest
{
ParentAsProjectName = ProjectName.FromProject("[PROJECT]"),
UptimeCheckConfig = new UptimeCheckConfig(),
};
// Make the request
UptimeCheckConfig response = uptimeCheckServiceClient.CreateUptimeCheckConfig(request);
CreateUptimeCheckConfig(String, UptimeCheckConfig, CallSettings)
public virtual UptimeCheckConfig CreateUptimeCheckConfig(string parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | String Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
UptimeCheckConfig | The RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
string parent = "projects/[PROJECT]";
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = uptimeCheckServiceClient.CreateUptimeCheckConfig(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(IResourceName, UptimeCheckConfig, CallSettings)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(IResourceName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | IResourceName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
IResourceName parent = new UnparsedResourceName("a/wildcard/resource");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(IResourceName, UptimeCheckConfig, CancellationToken)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(IResourceName parent, UptimeCheckConfig uptimeCheckConfig, CancellationToken cancellationToken)
Creates a new Uptime check configuration.
Name | Description |
parent | IResourceName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
IResourceName parent = new UnparsedResourceName("a/wildcard/resource");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(FolderName, UptimeCheckConfig, CallSettings)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(FolderName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | FolderName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(FolderName, UptimeCheckConfig, CancellationToken)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(FolderName parent, UptimeCheckConfig uptimeCheckConfig, CancellationToken cancellationToken)
Creates a new Uptime check configuration.
Name | Description |
parent | FolderName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(OrganizationName, UptimeCheckConfig, CallSettings)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(OrganizationName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | OrganizationName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(OrganizationName, UptimeCheckConfig, CancellationToken)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(OrganizationName parent, UptimeCheckConfig uptimeCheckConfig, CancellationToken cancellationToken)
Creates a new Uptime check configuration.
Name | Description |
parent | OrganizationName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(ProjectName, UptimeCheckConfig, CallSettings)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(ProjectName parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | ProjectName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(ProjectName, UptimeCheckConfig, CancellationToken)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(ProjectName parent, UptimeCheckConfig uptimeCheckConfig, CancellationToken cancellationToken)
Creates a new Uptime check configuration.
Name | Description |
parent | ProjectName Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
ProjectName parent = ProjectName.FromProject("[PROJECT]");
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(CreateUptimeCheckConfigRequest, CallSettings)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(CreateUptimeCheckConfigRequest request, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
request | CreateUptimeCheckConfigRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
CreateUptimeCheckConfigRequest request = new CreateUptimeCheckConfigRequest
{
ParentAsProjectName = ProjectName.FromProject("[PROJECT]"),
UptimeCheckConfig = new UptimeCheckConfig(),
};
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(request);
CreateUptimeCheckConfigAsync(CreateUptimeCheckConfigRequest, CancellationToken)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(CreateUptimeCheckConfigRequest request, CancellationToken cancellationToken)
Creates a new Uptime check configuration.
Name | Description |
request | CreateUptimeCheckConfigRequest The request object containing all of the parameters for the API call. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
CreateUptimeCheckConfigRequest request = new CreateUptimeCheckConfigRequest
{
ParentAsProjectName = ProjectName.FromProject("[PROJECT]"),
UptimeCheckConfig = new UptimeCheckConfig(),
};
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(request);
CreateUptimeCheckConfigAsync(String, UptimeCheckConfig, CallSettings)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(string parent, UptimeCheckConfig uptimeCheckConfig, CallSettings callSettings = null)
Creates a new Uptime check configuration.
Name | Description |
parent | String Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]";
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
CreateUptimeCheckConfigAsync(String, UptimeCheckConfig, CancellationToken)
public virtual Task<UptimeCheckConfig> CreateUptimeCheckConfigAsync(string parent, UptimeCheckConfig uptimeCheckConfig, CancellationToken cancellationToken)
Creates a new Uptime check configuration.
Name | Description |
parent | String Required. The project in which to create the Uptime check. The format is: projects/[PROJECT_ID_OR_NUMBER] |
uptimeCheckConfig | UptimeCheckConfig Required. The new Uptime check configuration. |
cancellationToken | CancellationToken A CancellationToken to use for this RPC. |
Type | Description |
Task<UptimeCheckConfig> | A Task containing the RPC response. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = await UptimeCheckServiceClient.CreateAsync();
// Initialize request argument(s)
string parent = "projects/[PROJECT]";
UptimeCheckConfig uptimeCheckConfig = new UptimeCheckConfig();
// Make the request
UptimeCheckConfig response = await uptimeCheckServiceClient.CreateUptimeCheckConfigAsync(parent, uptimeCheckConfig);
DeleteUptimeCheckConfig(IResourceName, CallSettings)
public virtual void DeleteUptimeCheckConfig(IResourceName name, CallSettings callSettings = null)
Deletes an Uptime check configuration. Note that this method will fail if the Uptime check configuration is referenced by an alert policy or other dependent configs that would be rendered invalid by the deletion.
Name | Description |
name | IResourceName Required. The Uptime check configuration to delete. The format is: projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID] |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
IResourceName name = new UnparsedResourceName("a/wildcard/resource");
// Make the request
uptimeCheckServiceClient.DeleteUptimeCheckConfig(name);
DeleteUptimeCheckConfig(DeleteUptimeCheckConfigRequest, CallSettings)
public virtual void DeleteUptimeCheckConfig(DeleteUptimeCheckConfigRequest request, CallSettings callSettings = null)
Deletes an Uptime check configuration. Note that this method will fail if the Uptime check configuration is referenced by an alert policy or other dependent configs that would be rendered invalid by the deletion.
Name | Description |
request | DeleteUptimeCheckConfigRequest The request object containing all of the parameters for the API call. |
callSettings | CallSettings If not null, applies overrides to this RPC call. |
// Create client
UptimeCheckServiceClient uptimeCheckServiceClient = UptimeCheckServiceClient.Create();
// Initialize request argument(s)
DeleteUptimeCheckConfigRequest request = new DeleteUptimeCheckConfigRequest
{
UptimeCheckConfigName = UptimeCheckConfigName.FromProjectUptimeCheckConfig("[PROJECT]", "[UPTIME_CHECK_CONFIG]"),
};
// Make the request
uptimeCheckServiceClient.DeleteUptimeCheckConfig(request);
DeleteUptimeCheckConfig(UptimeCheckConfigName, CallSettings)
public virtual void DeleteUptimeCheckConfig(UptimeCheckConfigName name, CallSettings callSettings = null)
Deletes an Uptime check configuration. Note that this method will fail if the Uptime check configuration is referenced by an alert policy or other dependent configs that would be rendered invalid by the deletion.
Name | Description |
name | UptimeCheckConfigName Required. The Uptime check configuration to delete. The format is: projects/[PROJECT_ID_OR_NUMBER]/uptimeCheckConfigs/[UPTIME_CHECK_ID] |
callSettings | CallSettings If not null, applies overrides to this RPC call. |