1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
|
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="redis_v1beta1.html">Google Cloud Memorystore for Redis API</a> . <a href="redis_v1beta1.projects.html">projects</a> . <a href="redis_v1beta1.projects.locations.html">locations</a> . <a href="redis_v1beta1.projects.locations.clusters.html">clusters</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#backup">backup(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Backup Redis Cluster. If this is the first time a backup is being created, a backup collection will be created at the backend, and this backup belongs to this collection. Both collection and backup will have a resource name. Backup will be executed for each shard. A replica (primary if nonHA) will be selected to perform the execution. Backup call will be rejected if there is an ongoing backup or update operation. Be aware that during preview, if the cluster's internal software version is too old, critical update will be performed before actual backup. Once the internal software version is updated to the minimum version required by the backup feature, subsequent backups will not require critical update. After preview, there will be no critical update needed for backup.</p>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#create">create(parent, body=None, clusterId=None, requestId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates a Redis cluster based on the specified properties. The creation is executed asynchronously and callers may check the returned operation to track its progress. Once the operation is completed the Redis cluster will be fully functional. The completed longrunning.Operation will contain the new cluster object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.</p>
<p class="toc_element">
<code><a href="#delete">delete(name, requestId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a specific Redis cluster. Cluster stops serving and data is deleted.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the details of a specific Redis cluster.</p>
<p class="toc_element">
<code><a href="#getCertificateAuthority">getCertificateAuthority(name, x__xgafv=None)</a></code></p>
<p class="firstline">Gets the details of certificate authority information for Redis cluster.</p>
<p class="toc_element">
<code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists all Redis clusters owned by a project in either the specified location (region) or all locations. The location should have the following format: * `projects/{project_id}/locations/{location_id}` If `location_id` is specified as `-` (wildcard), then all regions available to the project are queried, and the results are aggregated.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
<code><a href="#patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates the metadata and configuration of a specific Redis cluster. Completed longrunning.Operation will contain the new cluster object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.</p>
<p class="toc_element">
<code><a href="#rescheduleClusterMaintenance">rescheduleClusterMaintenance(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Reschedules upcoming maintenance event.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="backup">backup(name, body=None, x__xgafv=None)</code>
<pre>Backup Redis Cluster. If this is the first time a backup is being created, a backup collection will be created at the backend, and this backup belongs to this collection. Both collection and backup will have a resource name. Backup will be executed for each shard. A replica (primary if nonHA) will be selected to perform the execution. Backup call will be rejected if there is an ongoing backup or update operation. Be aware that during preview, if the cluster's internal software version is too old, critical update will be performed before actual backup. Once the internal software version is updated to the minimum version required by the backup feature, subsequent backups will not require critical update. After preview, there will be no critical update needed for backup.
Args:
name: string, Required. Redis cluster resource name using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}` where `location_id` refers to a Google Cloud region. (required)
body: object, The request body.
The object takes the form of:
{ # Request for [BackupCluster].
"backupId": "A String", # Optional. The id of the backup to be created. If not specified, the default value ([YYYYMMDDHHMMSS]_[Shortened Cluster UID] is used.
"ttl": "A String", # Optional. TTL for the backup to expire. Value range is 1 day to 100 years. If not specified, the default value is 100 years.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # This resource represents a long-running operation that is the result of a network API call.
"done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
"error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
"code": 42, # The status code, which should be an enum value of google.rpc.Code.
"details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
],
"message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
"metadata": { # { `createTime`: The time the operation was created. `endTime`: The time the operation finished running. `target`: Server-defined resource path for the target of the operation. `verb`: Name of the verb executed by the operation. `statusDetail`: Human-readable status of the operation, if any. `cancelRequested`: Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. `apiVersion`: API version used to start the operation. }
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
"name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
"response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
}</pre>
</div>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="create">create(parent, body=None, clusterId=None, requestId=None, x__xgafv=None)</code>
<pre>Creates a Redis cluster based on the specified properties. The creation is executed asynchronously and callers may check the returned operation to track its progress. Once the operation is completed the Redis cluster will be fully functional. The completed longrunning.Operation will contain the new cluster object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.
Args:
parent: string, Required. The resource name of the cluster location using the form: `projects/{project_id}/locations/{location_id}` where `location_id` refers to a Google Cloud region. (required)
body: object, The request body.
The object takes the form of:
{ # A cluster instance.
"allowFewerZonesDeployment": True or False, # Optional. Immutable. Allows customers to specify if they are okay with deploying a multi-zone cluster in less than 3 zones. Once set, if there is a zonal outage during the cluster creation, the cluster will only be deployed in 2 zones, and stay within the 2 zones for its lifecycle.
"asyncClusterEndpointsDeletionEnabled": True or False, # Optional. If true, cluster endpoints that are created and registered by customers can be deleted asynchronously. That is, such a cluster endpoint can be de-registered before the forwarding rules in the cluster endpoint are deleted.
"authorizationMode": "A String", # Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.
"automatedBackupConfig": { # The automated backup config for a cluster. # Optional. The automated backup config for the cluster.
"automatedBackupMode": "A String", # Optional. The automated backup mode. If the mode is disabled, the other fields will be ignored.
"fixedFrequencySchedule": { # This schedule allows the backup to be triggered at a fixed frequency (currently only daily is supported). # Optional. Trigger automated backups at a fixed frequency.
"startTime": { # 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`. # Required. The start time of every automated backup in UTC. It must be set to the start of an hour. This field is required.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
"retention": "A String", # Optional. How long to keep automated backups before the backups are deleted. The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
},
"backupCollection": "A String", # Optional. Output only. The backup collection full resource name. Example: projects/{project}/locations/{location}/backupCollections/{collection}
"clusterEndpoints": [ # Optional. A list of cluster endpoints.
{ # ClusterEndpoint consists of PSC connections that are created as a group in each VPC network for accessing the cluster. In each group, there shall be one connection for each service attachment in the cluster.
"connections": [ # Required. A group of PSC connections. They are created in the same VPC network, one for each service attachment in the cluster.
{ # Detailed information of each PSC connection.
"pscAutoConnection": { # Details of consumer resources in a PSC connection that is created through Service Connectivity Automation. # Detailed information of a PSC connection that is created through service connectivity automation.
"address": "A String", # Output only. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Output only. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"projectId": "A String", # Required. The consumer project_id where the forwarding rule is created from.
"pscConnectionId": "A String", # Output only. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. Please use Private Service Connect APIs for the latest status.
"serviceAttachment": "A String", # Output only. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
"pscConnection": { # Details of consumer resources in a PSC connection. # Detailed information of a PSC connection that is created by the customer who owns the cluster.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
},
],
},
],
"createTime": "A String", # Output only. The timestamp associated with the cluster creation request.
"crossClusterReplicationConfig": { # Cross cluster replication config. # Optional. Cross cluster replication config.
"clusterRole": "A String", # Output only. The role of the cluster in cross cluster replication.
"membership": { # An output only view of all the member clusters participating in the cross cluster replication. # Output only. An output only view of all the member clusters participating in the cross cluster replication. This view will be provided by every member cluster irrespective of its cluster role(primary or secondary). A primary cluster can provide information about all the secondary clusters replicating from it. However, a secondary cluster only knows about the primary cluster from which it is replicating. However, for scenarios, where the primary cluster is unavailable(e.g. regional outage), a GetCluster request can be sent to any other member cluster and this field will list all the member clusters participating in cross cluster replication.
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Output only. The primary cluster that acts as the source of replication for the secondary clusters.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # Output only. The list of secondary clusters replicating from the primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
},
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Details of the primary cluster that is used as the replication source for this secondary cluster. This field is only set for a secondary cluster.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # List of secondary clusters that are replicating from this primary cluster. This field is only set for a primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
"updateTime": "A String", # Output only. The last time cross cluster replication config was updated.
},
"deletionProtectionEnabled": True or False, # Optional. The delete operation will fail when the value is set to true.
"discoveryEndpoints": [ # Output only. Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.
{ # Endpoints on each network, for Redis clients to connect to the cluster.
"address": "A String", # Output only. Address of the exposed Redis endpoint used by clients to connect to the service. The address could be either IP or hostname.
"port": 42, # Output only. The port number of the exposed Redis endpoint.
"pscConfig": { # Output only. Customer configuration for where the endpoint is created and accessed from.
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
},
],
"encryptionInfo": { # EncryptionInfo describes the encryption information of a cluster or a backup. # Output only. Encryption information of the data at rest of the cluster.
"encryptionType": "A String", # Output only. Type of encryption.
"kmsKeyPrimaryState": "A String", # Output only. The state of the primary version of the KMS key perceived by the system. This field is not populated in backups.
"kmsKeyVersions": [ # Output only. KMS key versions that are being used to protect the data at-rest.
"A String",
],
"lastUpdateTime": "A String", # Output only. The most recent time when the encryption info was updated.
},
"gcsSource": { # Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. # Optional. Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. Read permission is required to import from the provided Cloud Storage objects.
"uris": [ # Optional. URIs of the Cloud Storage objects to import. Example: gs://bucket1/object1, gs://bucket2/folder2/object2
"A String",
],
},
"kmsKey": "A String", # Optional. The KMS key used to encrypt the at-rest data of the cluster.
"maintenancePolicy": { # Maintenance policy per cluster. # Optional. ClusterMaintenancePolicy determines when to allow or deny updates.
"createTime": "A String", # Output only. The time when the policy was created i.e. Maintenance Window or Deny Period was assigned.
"updateTime": "A String", # Output only. The time when the policy was updated i.e. Maintenance Window or Deny Period was updated.
"weeklyMaintenanceWindow": [ # Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_maintenance_window is expected to be one.
{ # Time window specified for weekly operations.
"day": "A String", # Optional. Allows to define schedule that runs specified day of the week.
"startTime": { # 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`. # Optional. Start time of the window in UTC.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
],
},
"maintenanceSchedule": { # Upcoming maintenance schedule. # Output only. ClusterMaintenanceSchedule Output only Published maintenance schedule.
"endTime": "A String", # Output only. The end time of any upcoming scheduled maintenance for this instance.
"startTime": "A String", # Output only. The start time of any upcoming scheduled maintenance for this instance.
},
"managedBackupSource": { # Backups that generated and managed by memorystore. # Optional. Backups generated and managed by memorystore service.
"backup": "A String", # Optional. Example: //redis.googleapis.com/projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup} A shorter version (without the prefix) of the backup name is also supported, like projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup_id} In this case, it assumes the backup is under redis.googleapis.com.
},
"name": "A String", # Required. Identifier. Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`
"nodeType": "A String", # Optional. The type of a redis node in the cluster. NodeType determines the underlying machine-type of a redis node.
"ondemandMaintenance": True or False, # Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger ondemand critical update on the cluster.
"persistenceConfig": { # Configuration of the persistence functionality. # Optional. Persistence config (RDB, AOF) for the cluster.
"aofConfig": { # Configuration of the AOF based persistence. # Optional. AOF configuration. This field will be ignored if mode is not AOF.
"appendFsync": "A String", # Optional. fsync configuration.
},
"mode": "A String", # Optional. The mode of persistence.
"rdbConfig": { # Configuration of the RDB based persistence. # Optional. RDB configuration. This field will be ignored if mode is not RDB.
"rdbSnapshotPeriod": "A String", # Optional. Period between RDB snapshots.
"rdbSnapshotStartTime": "A String", # Optional. The time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.
},
},
"preciseSizeGb": 3.14, # Output only. Precise value of redis memory size in GB for the entire cluster.
"pscConfigs": [ # Optional. Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.
{
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
],
"pscConnections": [ # Output only. The list of PSC connections that are auto-created through service connectivity automation.
{ # Details of consumer resources in a PSC connection.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
],
"pscServiceAttachments": [ # Output only. Service attachment details to configure Psc connections
{ # Configuration of a service attachment of the cluster, for creating PSC connections.
"connectionType": "A String", # Output only. Type of a PSC connection targeting this service attachment.
"serviceAttachment": "A String", # Output only. Service attachment URI which your self-created PscConnection should use as target
},
],
"redisConfigs": { # Optional. Key/Value pairs of customer overrides for mutable Redis Configs
"a_key": "A String",
},
"replicaCount": 42, # Optional. The number of replica nodes per shard.
"satisfiesPzi": True or False, # Optional. Output only. Reserved for future use.
"satisfiesPzs": True or False, # Optional. Output only. Reserved for future use.
"shardCount": 42, # Optional. Number of shards for the Redis cluster.
"simulateMaintenanceEvent": True or False, # Optional. Input only. Simulate a maintenance event.
"sizeGb": 42, # Output only. Redis memory size in GB for the entire cluster rounded up to the next integer.
"state": "A String", # Output only. The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED
"stateInfo": { # Represents additional information about the state of the cluster. # Output only. Additional information about the current state of the cluster.
"updateInfo": { # Represents information about an updating cluster. # Describes ongoing update on the cluster when cluster state is UPDATING.
"targetNodeType": "A String", # Target node type for redis cluster.
"targetReplicaCount": 42, # Target number of replica nodes per shard.
"targetShardCount": 42, # Target number of shards for redis cluster
},
},
"transitEncryptionMode": "A String", # Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
"uid": "A String", # Output only. System assigned, unique identifier for the cluster.
"zoneDistributionConfig": { # Zone distribution config for allocation of cluster resources. # Optional. This config will be used to determine how the customer wants us to distribute cluster resources within the region.
"mode": "A String", # Optional. The mode of zone distribution. Defaults to MULTI_ZONE, when not specified.
"zone": "A String", # Optional. When SINGLE ZONE distribution is selected, zone field would be used to allocate all resources in that zone. This is not applicable to MULTI_ZONE, and would be ignored for MULTI_ZONE clusters.
},
}
clusterId: string, Required. The logical name of the Redis cluster in the customer project with the following restrictions: * Must contain only lowercase letters, numbers, and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the customer project / location
requestId: string, Optional. Idempotent request UUID.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # This resource represents a long-running operation that is the result of a network API call.
"done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
"error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
"code": 42, # The status code, which should be an enum value of google.rpc.Code.
"details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
],
"message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
"metadata": { # { `createTime`: The time the operation was created. `endTime`: The time the operation finished running. `target`: Server-defined resource path for the target of the operation. `verb`: Name of the verb executed by the operation. `statusDetail`: Human-readable status of the operation, if any. `cancelRequested`: Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. `apiVersion`: API version used to start the operation. }
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
"name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
"response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
}</pre>
</div>
<div class="method">
<code class="details" id="delete">delete(name, requestId=None, x__xgafv=None)</code>
<pre>Deletes a specific Redis cluster. Cluster stops serving and data is deleted.
Args:
name: string, Required. Redis cluster resource name using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}` where `location_id` refers to a Google Cloud region. (required)
requestId: string, Optional. Idempotent request UUID.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # This resource represents a long-running operation that is the result of a network API call.
"done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
"error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
"code": 42, # The status code, which should be an enum value of google.rpc.Code.
"details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
],
"message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
"metadata": { # { `createTime`: The time the operation was created. `endTime`: The time the operation finished running. `target`: Server-defined resource path for the target of the operation. `verb`: Name of the verb executed by the operation. `statusDetail`: Human-readable status of the operation, if any. `cancelRequested`: Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. `apiVersion`: API version used to start the operation. }
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
"name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
"response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
}</pre>
</div>
<div class="method">
<code class="details" id="get">get(name, x__xgafv=None)</code>
<pre>Gets the details of a specific Redis cluster.
Args:
name: string, Required. Redis cluster resource name using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}` where `location_id` refers to a Google Cloud region. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A cluster instance.
"allowFewerZonesDeployment": True or False, # Optional. Immutable. Allows customers to specify if they are okay with deploying a multi-zone cluster in less than 3 zones. Once set, if there is a zonal outage during the cluster creation, the cluster will only be deployed in 2 zones, and stay within the 2 zones for its lifecycle.
"asyncClusterEndpointsDeletionEnabled": True or False, # Optional. If true, cluster endpoints that are created and registered by customers can be deleted asynchronously. That is, such a cluster endpoint can be de-registered before the forwarding rules in the cluster endpoint are deleted.
"authorizationMode": "A String", # Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.
"automatedBackupConfig": { # The automated backup config for a cluster. # Optional. The automated backup config for the cluster.
"automatedBackupMode": "A String", # Optional. The automated backup mode. If the mode is disabled, the other fields will be ignored.
"fixedFrequencySchedule": { # This schedule allows the backup to be triggered at a fixed frequency (currently only daily is supported). # Optional. Trigger automated backups at a fixed frequency.
"startTime": { # 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`. # Required. The start time of every automated backup in UTC. It must be set to the start of an hour. This field is required.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
"retention": "A String", # Optional. How long to keep automated backups before the backups are deleted. The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
},
"backupCollection": "A String", # Optional. Output only. The backup collection full resource name. Example: projects/{project}/locations/{location}/backupCollections/{collection}
"clusterEndpoints": [ # Optional. A list of cluster endpoints.
{ # ClusterEndpoint consists of PSC connections that are created as a group in each VPC network for accessing the cluster. In each group, there shall be one connection for each service attachment in the cluster.
"connections": [ # Required. A group of PSC connections. They are created in the same VPC network, one for each service attachment in the cluster.
{ # Detailed information of each PSC connection.
"pscAutoConnection": { # Details of consumer resources in a PSC connection that is created through Service Connectivity Automation. # Detailed information of a PSC connection that is created through service connectivity automation.
"address": "A String", # Output only. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Output only. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"projectId": "A String", # Required. The consumer project_id where the forwarding rule is created from.
"pscConnectionId": "A String", # Output only. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. Please use Private Service Connect APIs for the latest status.
"serviceAttachment": "A String", # Output only. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
"pscConnection": { # Details of consumer resources in a PSC connection. # Detailed information of a PSC connection that is created by the customer who owns the cluster.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
},
],
},
],
"createTime": "A String", # Output only. The timestamp associated with the cluster creation request.
"crossClusterReplicationConfig": { # Cross cluster replication config. # Optional. Cross cluster replication config.
"clusterRole": "A String", # Output only. The role of the cluster in cross cluster replication.
"membership": { # An output only view of all the member clusters participating in the cross cluster replication. # Output only. An output only view of all the member clusters participating in the cross cluster replication. This view will be provided by every member cluster irrespective of its cluster role(primary or secondary). A primary cluster can provide information about all the secondary clusters replicating from it. However, a secondary cluster only knows about the primary cluster from which it is replicating. However, for scenarios, where the primary cluster is unavailable(e.g. regional outage), a GetCluster request can be sent to any other member cluster and this field will list all the member clusters participating in cross cluster replication.
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Output only. The primary cluster that acts as the source of replication for the secondary clusters.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # Output only. The list of secondary clusters replicating from the primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
},
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Details of the primary cluster that is used as the replication source for this secondary cluster. This field is only set for a secondary cluster.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # List of secondary clusters that are replicating from this primary cluster. This field is only set for a primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
"updateTime": "A String", # Output only. The last time cross cluster replication config was updated.
},
"deletionProtectionEnabled": True or False, # Optional. The delete operation will fail when the value is set to true.
"discoveryEndpoints": [ # Output only. Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.
{ # Endpoints on each network, for Redis clients to connect to the cluster.
"address": "A String", # Output only. Address of the exposed Redis endpoint used by clients to connect to the service. The address could be either IP or hostname.
"port": 42, # Output only. The port number of the exposed Redis endpoint.
"pscConfig": { # Output only. Customer configuration for where the endpoint is created and accessed from.
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
},
],
"encryptionInfo": { # EncryptionInfo describes the encryption information of a cluster or a backup. # Output only. Encryption information of the data at rest of the cluster.
"encryptionType": "A String", # Output only. Type of encryption.
"kmsKeyPrimaryState": "A String", # Output only. The state of the primary version of the KMS key perceived by the system. This field is not populated in backups.
"kmsKeyVersions": [ # Output only. KMS key versions that are being used to protect the data at-rest.
"A String",
],
"lastUpdateTime": "A String", # Output only. The most recent time when the encryption info was updated.
},
"gcsSource": { # Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. # Optional. Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. Read permission is required to import from the provided Cloud Storage objects.
"uris": [ # Optional. URIs of the Cloud Storage objects to import. Example: gs://bucket1/object1, gs://bucket2/folder2/object2
"A String",
],
},
"kmsKey": "A String", # Optional. The KMS key used to encrypt the at-rest data of the cluster.
"maintenancePolicy": { # Maintenance policy per cluster. # Optional. ClusterMaintenancePolicy determines when to allow or deny updates.
"createTime": "A String", # Output only. The time when the policy was created i.e. Maintenance Window or Deny Period was assigned.
"updateTime": "A String", # Output only. The time when the policy was updated i.e. Maintenance Window or Deny Period was updated.
"weeklyMaintenanceWindow": [ # Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_maintenance_window is expected to be one.
{ # Time window specified for weekly operations.
"day": "A String", # Optional. Allows to define schedule that runs specified day of the week.
"startTime": { # 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`. # Optional. Start time of the window in UTC.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
],
},
"maintenanceSchedule": { # Upcoming maintenance schedule. # Output only. ClusterMaintenanceSchedule Output only Published maintenance schedule.
"endTime": "A String", # Output only. The end time of any upcoming scheduled maintenance for this instance.
"startTime": "A String", # Output only. The start time of any upcoming scheduled maintenance for this instance.
},
"managedBackupSource": { # Backups that generated and managed by memorystore. # Optional. Backups generated and managed by memorystore service.
"backup": "A String", # Optional. Example: //redis.googleapis.com/projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup} A shorter version (without the prefix) of the backup name is also supported, like projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup_id} In this case, it assumes the backup is under redis.googleapis.com.
},
"name": "A String", # Required. Identifier. Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`
"nodeType": "A String", # Optional. The type of a redis node in the cluster. NodeType determines the underlying machine-type of a redis node.
"ondemandMaintenance": True or False, # Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger ondemand critical update on the cluster.
"persistenceConfig": { # Configuration of the persistence functionality. # Optional. Persistence config (RDB, AOF) for the cluster.
"aofConfig": { # Configuration of the AOF based persistence. # Optional. AOF configuration. This field will be ignored if mode is not AOF.
"appendFsync": "A String", # Optional. fsync configuration.
},
"mode": "A String", # Optional. The mode of persistence.
"rdbConfig": { # Configuration of the RDB based persistence. # Optional. RDB configuration. This field will be ignored if mode is not RDB.
"rdbSnapshotPeriod": "A String", # Optional. Period between RDB snapshots.
"rdbSnapshotStartTime": "A String", # Optional. The time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.
},
},
"preciseSizeGb": 3.14, # Output only. Precise value of redis memory size in GB for the entire cluster.
"pscConfigs": [ # Optional. Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.
{
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
],
"pscConnections": [ # Output only. The list of PSC connections that are auto-created through service connectivity automation.
{ # Details of consumer resources in a PSC connection.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
],
"pscServiceAttachments": [ # Output only. Service attachment details to configure Psc connections
{ # Configuration of a service attachment of the cluster, for creating PSC connections.
"connectionType": "A String", # Output only. Type of a PSC connection targeting this service attachment.
"serviceAttachment": "A String", # Output only. Service attachment URI which your self-created PscConnection should use as target
},
],
"redisConfigs": { # Optional. Key/Value pairs of customer overrides for mutable Redis Configs
"a_key": "A String",
},
"replicaCount": 42, # Optional. The number of replica nodes per shard.
"satisfiesPzi": True or False, # Optional. Output only. Reserved for future use.
"satisfiesPzs": True or False, # Optional. Output only. Reserved for future use.
"shardCount": 42, # Optional. Number of shards for the Redis cluster.
"simulateMaintenanceEvent": True or False, # Optional. Input only. Simulate a maintenance event.
"sizeGb": 42, # Output only. Redis memory size in GB for the entire cluster rounded up to the next integer.
"state": "A String", # Output only. The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED
"stateInfo": { # Represents additional information about the state of the cluster. # Output only. Additional information about the current state of the cluster.
"updateInfo": { # Represents information about an updating cluster. # Describes ongoing update on the cluster when cluster state is UPDATING.
"targetNodeType": "A String", # Target node type for redis cluster.
"targetReplicaCount": 42, # Target number of replica nodes per shard.
"targetShardCount": 42, # Target number of shards for redis cluster
},
},
"transitEncryptionMode": "A String", # Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
"uid": "A String", # Output only. System assigned, unique identifier for the cluster.
"zoneDistributionConfig": { # Zone distribution config for allocation of cluster resources. # Optional. This config will be used to determine how the customer wants us to distribute cluster resources within the region.
"mode": "A String", # Optional. The mode of zone distribution. Defaults to MULTI_ZONE, when not specified.
"zone": "A String", # Optional. When SINGLE ZONE distribution is selected, zone field would be used to allocate all resources in that zone. This is not applicable to MULTI_ZONE, and would be ignored for MULTI_ZONE clusters.
},
}</pre>
</div>
<div class="method">
<code class="details" id="getCertificateAuthority">getCertificateAuthority(name, x__xgafv=None)</code>
<pre>Gets the details of certificate authority information for Redis cluster.
Args:
name: string, Required. Redis cluster certificate authority resource name using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}/certificateAuthority` where `location_id` refers to a Google Cloud region. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Redis cluster certificate authority
"managedServerCa": {
"caCerts": [ # The PEM encoded CA certificate chains for redis managed server authentication
{
"certificates": [ # The certificates that form the CA chain, from leaf to root order.
"A String",
],
},
],
},
"name": "A String", # Identifier. Unique name of the resource in this scope including project, location and cluster using the form: `projects/{project}/locations/{location}/clusters/{cluster}/certificateAuthority`
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Lists all Redis clusters owned by a project in either the specified location (region) or all locations. The location should have the following format: * `projects/{project_id}/locations/{location_id}` If `location_id` is specified as `-` (wildcard), then all regions available to the project are queried, and the results are aggregated.
Args:
parent: string, Required. The resource name of the cluster location using the form: `projects/{project_id}/locations/{location_id}` where `location_id` refers to a Google Cloud region. (required)
pageSize: integer, The maximum number of items to return. If not specified, a default value of 1000 will be used by the service. Regardless of the page_size value, the response may include a partial list and a caller should only rely on response's `next_page_token` to determine if there are more clusters left to be queried.
pageToken: string, The `next_page_token` value returned from a previous ListClusters request, if any.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Response for ListClusters.
"clusters": [ # A list of Redis clusters in the project in the specified location, or across all locations. If the `location_id` in the parent field of the request is "-", all regions available to the project are queried, and the results aggregated. If in such an aggregated query a location is unavailable, a placeholder Redis entry is included in the response with the `name` field set to a value of the form `projects/{project_id}/locations/{location_id}/clusters/`- and the `status` field set to ERROR and `status_message` field set to "location not available for ListClusters".
{ # A cluster instance.
"allowFewerZonesDeployment": True or False, # Optional. Immutable. Allows customers to specify if they are okay with deploying a multi-zone cluster in less than 3 zones. Once set, if there is a zonal outage during the cluster creation, the cluster will only be deployed in 2 zones, and stay within the 2 zones for its lifecycle.
"asyncClusterEndpointsDeletionEnabled": True or False, # Optional. If true, cluster endpoints that are created and registered by customers can be deleted asynchronously. That is, such a cluster endpoint can be de-registered before the forwarding rules in the cluster endpoint are deleted.
"authorizationMode": "A String", # Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.
"automatedBackupConfig": { # The automated backup config for a cluster. # Optional. The automated backup config for the cluster.
"automatedBackupMode": "A String", # Optional. The automated backup mode. If the mode is disabled, the other fields will be ignored.
"fixedFrequencySchedule": { # This schedule allows the backup to be triggered at a fixed frequency (currently only daily is supported). # Optional. Trigger automated backups at a fixed frequency.
"startTime": { # 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`. # Required. The start time of every automated backup in UTC. It must be set to the start of an hour. This field is required.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
"retention": "A String", # Optional. How long to keep automated backups before the backups are deleted. The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
},
"backupCollection": "A String", # Optional. Output only. The backup collection full resource name. Example: projects/{project}/locations/{location}/backupCollections/{collection}
"clusterEndpoints": [ # Optional. A list of cluster endpoints.
{ # ClusterEndpoint consists of PSC connections that are created as a group in each VPC network for accessing the cluster. In each group, there shall be one connection for each service attachment in the cluster.
"connections": [ # Required. A group of PSC connections. They are created in the same VPC network, one for each service attachment in the cluster.
{ # Detailed information of each PSC connection.
"pscAutoConnection": { # Details of consumer resources in a PSC connection that is created through Service Connectivity Automation. # Detailed information of a PSC connection that is created through service connectivity automation.
"address": "A String", # Output only. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Output only. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"projectId": "A String", # Required. The consumer project_id where the forwarding rule is created from.
"pscConnectionId": "A String", # Output only. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. Please use Private Service Connect APIs for the latest status.
"serviceAttachment": "A String", # Output only. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
"pscConnection": { # Details of consumer resources in a PSC connection. # Detailed information of a PSC connection that is created by the customer who owns the cluster.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
},
],
},
],
"createTime": "A String", # Output only. The timestamp associated with the cluster creation request.
"crossClusterReplicationConfig": { # Cross cluster replication config. # Optional. Cross cluster replication config.
"clusterRole": "A String", # Output only. The role of the cluster in cross cluster replication.
"membership": { # An output only view of all the member clusters participating in the cross cluster replication. # Output only. An output only view of all the member clusters participating in the cross cluster replication. This view will be provided by every member cluster irrespective of its cluster role(primary or secondary). A primary cluster can provide information about all the secondary clusters replicating from it. However, a secondary cluster only knows about the primary cluster from which it is replicating. However, for scenarios, where the primary cluster is unavailable(e.g. regional outage), a GetCluster request can be sent to any other member cluster and this field will list all the member clusters participating in cross cluster replication.
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Output only. The primary cluster that acts as the source of replication for the secondary clusters.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # Output only. The list of secondary clusters replicating from the primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
},
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Details of the primary cluster that is used as the replication source for this secondary cluster. This field is only set for a secondary cluster.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # List of secondary clusters that are replicating from this primary cluster. This field is only set for a primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
"updateTime": "A String", # Output only. The last time cross cluster replication config was updated.
},
"deletionProtectionEnabled": True or False, # Optional. The delete operation will fail when the value is set to true.
"discoveryEndpoints": [ # Output only. Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.
{ # Endpoints on each network, for Redis clients to connect to the cluster.
"address": "A String", # Output only. Address of the exposed Redis endpoint used by clients to connect to the service. The address could be either IP or hostname.
"port": 42, # Output only. The port number of the exposed Redis endpoint.
"pscConfig": { # Output only. Customer configuration for where the endpoint is created and accessed from.
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
},
],
"encryptionInfo": { # EncryptionInfo describes the encryption information of a cluster or a backup. # Output only. Encryption information of the data at rest of the cluster.
"encryptionType": "A String", # Output only. Type of encryption.
"kmsKeyPrimaryState": "A String", # Output only. The state of the primary version of the KMS key perceived by the system. This field is not populated in backups.
"kmsKeyVersions": [ # Output only. KMS key versions that are being used to protect the data at-rest.
"A String",
],
"lastUpdateTime": "A String", # Output only. The most recent time when the encryption info was updated.
},
"gcsSource": { # Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. # Optional. Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. Read permission is required to import from the provided Cloud Storage objects.
"uris": [ # Optional. URIs of the Cloud Storage objects to import. Example: gs://bucket1/object1, gs://bucket2/folder2/object2
"A String",
],
},
"kmsKey": "A String", # Optional. The KMS key used to encrypt the at-rest data of the cluster.
"maintenancePolicy": { # Maintenance policy per cluster. # Optional. ClusterMaintenancePolicy determines when to allow or deny updates.
"createTime": "A String", # Output only. The time when the policy was created i.e. Maintenance Window or Deny Period was assigned.
"updateTime": "A String", # Output only. The time when the policy was updated i.e. Maintenance Window or Deny Period was updated.
"weeklyMaintenanceWindow": [ # Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_maintenance_window is expected to be one.
{ # Time window specified for weekly operations.
"day": "A String", # Optional. Allows to define schedule that runs specified day of the week.
"startTime": { # 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`. # Optional. Start time of the window in UTC.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
],
},
"maintenanceSchedule": { # Upcoming maintenance schedule. # Output only. ClusterMaintenanceSchedule Output only Published maintenance schedule.
"endTime": "A String", # Output only. The end time of any upcoming scheduled maintenance for this instance.
"startTime": "A String", # Output only. The start time of any upcoming scheduled maintenance for this instance.
},
"managedBackupSource": { # Backups that generated and managed by memorystore. # Optional. Backups generated and managed by memorystore service.
"backup": "A String", # Optional. Example: //redis.googleapis.com/projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup} A shorter version (without the prefix) of the backup name is also supported, like projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup_id} In this case, it assumes the backup is under redis.googleapis.com.
},
"name": "A String", # Required. Identifier. Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`
"nodeType": "A String", # Optional. The type of a redis node in the cluster. NodeType determines the underlying machine-type of a redis node.
"ondemandMaintenance": True or False, # Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger ondemand critical update on the cluster.
"persistenceConfig": { # Configuration of the persistence functionality. # Optional. Persistence config (RDB, AOF) for the cluster.
"aofConfig": { # Configuration of the AOF based persistence. # Optional. AOF configuration. This field will be ignored if mode is not AOF.
"appendFsync": "A String", # Optional. fsync configuration.
},
"mode": "A String", # Optional. The mode of persistence.
"rdbConfig": { # Configuration of the RDB based persistence. # Optional. RDB configuration. This field will be ignored if mode is not RDB.
"rdbSnapshotPeriod": "A String", # Optional. Period between RDB snapshots.
"rdbSnapshotStartTime": "A String", # Optional. The time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.
},
},
"preciseSizeGb": 3.14, # Output only. Precise value of redis memory size in GB for the entire cluster.
"pscConfigs": [ # Optional. Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.
{
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
],
"pscConnections": [ # Output only. The list of PSC connections that are auto-created through service connectivity automation.
{ # Details of consumer resources in a PSC connection.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
],
"pscServiceAttachments": [ # Output only. Service attachment details to configure Psc connections
{ # Configuration of a service attachment of the cluster, for creating PSC connections.
"connectionType": "A String", # Output only. Type of a PSC connection targeting this service attachment.
"serviceAttachment": "A String", # Output only. Service attachment URI which your self-created PscConnection should use as target
},
],
"redisConfigs": { # Optional. Key/Value pairs of customer overrides for mutable Redis Configs
"a_key": "A String",
},
"replicaCount": 42, # Optional. The number of replica nodes per shard.
"satisfiesPzi": True or False, # Optional. Output only. Reserved for future use.
"satisfiesPzs": True or False, # Optional. Output only. Reserved for future use.
"shardCount": 42, # Optional. Number of shards for the Redis cluster.
"simulateMaintenanceEvent": True or False, # Optional. Input only. Simulate a maintenance event.
"sizeGb": 42, # Output only. Redis memory size in GB for the entire cluster rounded up to the next integer.
"state": "A String", # Output only. The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED
"stateInfo": { # Represents additional information about the state of the cluster. # Output only. Additional information about the current state of the cluster.
"updateInfo": { # Represents information about an updating cluster. # Describes ongoing update on the cluster when cluster state is UPDATING.
"targetNodeType": "A String", # Target node type for redis cluster.
"targetReplicaCount": 42, # Target number of replica nodes per shard.
"targetShardCount": 42, # Target number of shards for redis cluster
},
},
"transitEncryptionMode": "A String", # Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
"uid": "A String", # Output only. System assigned, unique identifier for the cluster.
"zoneDistributionConfig": { # Zone distribution config for allocation of cluster resources. # Optional. This config will be used to determine how the customer wants us to distribute cluster resources within the region.
"mode": "A String", # Optional. The mode of zone distribution. Defaults to MULTI_ZONE, when not specified.
"zone": "A String", # Optional. When SINGLE ZONE distribution is selected, zone field would be used to allocate all resources in that zone. This is not applicable to MULTI_ZONE, and would be ignored for MULTI_ZONE clusters.
},
},
],
"nextPageToken": "A String", # Token to retrieve the next page of results, or empty if there are no more results in the list.
"unreachable": [ # Locations that could not be reached.
"A String",
],
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call 'execute()' on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
<div class="method">
<code class="details" id="patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</code>
<pre>Updates the metadata and configuration of a specific Redis cluster. Completed longrunning.Operation will contain the new cluster object in the response field. The returned operation is automatically deleted after a few hours, so there is no need to call DeleteOperation.
Args:
name: string, Required. Identifier. Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}` (required)
body: object, The request body.
The object takes the form of:
{ # A cluster instance.
"allowFewerZonesDeployment": True or False, # Optional. Immutable. Allows customers to specify if they are okay with deploying a multi-zone cluster in less than 3 zones. Once set, if there is a zonal outage during the cluster creation, the cluster will only be deployed in 2 zones, and stay within the 2 zones for its lifecycle.
"asyncClusterEndpointsDeletionEnabled": True or False, # Optional. If true, cluster endpoints that are created and registered by customers can be deleted asynchronously. That is, such a cluster endpoint can be de-registered before the forwarding rules in the cluster endpoint are deleted.
"authorizationMode": "A String", # Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster.
"automatedBackupConfig": { # The automated backup config for a cluster. # Optional. The automated backup config for the cluster.
"automatedBackupMode": "A String", # Optional. The automated backup mode. If the mode is disabled, the other fields will be ignored.
"fixedFrequencySchedule": { # This schedule allows the backup to be triggered at a fixed frequency (currently only daily is supported). # Optional. Trigger automated backups at a fixed frequency.
"startTime": { # 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`. # Required. The start time of every automated backup in UTC. It must be set to the start of an hour. This field is required.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
"retention": "A String", # Optional. How long to keep automated backups before the backups are deleted. The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
},
"backupCollection": "A String", # Optional. Output only. The backup collection full resource name. Example: projects/{project}/locations/{location}/backupCollections/{collection}
"clusterEndpoints": [ # Optional. A list of cluster endpoints.
{ # ClusterEndpoint consists of PSC connections that are created as a group in each VPC network for accessing the cluster. In each group, there shall be one connection for each service attachment in the cluster.
"connections": [ # Required. A group of PSC connections. They are created in the same VPC network, one for each service attachment in the cluster.
{ # Detailed information of each PSC connection.
"pscAutoConnection": { # Details of consumer resources in a PSC connection that is created through Service Connectivity Automation. # Detailed information of a PSC connection that is created through service connectivity automation.
"address": "A String", # Output only. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Output only. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"projectId": "A String", # Required. The consumer project_id where the forwarding rule is created from.
"pscConnectionId": "A String", # Output only. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. Please use Private Service Connect APIs for the latest status.
"serviceAttachment": "A String", # Output only. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
"pscConnection": { # Details of consumer resources in a PSC connection. # Detailed information of a PSC connection that is created by the customer who owns the cluster.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
},
],
},
],
"createTime": "A String", # Output only. The timestamp associated with the cluster creation request.
"crossClusterReplicationConfig": { # Cross cluster replication config. # Optional. Cross cluster replication config.
"clusterRole": "A String", # Output only. The role of the cluster in cross cluster replication.
"membership": { # An output only view of all the member clusters participating in the cross cluster replication. # Output only. An output only view of all the member clusters participating in the cross cluster replication. This view will be provided by every member cluster irrespective of its cluster role(primary or secondary). A primary cluster can provide information about all the secondary clusters replicating from it. However, a secondary cluster only knows about the primary cluster from which it is replicating. However, for scenarios, where the primary cluster is unavailable(e.g. regional outage), a GetCluster request can be sent to any other member cluster and this field will list all the member clusters participating in cross cluster replication.
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Output only. The primary cluster that acts as the source of replication for the secondary clusters.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # Output only. The list of secondary clusters replicating from the primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
},
"primaryCluster": { # Details of the remote cluster associated with this cluster in a cross cluster replication setup. # Details of the primary cluster that is used as the replication source for this secondary cluster. This field is only set for a secondary cluster.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
"secondaryClusters": [ # List of secondary clusters that are replicating from this primary cluster. This field is only set for a primary cluster.
{ # Details of the remote cluster associated with this cluster in a cross cluster replication setup.
"cluster": "A String", # Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
"uid": "A String", # Output only. The unique identifier of the remote cluster.
},
],
"updateTime": "A String", # Output only. The last time cross cluster replication config was updated.
},
"deletionProtectionEnabled": True or False, # Optional. The delete operation will fail when the value is set to true.
"discoveryEndpoints": [ # Output only. Endpoints created on each given network, for Redis clients to connect to the cluster. Currently only one discovery endpoint is supported.
{ # Endpoints on each network, for Redis clients to connect to the cluster.
"address": "A String", # Output only. Address of the exposed Redis endpoint used by clients to connect to the service. The address could be either IP or hostname.
"port": 42, # Output only. The port number of the exposed Redis endpoint.
"pscConfig": { # Output only. Customer configuration for where the endpoint is created and accessed from.
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
},
],
"encryptionInfo": { # EncryptionInfo describes the encryption information of a cluster or a backup. # Output only. Encryption information of the data at rest of the cluster.
"encryptionType": "A String", # Output only. Type of encryption.
"kmsKeyPrimaryState": "A String", # Output only. The state of the primary version of the KMS key perceived by the system. This field is not populated in backups.
"kmsKeyVersions": [ # Output only. KMS key versions that are being used to protect the data at-rest.
"A String",
],
"lastUpdateTime": "A String", # Output only. The most recent time when the encryption info was updated.
},
"gcsSource": { # Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. # Optional. Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be the same region as the clusters. Read permission is required to import from the provided Cloud Storage objects.
"uris": [ # Optional. URIs of the Cloud Storage objects to import. Example: gs://bucket1/object1, gs://bucket2/folder2/object2
"A String",
],
},
"kmsKey": "A String", # Optional. The KMS key used to encrypt the at-rest data of the cluster.
"maintenancePolicy": { # Maintenance policy per cluster. # Optional. ClusterMaintenancePolicy determines when to allow or deny updates.
"createTime": "A String", # Output only. The time when the policy was created i.e. Maintenance Window or Deny Period was assigned.
"updateTime": "A String", # Output only. The time when the policy was updated i.e. Maintenance Window or Deny Period was updated.
"weeklyMaintenanceWindow": [ # Optional. Maintenance window that is applied to resources covered by this policy. Minimum 1. For the current version, the maximum number of weekly_maintenance_window is expected to be one.
{ # Time window specified for weekly operations.
"day": "A String", # Optional. Allows to define schedule that runs specified day of the week.
"startTime": { # 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`. # Optional. Start time of the window in UTC.
"hours": 42, # Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
"minutes": 42, # Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
"nanos": 42, # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
"seconds": 42, # Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
},
},
],
},
"maintenanceSchedule": { # Upcoming maintenance schedule. # Output only. ClusterMaintenanceSchedule Output only Published maintenance schedule.
"endTime": "A String", # Output only. The end time of any upcoming scheduled maintenance for this instance.
"startTime": "A String", # Output only. The start time of any upcoming scheduled maintenance for this instance.
},
"managedBackupSource": { # Backups that generated and managed by memorystore. # Optional. Backups generated and managed by memorystore service.
"backup": "A String", # Optional. Example: //redis.googleapis.com/projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup} A shorter version (without the prefix) of the backup name is also supported, like projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup_id} In this case, it assumes the backup is under redis.googleapis.com.
},
"name": "A String", # Required. Identifier. Unique name of the resource in this scope including project and location using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}`
"nodeType": "A String", # Optional. The type of a redis node in the cluster. NodeType determines the underlying machine-type of a redis node.
"ondemandMaintenance": True or False, # Optional. Input only. Ondemand maintenance for the cluster. This field can be used to trigger ondemand critical update on the cluster.
"persistenceConfig": { # Configuration of the persistence functionality. # Optional. Persistence config (RDB, AOF) for the cluster.
"aofConfig": { # Configuration of the AOF based persistence. # Optional. AOF configuration. This field will be ignored if mode is not AOF.
"appendFsync": "A String", # Optional. fsync configuration.
},
"mode": "A String", # Optional. The mode of persistence.
"rdbConfig": { # Configuration of the RDB based persistence. # Optional. RDB configuration. This field will be ignored if mode is not RDB.
"rdbSnapshotPeriod": "A String", # Optional. Period between RDB snapshots.
"rdbSnapshotStartTime": "A String", # Optional. The time that the first snapshot was/will be attempted, and to which future snapshots will be aligned. If not provided, the current time will be used.
},
},
"preciseSizeGb": 3.14, # Output only. Precise value of redis memory size in GB for the entire cluster.
"pscConfigs": [ # Optional. Each PscConfig configures the consumer network where IPs will be designated to the cluster for client access through Private Service Connect Automation. Currently, only one PscConfig is supported.
{
"network": "A String", # Required. The network where the IP address of the discovery endpoint will be reserved, in the form of projects/{network_project}/global/networks/{network_id}.
},
],
"pscConnections": [ # Output only. The list of PSC connections that are auto-created through service connectivity automation.
{ # Details of consumer resources in a PSC connection.
"address": "A String", # Required. The IP allocated on the consumer network for the PSC forwarding rule.
"connectionType": "A String", # Output only. Type of the PSC connection.
"forwardingRule": "A String", # Required. The URI of the consumer side forwarding rule. Example: projects/{projectNumOrId}/regions/us-east1/forwardingRules/{resourceId}.
"network": "A String", # Required. The consumer network where the IP address resides, in the form of projects/{project_id}/global/networks/{network_id}.
"port": 42, # Output only. port will only be set for Primary/Reader or Discovery endpoint.
"projectId": "A String", # Optional. Project ID of the consumer project where the forwarding rule is created in.
"pscConnectionId": "A String", # Required. The PSC connection id of the forwarding rule connected to the service attachment.
"pscConnectionStatus": "A String", # Output only. The status of the PSC connection. Please note that this value is updated periodically. To get the latest status of a PSC connection, follow https://cloud.google.com/vpc/docs/configure-private-service-connect-services#endpoint-details.
"serviceAttachment": "A String", # Required. The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
},
],
"pscServiceAttachments": [ # Output only. Service attachment details to configure Psc connections
{ # Configuration of a service attachment of the cluster, for creating PSC connections.
"connectionType": "A String", # Output only. Type of a PSC connection targeting this service attachment.
"serviceAttachment": "A String", # Output only. Service attachment URI which your self-created PscConnection should use as target
},
],
"redisConfigs": { # Optional. Key/Value pairs of customer overrides for mutable Redis Configs
"a_key": "A String",
},
"replicaCount": 42, # Optional. The number of replica nodes per shard.
"satisfiesPzi": True or False, # Optional. Output only. Reserved for future use.
"satisfiesPzs": True or False, # Optional. Output only. Reserved for future use.
"shardCount": 42, # Optional. Number of shards for the Redis cluster.
"simulateMaintenanceEvent": True or False, # Optional. Input only. Simulate a maintenance event.
"sizeGb": 42, # Output only. Redis memory size in GB for the entire cluster rounded up to the next integer.
"state": "A String", # Output only. The current state of this cluster. Can be CREATING, READY, UPDATING, DELETING and SUSPENDED
"stateInfo": { # Represents additional information about the state of the cluster. # Output only. Additional information about the current state of the cluster.
"updateInfo": { # Represents information about an updating cluster. # Describes ongoing update on the cluster when cluster state is UPDATING.
"targetNodeType": "A String", # Target node type for redis cluster.
"targetReplicaCount": 42, # Target number of replica nodes per shard.
"targetShardCount": 42, # Target number of shards for redis cluster
},
},
"transitEncryptionMode": "A String", # Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster.
"uid": "A String", # Output only. System assigned, unique identifier for the cluster.
"zoneDistributionConfig": { # Zone distribution config for allocation of cluster resources. # Optional. This config will be used to determine how the customer wants us to distribute cluster resources within the region.
"mode": "A String", # Optional. The mode of zone distribution. Defaults to MULTI_ZONE, when not specified.
"zone": "A String", # Optional. When SINGLE ZONE distribution is selected, zone field would be used to allocate all resources in that zone. This is not applicable to MULTI_ZONE, and would be ignored for MULTI_ZONE clusters.
},
}
requestId: string, Optional. Idempotent request UUID.
updateMask: string, Required. Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from Cluster: * `size_gb` * `replica_count` * `cluster_endpoints`
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # This resource represents a long-running operation that is the result of a network API call.
"done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
"error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
"code": 42, # The status code, which should be an enum value of google.rpc.Code.
"details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
],
"message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
"metadata": { # { `createTime`: The time the operation was created. `endTime`: The time the operation finished running. `target`: Server-defined resource path for the target of the operation. `verb`: Name of the verb executed by the operation. `statusDetail`: Human-readable status of the operation, if any. `cancelRequested`: Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. `apiVersion`: API version used to start the operation. }
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
"name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
"response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
}</pre>
</div>
<div class="method">
<code class="details" id="rescheduleClusterMaintenance">rescheduleClusterMaintenance(name, body=None, x__xgafv=None)</code>
<pre>Reschedules upcoming maintenance event.
Args:
name: string, Required. Redis Cluster instance resource name using the form: `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}` where `location_id` refers to a Google Cloud region. (required)
body: object, The request body.
The object takes the form of:
{ # Request for rescheduling a cluster maintenance.
"rescheduleType": "A String", # Required. If reschedule type is SPECIFIC_TIME, must set up schedule_time as well.
"scheduleTime": "A String", # Optional. Timestamp when the maintenance shall be rescheduled to if reschedule_type=SPECIFIC_TIME, in RFC 3339 format, for example `2012-11-15T16:19:00.094Z`.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # This resource represents a long-running operation that is the result of a network API call.
"done": True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
"error": { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
"code": 42, # The status code, which should be an enum value of google.rpc.Code.
"details": [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
],
"message": "A String", # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
"metadata": { # { `createTime`: The time the operation was created. `endTime`: The time the operation finished running. `target`: Server-defined resource path for the target of the operation. `verb`: Name of the verb executed by the operation. `statusDetail`: Human-readable status of the operation, if any. `cancelRequested`: Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. `apiVersion`: API version used to start the operation. }
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
"name": "A String", # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
"response": { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
"a_key": "", # Properties of the object. Contains field @type with type URL.
},
}</pre>
</div>
</body></html>
|