Skip to content

Commit

Permalink
docs: Allow 14 week backup retention for Firestore daily backups (#2031)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 621269025

Source-Link: https://github.com/googleapis/googleapis/commit/d0ed6724c4f2868bf4c6d8e0fe9223221f0f0e50

Source-Link: https://github.com/googleapis/googleapis-gen/commit/73c87bc51e565666bf4e399b194b3d71e1340ee7
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNzNjODdiYzUxZTU2NTY2NmJmNGUzOTliMTk0YjNkNzFlMTM0MGVlNyJ9

BEGIN_NESTED_COMMIT
docs: correct BackupSchedule recurrence docs that mentioned specific time of day
chore: fix typo in DeleteBackupScheduleRequest

PiperOrigin-RevId: 619912852

Source-Link: https://github.com/googleapis/googleapis/commit/8fe68cf33c51264152c321321ee78b8a3197f497

Source-Link: https://github.com/googleapis/googleapis-gen/commit/1a8186f74665611f485811ac5ab643c9f05655c7
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMWE4MTg2Zjc0NjY1NjExZjQ4NTgxMWFjNWFiNjQzYzlmMDU2NTVjNyJ9
END_NESTED_COMMIT
BEGIN_NESTED_COMMIT
feat: add several fields to manage state of database encryption update
PiperOrigin-RevId: 619289281

Source-Link: https://github.com/googleapis/googleapis/commit/3a7c33486ca758b180c6d11dd4705fa9a22e8576

Source-Link: https://github.com/googleapis/googleapis-gen/commit/6a8c733062d833d11c5245eda50f5108e0e55324
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmE4YzczMzA2MmQ4MzNkMTFjNTI0NWVkYTUwZjUxMDhlMGU1NTMyNCJ9
END_NESTED_COMMIT
  • Loading branch information
gcf-owl-bot[bot] committed Apr 29, 2024
1 parent 9da9fb0 commit 5811492
Show file tree
Hide file tree
Showing 18 changed files with 1,572 additions and 28 deletions.
40 changes: 39 additions & 1 deletion dev/protos/admin_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2240,7 +2240,13 @@
"EDITION_99998_TEST_ONLY": 99998,
"EDITION_99999_TEST_ONLY": 99999,
"EDITION_MAX": 2147483647
}
},
"reserved": [
[
900,
900
]
]
},
"FileDescriptorProto": {
"fields": {
Expand Down Expand Up @@ -2955,6 +2961,10 @@
"type": "FeatureSet",
"id": 21
},
"featureSupport": {
"type": "FeatureSupport",
"id": 22
},
"uninterpretedOption": {
"rule": "repeated",
"type": "UninterpretedOption",
Expand Down Expand Up @@ -3024,6 +3034,26 @@
"id": 2
}
}
},
"FeatureSupport": {
"fields": {
"editionIntroduced": {
"type": "Edition",
"id": 1
},
"editionDeprecated": {
"type": "Edition",
"id": 2
},
"deprecationWarning": {
"type": "string",
"id": 3
},
"editionRemoved": {
"type": "Edition",
"id": 4
}
}
}
}
},
Expand Down Expand Up @@ -3403,6 +3433,14 @@
"type": "Edition",
"id": 3
},
"overridableFeatures": {
"type": "FeatureSet",
"id": 4
},
"fixedFeatures": {
"type": "FeatureSet",
"id": 5
},
"features": {
"type": "FeatureSet",
"id": 2
Expand Down
84 changes: 84 additions & 0 deletions dev/protos/firestore_admin_v1_proto_api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6334,6 +6334,9 @@ export namespace google {
/** FieldOptions features */
features?: (google.protobuf.IFeatureSet|null);

/** FieldOptions featureSupport */
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);

/** FieldOptions uninterpretedOption */
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);

Expand Down Expand Up @@ -6389,6 +6392,9 @@ export namespace google {
/** FieldOptions features. */
public features?: (google.protobuf.IFeatureSet|null);

/** FieldOptions featureSupport. */
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);

/** FieldOptions uninterpretedOption. */
public uninterpretedOption: google.protobuf.IUninterpretedOption[];

Expand Down Expand Up @@ -6492,6 +6498,72 @@ export namespace google {
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
}

/** Properties of a FeatureSupport. */
interface IFeatureSupport {

/** FeatureSupport editionIntroduced */
editionIntroduced?: (google.protobuf.Edition|null);

/** FeatureSupport editionDeprecated */
editionDeprecated?: (google.protobuf.Edition|null);

/** FeatureSupport deprecationWarning */
deprecationWarning?: (string|null);

/** FeatureSupport editionRemoved */
editionRemoved?: (google.protobuf.Edition|null);
}

/** Represents a FeatureSupport. */
class FeatureSupport implements IFeatureSupport {

/**
* Constructs a new FeatureSupport.
* @param [properties] Properties to set
*/
constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);

/** FeatureSupport editionIntroduced. */
public editionIntroduced: google.protobuf.Edition;

/** FeatureSupport editionDeprecated. */
public editionDeprecated: google.protobuf.Edition;

/** FeatureSupport deprecationWarning. */
public deprecationWarning: string;

/** FeatureSupport editionRemoved. */
public editionRemoved: google.protobuf.Edition;

/**
* Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
* @param object Plain object
* @returns FeatureSupport
*/
public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;

/**
* Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
* @param message FeatureSupport
* @param [options] Conversion options
* @returns Plain object
*/
public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };

/**
* Converts this FeatureSupport to JSON.
* @returns JSON object
*/
public toJSON(): { [k: string]: any };

/**
* Gets the default type url for FeatureSupport
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
* @returns The default type url
*/
public static getTypeUrl(typeUrlPrefix?: string): string;
}
}

/** Properties of an OneofOptions. */
Expand Down Expand Up @@ -7151,6 +7223,12 @@ export namespace google {
/** FeatureSetEditionDefault edition */
edition?: (google.protobuf.Edition|null);

/** FeatureSetEditionDefault overridableFeatures */
overridableFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault fixedFeatures */
fixedFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault features */
features?: (google.protobuf.IFeatureSet|null);
}
Expand All @@ -7167,6 +7245,12 @@ export namespace google {
/** FeatureSetEditionDefault edition. */
public edition: google.protobuf.Edition;

/** FeatureSetEditionDefault overridableFeatures. */
public overridableFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault fixedFeatures. */
public fixedFeatures?: (google.protobuf.IFeatureSet|null);

/** FeatureSetEditionDefault features. */
public features?: (google.protobuf.IFeatureSet|null);

Expand Down
Loading

0 comments on commit 5811492

Please sign in to comment.