|
1616 | 1616 | }
|
1617 | 1617 | }
|
1618 | 1618 | },
|
1619 |
| - "revision": "20250227", |
| 1619 | + "revision": "20250308", |
1620 | 1620 | "rootUrl": "https://alloydb.googleapis.com/",
|
1621 | 1621 | "schemas": {
|
1622 | 1622 | "AuthorizedNetwork": {
|
|
2428 | 2428 | },
|
2429 | 2429 | "type": "object"
|
2430 | 2430 | },
|
| 2431 | + "DenyMaintenancePeriod": { |
| 2432 | + "description": "DenyMaintenancePeriod definition. Excepting emergencies, maintenance will not be scheduled to start within this deny period. The start_date must be less than the end_date.", |
| 2433 | + "id": "DenyMaintenancePeriod", |
| 2434 | + "properties": { |
| 2435 | + "endDate": { |
| 2436 | + "$ref": "GoogleTypeDate", |
| 2437 | + "description": "Deny period end date. This can be: * A full date, with non-zero year, month and day values OR * A month and day value, with a zero year for recurring" |
| 2438 | + }, |
| 2439 | + "startDate": { |
| 2440 | + "$ref": "GoogleTypeDate", |
| 2441 | + "description": "Deny period start date. This can be: * A full date, with non-zero year, month and day values OR * A month and day value, with a zero year for recurring" |
| 2442 | + }, |
| 2443 | + "time": { |
| 2444 | + "$ref": "GoogleTypeTimeOfDay", |
| 2445 | + "description": "Time in UTC when the deny period starts on start_date and ends on end_date. This can be: * Full time OR * All zeros for 00:00:00 UTC" |
| 2446 | + } |
| 2447 | + }, |
| 2448 | + "type": "object" |
| 2449 | + }, |
2431 | 2450 | "Empty": {
|
2432 | 2451 | "description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
|
2433 | 2452 | "id": "Empty",
|
|
2587 | 2606 | },
|
2588 | 2607 | "type": "object"
|
2589 | 2608 | },
|
| 2609 | + "GoogleTypeDate": { |
| 2610 | + "description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp", |
| 2611 | + "id": "GoogleTypeDate", |
| 2612 | + "properties": { |
| 2613 | + "day": { |
| 2614 | + "description": "Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.", |
| 2615 | + "format": "int32", |
| 2616 | + "type": "integer" |
| 2617 | + }, |
| 2618 | + "month": { |
| 2619 | + "description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.", |
| 2620 | + "format": "int32", |
| 2621 | + "type": "integer" |
| 2622 | + }, |
| 2623 | + "year": { |
| 2624 | + "description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.", |
| 2625 | + "format": "int32", |
| 2626 | + "type": "integer" |
| 2627 | + } |
| 2628 | + }, |
| 2629 | + "type": "object" |
| 2630 | + }, |
2590 | 2631 | "GoogleTypeTimeOfDay": {
|
2591 | 2632 | "description": "Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.",
|
2592 | 2633 | "id": "GoogleTypeTimeOfDay",
|
|
2892 | 2933 | "enablePublicIp": {
|
2893 | 2934 | "description": "Optional. Enabling public ip for the instance.",
|
2894 | 2935 | "type": "boolean"
|
| 2936 | + }, |
| 2937 | + "network": { |
| 2938 | + "description": "Output only. The resource link for the VPC network in which instance resources are created and from which they are accessible via Private IP. This will be the same value as the parent cluster's network. It is specified in the form: // `projects/{project_number}/global/networks/{network_id}`.", |
| 2939 | + "readOnly": true, |
| 2940 | + "type": "string" |
2895 | 2941 | }
|
2896 | 2942 | },
|
2897 | 2943 | "type": "object"
|
|
3108 | 3154 | "description": "The number of CPU's in the VM instance.",
|
3109 | 3155 | "format": "int32",
|
3110 | 3156 | "type": "integer"
|
| 3157 | + }, |
| 3158 | + "machineType": { |
| 3159 | + "description": "Machine type of the VM instance. E.g. \"n2-highmem-4\", \"n2-highmem-8\", \"c4a-highmem-4-lssd\". cpu_count must match the number of vCPUs in the machine type.", |
| 3160 | + "type": "string" |
3111 | 3161 | }
|
3112 | 3162 | },
|
3113 | 3163 | "type": "object"
|
|
3129 | 3179 | "description": "MaintenanceUpdatePolicy defines the policy for system updates.",
|
3130 | 3180 | "id": "MaintenanceUpdatePolicy",
|
3131 | 3181 | "properties": {
|
| 3182 | + "denyMaintenancePeriods": { |
| 3183 | + "description": "Periods to deny maintenance. Currently limited to 1.", |
| 3184 | + "items": { |
| 3185 | + "$ref": "DenyMaintenancePeriod" |
| 3186 | + }, |
| 3187 | + "type": "array" |
| 3188 | + }, |
3132 | 3189 | "maintenanceWindows": {
|
3133 | 3190 | "description": "Preferred windows to perform maintenance. Currently limited to 1.",
|
3134 | 3191 | "items": {
|
|
4281 | 4338 | "SIGNAL_TYPE_EXPENSIVE_COMMANDS",
|
4282 | 4339 | "SIGNAL_TYPE_NO_MAINTENANCE_POLICY_CONFIGURED",
|
4283 | 4340 | "SIGNAL_TYPE_NO_DELETION_PROTECTION",
|
4284 |
| - "SIGNAL_TYPE_INEFFICIENT_QUERY" |
| 4341 | + "SIGNAL_TYPE_INEFFICIENT_QUERY", |
| 4342 | + "SIGNAL_TYPE_READ_INTENSIVE_WORKLOAD", |
| 4343 | + "SIGNAL_TYPE_MEMORY_LIMIT" |
4285 | 4344 | ],
|
4286 | 4345 | "enumDeprecated": [
|
4287 | 4346 | false,
|
|
4371 | 4430 | false,
|
4372 | 4431 | false,
|
4373 | 4432 | false,
|
| 4433 | + false, |
| 4434 | + false, |
4374 | 4435 | false
|
4375 | 4436 | ],
|
4376 | 4437 | "enumDescriptions": [
|
|
4461 | 4522 | "Detects that expensive commands are being run on a database instance impacting overall performance.",
|
4462 | 4523 | "Indicates that the instance does not have a maintenance policy configured.",
|
4463 | 4524 | "Deletion Protection Disabled for the resource",
|
4464 |
| - "Indicates that the instance has inefficient queries detected." |
| 4525 | + "Indicates that the instance has inefficient queries detected.", |
| 4526 | + "Indicates that the instance has read intensive workload.", |
| 4527 | + "Indicates that the instance is nearing memory limit." |
4465 | 4528 | ],
|
4466 | 4529 | "type": "string"
|
4467 | 4530 | },
|
|
4870 | 4933 | "SIGNAL_TYPE_EXPENSIVE_COMMANDS",
|
4871 | 4934 | "SIGNAL_TYPE_NO_MAINTENANCE_POLICY_CONFIGURED",
|
4872 | 4935 | "SIGNAL_TYPE_NO_DELETION_PROTECTION",
|
4873 |
| - "SIGNAL_TYPE_INEFFICIENT_QUERY" |
| 4936 | + "SIGNAL_TYPE_INEFFICIENT_QUERY", |
| 4937 | + "SIGNAL_TYPE_READ_INTENSIVE_WORKLOAD", |
| 4938 | + "SIGNAL_TYPE_MEMORY_LIMIT" |
4874 | 4939 | ],
|
4875 | 4940 | "enumDeprecated": [
|
4876 | 4941 | false,
|
|
4960 | 5025 | false,
|
4961 | 5026 | false,
|
4962 | 5027 | false,
|
| 5028 | + false, |
| 5029 | + false, |
4963 | 5030 | false
|
4964 | 5031 | ],
|
4965 | 5032 | "enumDescriptions": [
|
|
5050 | 5117 | "Detects that expensive commands are being run on a database instance impacting overall performance.",
|
5051 | 5118 | "Indicates that the instance does not have a maintenance policy configured.",
|
5052 | 5119 | "Deletion Protection Disabled for the resource",
|
5053 |
| - "Indicates that the instance has inefficient queries detected." |
| 5120 | + "Indicates that the instance has inefficient queries detected.", |
| 5121 | + "Indicates that the instance has read intensive workload.", |
| 5122 | + "Indicates that the instance is nearing memory limit." |
5054 | 5123 | ],
|
5055 | 5124 | "type": "string"
|
5056 | 5125 | }
|
|
0 commit comments