diff --git a/DiscoveryJson/aiplatform_v1.json b/DiscoveryJson/aiplatform_v1.json index 10f09393f0..3591ee13fd 100644 --- a/DiscoveryJson/aiplatform_v1.json +++ b/DiscoveryJson/aiplatform_v1.json @@ -15332,7 +15332,7 @@ } } }, - "revision": "20231229", + "revision": "20240105", "rootUrl": "https://aiplatform.googleapis.com/", "schemas": { "CloudAiLargeModelsVisionEmbedVideoResponse": { @@ -37135,6 +37135,8 @@ "FILTER_REASON_RAI_VIDEO_FRAME_CSAM", "FILTER_REASON_RAI_VIDEO_FRAME_PEDO", "FILTER_REASON_RAI_CONTEXTUAL_DANGEROUS", + "FILTER_REASON_RAI_GRAIL_TEXT", + "FILTER_REASON_RAI_GRAIL_IMAGE", "FILTER_REASON_RAI_SAFETYCAT", "FILTER_REASON_TOXICITY", "FILTER_REASON_ATLAS_PRICING", @@ -37174,6 +37176,8 @@ "RAI Filter", "RAI Filter", "RAI Filter", + "Grail Text", + "Grail Image", "SafetyCat.", "Toxic content.", "Atlas specific topic filter for pricing questions.", diff --git a/DiscoveryJson/aiplatform_v1beta1.json b/DiscoveryJson/aiplatform_v1beta1.json index ed41a4439e..cfaeb0ec36 100644 --- a/DiscoveryJson/aiplatform_v1beta1.json +++ b/DiscoveryJson/aiplatform_v1beta1.json @@ -17279,7 +17279,7 @@ } } }, - "revision": "20231229", + "revision": "20240105", "rootUrl": "https://aiplatform.googleapis.com/", "schemas": { "CloudAiLargeModelsVisionEmbedVideoResponse": { @@ -29821,17 +29821,6 @@ }, "type": "object" }, - "GoogleCloudAiplatformV1beta1RebootPersistentResourceOperationMetadata": { - "description": "Details of operations that perform reboot PersistentResource.", - "id": "GoogleCloudAiplatformV1beta1RebootPersistentResourceOperationMetadata", - "properties": { - "genericMetadata": { - "$ref": "GoogleCloudAiplatformV1beta1GenericOperationMetadata", - "description": "Operation metadata for PersistentResource." - } - }, - "type": "object" - }, "GoogleCloudAiplatformV1beta1RemoveContextChildrenRequest": { "description": "Request message for MetadataService.DeleteContextChildrenRequest.", "id": "GoogleCloudAiplatformV1beta1RemoveContextChildrenRequest", @@ -40016,6 +40005,8 @@ "FILTER_REASON_RAI_VIDEO_FRAME_CSAM", "FILTER_REASON_RAI_VIDEO_FRAME_PEDO", "FILTER_REASON_RAI_CONTEXTUAL_DANGEROUS", + "FILTER_REASON_RAI_GRAIL_TEXT", + "FILTER_REASON_RAI_GRAIL_IMAGE", "FILTER_REASON_RAI_SAFETYCAT", "FILTER_REASON_TOXICITY", "FILTER_REASON_ATLAS_PRICING", @@ -40055,6 +40046,8 @@ "RAI Filter", "RAI Filter", "RAI Filter", + "Grail Text", + "Grail Image", "SafetyCat.", "Toxic content.", "Atlas specific topic filter for pricing questions.", diff --git a/DiscoveryJson/analyticsadmin_v1alpha.json b/DiscoveryJson/analyticsadmin_v1alpha.json index 0d84478d27..40868a1c00 100644 --- a/DiscoveryJson/analyticsadmin_v1alpha.json +++ b/DiscoveryJson/analyticsadmin_v1alpha.json @@ -1775,6 +1775,165 @@ } } }, + "calculatedMetrics": { + "methods": { + "create": { + "description": "Creates a CalculatedMetric.", + "flatPath": "v1alpha/properties/{propertiesId}/calculatedMetrics", + "httpMethod": "POST", + "id": "analyticsadmin.properties.calculatedMetrics.create", + "parameterOrder": [ + "parent" + ], + "parameters": { + "calculatedMetricId": { + "description": "Required. The ID to use for the calculated metric which will become the final component of the calculated metric's resource name. This value should be 1-80 characters and valid characters are /[a-zA-Z0-9_]/, no spaces allowed. calculated_metric_id must be unique between all calculated metrics under a property. The calculated_metric_id is used when referencing this calculated metric from external APIs, for example, \"calcMetric:{calculated_metric_id}\".", + "location": "query", + "type": "string" + }, + "parent": { + "description": "Required. Format: properties/{property_id} Example: properties/1234", + "location": "path", + "pattern": "^properties/[^/]+$", + "required": true, + "type": "string" + } + }, + "path": "v1alpha/{+parent}/calculatedMetrics", + "request": { + "$ref": "GoogleAnalyticsAdminV1alphaCalculatedMetric" + }, + "response": { + "$ref": "GoogleAnalyticsAdminV1alphaCalculatedMetric" + }, + "scopes": [ + "https://www.googleapis.com/auth/analytics.edit" + ] + }, + "delete": { + "description": "Deletes a CalculatedMetric on a property.", + "flatPath": "v1alpha/properties/{propertiesId}/calculatedMetrics/{calculatedMetricsId}", + "httpMethod": "DELETE", + "id": "analyticsadmin.properties.calculatedMetrics.delete", + "parameterOrder": [ + "name" + ], + "parameters": { + "name": { + "description": "Required. The name of the CalculatedMetric to delete. Format: properties/{property_id}/calculatedMetrics/{calculated_metric_id} Example: properties/1234/calculatedMetrics/Metric01", + "location": "path", + "pattern": "^properties/[^/]+/calculatedMetrics/[^/]+$", + "required": true, + "type": "string" + } + }, + "path": "v1alpha/{+name}", + "response": { + "$ref": "GoogleProtobufEmpty" + }, + "scopes": [ + "https://www.googleapis.com/auth/analytics.edit" + ] + }, + "get": { + "description": "Lookup for a single CalculatedMetric.", + "flatPath": "v1alpha/properties/{propertiesId}/calculatedMetrics/{calculatedMetricsId}", + "httpMethod": "GET", + "id": "analyticsadmin.properties.calculatedMetrics.get", + "parameterOrder": [ + "name" + ], + "parameters": { + "name": { + "description": "Required. The name of the CalculatedMetric to get. Format: properties/{property_id}/calculatedMetrics/{calculated_metric_id} Example: properties/1234/calculatedMetrics/Metric01", + "location": "path", + "pattern": "^properties/[^/]+/calculatedMetrics/[^/]+$", + "required": true, + "type": "string" + } + }, + "path": "v1alpha/{+name}", + "response": { + "$ref": "GoogleAnalyticsAdminV1alphaCalculatedMetric" + }, + "scopes": [ + "https://www.googleapis.com/auth/analytics.edit", + "https://www.googleapis.com/auth/analytics.readonly" + ] + }, + "list": { + "description": "Lists CalculatedMetrics on a property.", + "flatPath": "v1alpha/properties/{propertiesId}/calculatedMetrics", + "httpMethod": "GET", + "id": "analyticsadmin.properties.calculatedMetrics.list", + "parameterOrder": [ + "parent" + ], + "parameters": { + "pageSize": { + "description": "Optional. The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200 (higher values will be coerced to the maximum).", + "format": "int32", + "location": "query", + "type": "integer" + }, + "pageToken": { + "description": "Optional. A page token, received from a previous `ListCalculatedMetrics` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListCalculatedMetrics` must match the call that provided the page token.", + "location": "query", + "type": "string" + }, + "parent": { + "description": "Required. Example format: properties/1234", + "location": "path", + "pattern": "^properties/[^/]+$", + "required": true, + "type": "string" + } + }, + "path": "v1alpha/{+parent}/calculatedMetrics", + "response": { + "$ref": "GoogleAnalyticsAdminV1alphaListCalculatedMetricsResponse" + }, + "scopes": [ + "https://www.googleapis.com/auth/analytics.edit", + "https://www.googleapis.com/auth/analytics.readonly" + ] + }, + "patch": { + "description": "Updates a CalculatedMetric on a property.", + "flatPath": "v1alpha/properties/{propertiesId}/calculatedMetrics/{calculatedMetricsId}", + "httpMethod": "PATCH", + "id": "analyticsadmin.properties.calculatedMetrics.patch", + "parameterOrder": [ + "name" + ], + "parameters": { + "name": { + "description": "Output only. Resource name for this CalculatedMetric. Format: 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}'", + "location": "path", + "pattern": "^properties/[^/]+/calculatedMetrics/[^/]+$", + "required": true, + "type": "string" + }, + "updateMask": { + "description": "Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string \"*\" to match all fields.", + "format": "google-fieldmask", + "location": "query", + "type": "string" + } + }, + "path": "v1alpha/{+name}", + "request": { + "$ref": "GoogleAnalyticsAdminV1alphaCalculatedMetric" + }, + "response": { + "$ref": "GoogleAnalyticsAdminV1alphaCalculatedMetric" + }, + "scopes": [ + "https://www.googleapis.com/auth/analytics.edit" + ] + } + } + }, "channelGroups": { "methods": { "create": { @@ -4298,7 +4457,7 @@ } } }, - "revision": "20240105", + "revision": "20240115", "rootUrl": "https://analyticsadmin.googleapis.com/", "schemas": { "GoogleAnalyticsAdminV1alphaAccessBetweenFilter": { @@ -5444,6 +5603,88 @@ }, "type": "object" }, + "GoogleAnalyticsAdminV1alphaCalculatedMetric": { + "description": "A definition for a calculated metric.", + "id": "GoogleAnalyticsAdminV1alphaCalculatedMetric", + "properties": { + "calculatedMetricId": { + "description": "Output only. The ID to use for the calculated metric. In the UI, this is referred to as the \"API name.\" The calculated_metric_id is used when referencing this calculated metric from external APIs. For example, \"calcMetric:{calculated_metric_id}\".", + "readOnly": true, + "type": "string" + }, + "description": { + "description": "Optional. Description for this calculated metric. Max length of 4096 characters.", + "type": "string" + }, + "displayName": { + "description": "Required. Display name for this calculated metric as shown in the Google Analytics UI. Max length 82 characters.", + "type": "string" + }, + "formula": { + "description": "Required. The calculated metric's definition. Maximum number of unique referenced custom metrics is 5. Formulas supports the following operations: + (addition), - (subtraction), - (negative), * (multiplication), / (division), () (parenthesis). Any valid real numbers are acceptable that fit in a Long (64bit integer) or a Double (64 bit floating point number). Example formula: \"( customEvent:parameter_name + cartPurchaseQuantity ) / 2.0\"", + "type": "string" + }, + "invalidMetricReference": { + "description": "Output only. If true, this calculated metric has a invalid metric reference. Anything using a calculated metric with invalid_metric_reference set to true may fail, produce warnings, or produce unexpected results.", + "readOnly": true, + "type": "boolean" + }, + "metricUnit": { + "description": "Required. The type for the calculated metric's value.", + "enum": [ + "METRIC_UNIT_UNSPECIFIED", + "STANDARD", + "CURRENCY", + "FEET", + "MILES", + "METERS", + "KILOMETERS", + "MILLISECONDS", + "SECONDS", + "MINUTES", + "HOURS" + ], + "enumDescriptions": [ + "MetricUnit unspecified or missing.", + "This metric uses default units.", + "This metric measures a currency.", + "This metric measures feet.", + "This metric measures miles.", + "This metric measures meters.", + "This metric measures kilometers.", + "This metric measures milliseconds.", + "This metric measures seconds.", + "This metric measures minutes.", + "This metric measures hours." + ], + "type": "string" + }, + "name": { + "description": "Output only. Resource name for this CalculatedMetric. Format: 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}'", + "readOnly": true, + "type": "string" + }, + "restrictedMetricType": { + "description": "Output only. Types of restricted data that this metric contains.", + "items": { + "enum": [ + "RESTRICTED_METRIC_TYPE_UNSPECIFIED", + "COST_DATA", + "REVENUE_DATA" + ], + "enumDescriptions": [ + "Type unknown or unspecified.", + "Metric reports cost data.", + "Metric reports revenue data." + ], + "type": "string" + }, + "readOnly": true, + "type": "array" + } + }, + "type": "object" + }, "GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest": { "description": "Request message for CancelDisplayVideo360AdvertiserLinkProposal RPC.", "id": "GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest", @@ -5509,6 +5750,10 @@ "$ref": "GoogleAnalyticsAdminV1alphaBigQueryLink", "description": "A snapshot of a BigQuery link resource in change history." }, + "calculatedMetric": { + "$ref": "GoogleAnalyticsAdminV1alphaCalculatedMetric", + "description": "A snapshot of a CalculatedMetric resource in change history." + }, "channelGroup": { "$ref": "GoogleAnalyticsAdminV1alphaChannelGroup", "description": "A snapshot of a ChannelGroup resource in change history." @@ -7019,6 +7264,24 @@ }, "type": "object" }, + "GoogleAnalyticsAdminV1alphaListCalculatedMetricsResponse": { + "description": "Response message for ListCalculatedMetrics RPC.", + "id": "GoogleAnalyticsAdminV1alphaListCalculatedMetricsResponse", + "properties": { + "calculatedMetrics": { + "description": "List of CalculatedMetrics.", + "items": { + "$ref": "GoogleAnalyticsAdminV1alphaCalculatedMetric" + }, + "type": "array" + }, + "nextPageToken": { + "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.", + "type": "string" + } + }, + "type": "object" + }, "GoogleAnalyticsAdminV1alphaListChannelGroupsResponse": { "description": "Response message for ListChannelGroups RPC.", "id": "GoogleAnalyticsAdminV1alphaListChannelGroupsResponse", @@ -7955,7 +8218,8 @@ "SKADNETWORK_CONVERSION_VALUE_SCHEMA", "ADSENSE_LINK", "AUDIENCE", - "EVENT_CREATE_RULE" + "EVENT_CREATE_RULE", + "CALCULATED_METRIC" ], "enumDescriptions": [ "Resource type unknown or not specified.", @@ -7981,7 +8245,8 @@ "SKAdNetworkConversionValueSchema resource", "AdSenseLink resource", "Audience resource", - "EventCreateRule resource" + "EventCreateRule resource", + "CalculatedMetric resource" ], "type": "string" }, diff --git a/DiscoveryJson/androidmanagement_v1.json b/DiscoveryJson/androidmanagement_v1.json index 3b1aeb5d15..9bb87e8f19 100644 --- a/DiscoveryJson/androidmanagement_v1.json +++ b/DiscoveryJson/androidmanagement_v1.json @@ -1095,7 +1095,7 @@ } } }, - "revision": "20231204", + "revision": "20240108", "rootUrl": "https://androidmanagement.googleapis.com/", "schemas": { "AdbShellCommandEvent": { @@ -2667,7 +2667,7 @@ "Defaults to OPEN_NETWORK_SECURITY, which means the device will be able to connect to all types of Wi-Fi networks.", "The device will be able to connect to all types of Wi-Fi networks.", "A personal network such as WEP, WPA2-PSK is the minimum required security. The device will not be able to connect to open wifi networks. This is stricter than OPEN_NETWORK_SECURITY. A nonComplianceDetail with API_LEVEL is reported if the Android version is less than 13.", - "An enterprise EAP network is the minimum required security level. The device will not be able to connect to Wi-Fi network below this security level. This is stricter than PERSONAL_NETWORK_SECURITY A nonComplianceDetail with API_LEVEL is reported if the Android version is less than 13." + "An enterprise EAP network is the minimum required security level. The device will not be able to connect to Wi-Fi network below this security level. This is stricter than PERSONAL_NETWORK_SECURITY. A nonComplianceDetail with API_LEVEL is reported if the Android version is less than 13." ], "type": "string" }, diff --git a/DiscoveryJson/androidpublisher_v3.json b/DiscoveryJson/androidpublisher_v3.json index 6b93003fab..b7bdf6a674 100644 --- a/DiscoveryJson/androidpublisher_v3.json +++ b/DiscoveryJson/androidpublisher_v3.json @@ -4695,7 +4695,7 @@ } } }, - "revision": "20240111", + "revision": "20240116", "rootUrl": "https://androidpublisher.googleapis.com/", "schemas": { "Abi": { @@ -8038,12 +8038,18 @@ "id": "RevocationContext", "properties": { "proratedRefund": { - "$ref": "UNDEFINED_packageNameRevocationContextProratedRefund", + "$ref": "RevocationContextProratedRefund", "description": "Optional. Used when users should be refunded a prorated amount they paid for their subscription based on the amount of time remaining in a subscription. Not supported for subscriptions with multiple items." } }, "type": "object" }, + "RevocationContextProratedRefund": { + "description": "Used to determine if the refund type in the RevocationContext is a prorated refund.", + "id": "RevocationContextProratedRefund", + "properties": {}, + "type": "object" + }, "RevokeSubscriptionPurchaseRequest": { "description": "Request for the purchases.subscriptionsv2.revoke API.", "id": "RevokeSubscriptionPurchaseRequest", @@ -9235,12 +9241,6 @@ }, "type": "object" }, - "UNDEFINED_packageNameRevocationContextProratedRefund": { - "description": "Used to determine if the refund type in the RevocationContext is a prorated refund.", - "id": "UNDEFINED_packageNameRevocationContextProratedRefund", - "properties": {}, - "type": "object" - }, "UpdateBasePlanStateRequest": { "description": "Request message to update the state of a subscription base plan.", "id": "UpdateBasePlanStateRequest", diff --git a/DiscoveryJson/cloudbilling_v1.json b/DiscoveryJson/cloudbilling_v1.json index 87c1f31cf5..a5beac99c4 100644 --- a/DiscoveryJson/cloudbilling_v1.json +++ b/DiscoveryJson/cloudbilling_v1.json @@ -121,7 +121,7 @@ "parameterOrder": [], "parameters": { "parent": { - "description": "Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`", + "description": "Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`", "location": "query", "type": "string" } @@ -416,7 +416,7 @@ ], "parameters": { "parent": { - "description": "Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`", + "description": "Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`", "location": "path", "pattern": "^billingAccounts/[^/]+$", "required": true, @@ -496,7 +496,7 @@ ], "parameters": { "parent": { - "description": "Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`", + "description": "Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF`", "location": "path", "pattern": "^organizations/[^/]+$", "required": true, @@ -751,7 +751,7 @@ } } }, - "revision": "20240102", + "revision": "20240112", "rootUrl": "https://cloudbilling.googleapis.com/", "schemas": { "AggregationInfo": { diff --git a/DiscoveryJson/cloudbuild_v1.json b/DiscoveryJson/cloudbuild_v1.json index d4070274f9..2801d7af8b 100644 --- a/DiscoveryJson/cloudbuild_v1.json +++ b/DiscoveryJson/cloudbuild_v1.json @@ -2319,7 +2319,7 @@ } } }, - "revision": "20240109", + "revision": "20231231", "rootUrl": "https://cloudbuild.googleapis.com/", "schemas": { "ApprovalConfig": { @@ -4608,16 +4608,16 @@ "type": "string" }, "commentControl": { - "description": "If CommentControl is enabled, depending on the setting, builds may not fire until a repository writer comments `/gcbrun` on a pull request or `/gcbrun` is in the pull request description. Only PR comments that contain `/gcbrun` will trigger builds. If CommentControl is set to disabled, comments with `/gcbrun` from a user with repository write permission or above will still trigger builds to run.", + "description": "Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.", "enum": [ "COMMENTS_DISABLED", "COMMENTS_ENABLED", "COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY" ], "enumDescriptions": [ - "Do not require `/gcbrun` comments from a user with repository write permission or above on pull requests before builds are triggered. Comments that contain `/gcbrun` will still fire builds so this should be thought of as comments not required.", - "Builds will only fire in response to pull requests if: 1. The pull request author has repository write permission or above and `/gcbrun` is in the PR description. 2. A user with repository writer permissions or above comments `/gcbrun` on a pull request authored by any user.", - "Builds will only fire in response to pull requests if: 1. The pull request author is a repository writer or above. 2. If the author does not have write permissions, a user with write permissions or above must comment `/gcbrun` in order to fire a build." + "Do not require comments on Pull Requests before builds are triggered.", + "Enforce that repository owners or collaborators must comment on Pull Requests before builds are triggered.", + "Enforce that repository owners or collaborators must comment on external contributors' Pull Requests before builds are triggered." ], "type": "string" }, diff --git a/DiscoveryJson/content_v2.1.json b/DiscoveryJson/content_v2.1.json index e6c77ac64a..db81c8b833 100644 --- a/DiscoveryJson/content_v2.1.json +++ b/DiscoveryJson/content_v2.1.json @@ -5453,7 +5453,7 @@ "reports": { "methods": { "search": { - "description": "Retrieves merchant performance mertrics matching the search query and optionally segmented by selected dimensions.", + "description": "Retrieves merchant performance metrics matching the search query and optionally segmented by selected dimensions.", "flatPath": "{merchantId}/reports/search", "httpMethod": "POST", "id": "content.reports.search", @@ -6315,7 +6315,7 @@ } } }, - "revision": "20240110", + "revision": "20240114", "rootUrl": "https://shoppingcontent.googleapis.com/", "schemas": { "Account": { @@ -15462,7 +15462,7 @@ "type": "integer" }, "id": { - "description": "Required. Output only. The REST promotion ID to uniquely identify the promotion. Content API methods that operate on promotions take this as their `promotionId` parameter. The REST ID for a promotion is of the form channel:contentLanguage:targetCountry:promotionId The `channel` field has a value of `\"online\"`, `\"in_store\"`, or `\"online_in_store\"`.", + "description": "Output only. The REST promotion ID to uniquely identify the promotion. Content API methods that operate on promotions take this as their `promotionId` parameter. The REST ID for a promotion is of the form channel:contentLanguage:targetCountry:promotionId The `channel` field has a value of `\"online\"`, `\"in_store\"`, or `\"online_in_store\"`.", "readOnly": true, "type": "string" }, diff --git a/DiscoveryJson/datastore_v1.json b/DiscoveryJson/datastore_v1.json index bc56cae3da..cae7558b34 100644 --- a/DiscoveryJson/datastore_v1.json +++ b/DiscoveryJson/datastore_v1.json @@ -654,7 +654,7 @@ } } }, - "revision": "20240109", + "revision": "20231221", "rootUrl": "https://datastore.googleapis.com/", "schemas": { "Aggregation": { @@ -2119,21 +2119,6 @@ }, "type": "object" }, - "QueryPlan": { - "description": "Plan for the query.", - "id": "QueryPlan", - "properties": { - "planInfo": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Planning phase information for the query. It will include: { \"indexes_used\": [ {\"query_scope\": \"Collection\", \"properties\": \"(foo ASC, __name__ ASC)\"}, {\"query_scope\": \"Collection\", \"properties\": \"(bar ASC, __name__ ASC)\"} ] }", - "type": "object" - } - }, - "type": "object" - }, "QueryResultBatch": { "description": "A batch of results produced by a query.", "id": "QueryResultBatch", @@ -2290,25 +2275,6 @@ "properties": {}, "type": "object" }, - "ResultSetStats": { - "description": "Planning and execution statistics for the query.", - "id": "ResultSetStats", - "properties": { - "queryPlan": { - "$ref": "QueryPlan", - "description": "Plan for the query." - }, - "queryStats": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Aggregated statistics from the execution of the query. This will only be present when the request specifies `PROFILE` mode. For example, a query will return the statistics including: { \"results_returned\": \"20\", \"documents_scanned\": \"20\", \"indexes_entries_scanned\": \"10050\", \"total_execution_time\": \"100.7 msecs\" }", - "type": "object" - } - }, - "type": "object" - }, "RollbackRequest": { "description": "The request for Datastore.Rollback.", "id": "RollbackRequest", @@ -2347,20 +2313,6 @@ "$ref": "GqlQuery", "description": "The GQL query to run. This query must be an aggregation query." }, - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "partitionId": { "$ref": "PartitionId", "description": "Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID." @@ -2384,10 +2336,6 @@ "$ref": "AggregationQuery", "description": "The parsed form of the `GqlQuery` from the request, if it was set." }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL`." - }, "transaction": { "description": "The identifier of the transaction that was started as part of this RunAggregationQuery request. Set only when ReadOptions.new_transaction was set in RunAggregationQueryRequest.read_options.", "format": "byte", @@ -2408,20 +2356,6 @@ "$ref": "GqlQuery", "description": "The GQL query to run. This query must be a non-aggregation query." }, - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "partitionId": { "$ref": "PartitionId", "description": "Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID." @@ -2449,10 +2383,6 @@ "$ref": "Query", "description": "The parsed form of the `GqlQuery` from the request, if it was set." }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL`." - }, "transaction": { "description": "The identifier of the transaction that was started as part of this RunQuery request. Set only when ReadOptions.new_transaction was set in RunQueryRequest.read_options.", "format": "byte", diff --git a/DiscoveryJson/datastore_v1beta3.json b/DiscoveryJson/datastore_v1beta3.json index af70174715..8d20976e2d 100644 --- a/DiscoveryJson/datastore_v1beta3.json +++ b/DiscoveryJson/datastore_v1beta3.json @@ -336,7 +336,7 @@ } } }, - "revision": "20240109", + "revision": "20231221", "rootUrl": "https://datastore.googleapis.com/", "schemas": { "Aggregation": { @@ -1565,21 +1565,6 @@ }, "type": "object" }, - "QueryPlan": { - "description": "Plan for the query.", - "id": "QueryPlan", - "properties": { - "planInfo": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Planning phase information for the query. It will include: { \"indexes_used\": [ {\"query_scope\": \"Collection\", \"properties\": \"(foo ASC, __name__ ASC)\"}, {\"query_scope\": \"Collection\", \"properties\": \"(bar ASC, __name__ ASC)\"} ] }", - "type": "object" - } - }, - "type": "object" - }, "QueryResultBatch": { "description": "A batch of results produced by a query.", "id": "QueryResultBatch", @@ -1732,25 +1717,6 @@ "properties": {}, "type": "object" }, - "ResultSetStats": { - "description": "Planning and execution statistics for the query.", - "id": "ResultSetStats", - "properties": { - "queryPlan": { - "$ref": "QueryPlan", - "description": "Plan for the query." - }, - "queryStats": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Aggregated statistics from the execution of the query. This will only be present when the request specifies `PROFILE` mode. For example, a query will return the statistics including: { \"results_returned\": \"20\", \"documents_scanned\": \"20\", \"indexes_entries_scanned\": \"10050\", \"total_execution_time\": \"100.7 msecs\" }", - "type": "object" - } - }, - "type": "object" - }, "RollbackRequest": { "description": "The request for Datastore.Rollback.", "id": "RollbackRequest", @@ -1781,20 +1747,6 @@ "$ref": "GqlQuery", "description": "The GQL query to run. This query must be an aggregation query." }, - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "partitionId": { "$ref": "PartitionId", "description": "Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID." @@ -1817,10 +1769,6 @@ "query": { "$ref": "AggregationQuery", "description": "The parsed form of the `GqlQuery` from the request, if it was set." - }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL`." } }, "type": "object" @@ -1833,20 +1781,6 @@ "$ref": "GqlQuery", "description": "The GQL query to run. This query must be a non-aggregation query." }, - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "partitionId": { "$ref": "PartitionId", "description": "Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID." @@ -1873,10 +1807,6 @@ "query": { "$ref": "Query", "description": "The parsed form of the `GqlQuery` from the request, if it was set." - }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL`." } }, "type": "object" diff --git a/DiscoveryJson/discoveryengine_v1alpha.json b/DiscoveryJson/discoveryengine_v1alpha.json index 4479499c97..8e4a45be3d 100644 --- a/DiscoveryJson/discoveryengine_v1alpha.json +++ b/DiscoveryJson/discoveryengine_v1alpha.json @@ -4596,7 +4596,7 @@ } } }, - "revision": "20240108", + "revision": "20240111", "rootUrl": "https://discoveryengine.googleapis.com/", "schemas": { "GoogleApiHttpBody": { @@ -6274,7 +6274,8 @@ "NUMBER", "INTEGER", "BOOLEAN", - "GEOLOCATION" + "GEOLOCATION", + "DATETIME" ], "enumDescriptions": [ "Field type is unspecified.", @@ -6283,7 +6284,8 @@ "Field value type is Number.", "Field value type is Integer.", "Field value type is Boolean.", - "Field value type is Geolocation." + "Field value type is Geolocation.", + "Field value type is Datetime." ], "readOnly": true, "type": "string" diff --git a/DiscoveryJson/discoveryengine_v1beta.json b/DiscoveryJson/discoveryengine_v1beta.json index bbfd0e0ccc..07d45c863e 100644 --- a/DiscoveryJson/discoveryengine_v1beta.json +++ b/DiscoveryJson/discoveryengine_v1beta.json @@ -3042,7 +3042,7 @@ } } }, - "revision": "20240108", + "revision": "20240111", "rootUrl": "https://discoveryengine.googleapis.com/", "schemas": { "GoogleApiHttpBody": { @@ -4172,7 +4172,8 @@ "NUMBER", "INTEGER", "BOOLEAN", - "GEOLOCATION" + "GEOLOCATION", + "DATETIME" ], "enumDescriptions": [ "Field type is unspecified.", @@ -4181,7 +4182,8 @@ "Field value type is Number.", "Field value type is Integer.", "Field value type is Boolean.", - "Field value type is Geolocation." + "Field value type is Geolocation.", + "Field value type is Datetime." ], "readOnly": true, "type": "string" diff --git a/DiscoveryJson/firestore_v1.json b/DiscoveryJson/firestore_v1.json index 4a247dba42..c1d5dd7add 100644 --- a/DiscoveryJson/firestore_v1.json +++ b/DiscoveryJson/firestore_v1.json @@ -1672,7 +1672,7 @@ } } }, - "revision": "20240109", + "revision": "20231221", "rootUrl": "https://firestore.googleapis.com/", "schemas": { "Aggregation": { @@ -3628,7 +3628,7 @@ }, "field": { "$ref": "FieldReference", - "description": "The field to order by." + "description": "Order based on the value referenced by this field." } }, "type": "object" @@ -3711,21 +3711,6 @@ }, "type": "object" }, - "QueryPlan": { - "description": "Plan for the query.", - "id": "QueryPlan", - "properties": { - "planInfo": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Planning phase information for the query. It will include: { \"indexes_used\": [ {\"query_scope\": \"Collection\", \"properties\": \"(foo ASC, __name__ ASC)\"}, {\"query_scope\": \"Collection\", \"properties\": \"(bar ASC, __name__ ASC)\"} ] }", - "type": "object" - } - }, - "type": "object" - }, "QueryTarget": { "description": "A target specified by a query.", "id": "QueryTarget", @@ -3765,25 +3750,6 @@ }, "type": "object" }, - "ResultSetStats": { - "description": "Planning and execution statistics for the query.", - "id": "ResultSetStats", - "properties": { - "queryPlan": { - "$ref": "QueryPlan", - "description": "Plan for the query." - }, - "queryStats": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Aggregated statistics from the execution of the query. This will only be present when the request specifies `PROFILE` mode. For example, a query will return the statistics including: { \"results_returned\": \"20\", \"documents_scanned\": \"20\", \"indexes_entries_scanned\": \"10050\", \"total_execution_time\": \"100.7 msecs\" }", - "type": "object" - } - }, - "type": "object" - }, "RollbackRequest": { "description": "The request for Firestore.Rollback.", "id": "RollbackRequest", @@ -3800,20 +3766,6 @@ "description": "The request for Firestore.RunAggregationQuery.", "id": "RunAggregationQueryRequest", "properties": { - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "newTransaction": { "$ref": "TransactionOptions", "description": "Starts a new transaction as part of the query, defaulting to read-only. The new transaction ID will be returned as the first response in the stream." @@ -3848,10 +3800,6 @@ "$ref": "AggregationResult", "description": "A single aggregation result. Not present when reporting partial progress." }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once with the last response in the stream." - }, "transaction": { "description": "The transaction that was started as part of this request. Only present on the first response when the request requested to start a new transaction.", "format": "byte", @@ -3864,20 +3812,6 @@ "description": "The request for Firestore.RunQuery.", "id": "RunQueryRequest", "properties": { - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "newTransaction": { "$ref": "TransactionOptions", "description": "Starts a new transaction and reads the documents. Defaults to a read-only transaction. The new transaction ID will be returned as the first response in the stream." @@ -3921,10 +3855,6 @@ "format": "int32", "type": "integer" }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once with the last response in the stream." - }, "transaction": { "description": "The transaction that was started as part of this request. Can only be set in the first response, and only if RunQueryRequest.new_transaction was set in the request. If set, no other fields will be set in this response.", "format": "byte", diff --git a/DiscoveryJson/firestore_v1beta1.json b/DiscoveryJson/firestore_v1beta1.json index 08426a957e..67ed2aa665 100644 --- a/DiscoveryJson/firestore_v1beta1.json +++ b/DiscoveryJson/firestore_v1beta1.json @@ -950,7 +950,7 @@ } } }, - "revision": "20240109", + "revision": "20231221", "rootUrl": "https://firestore.googleapis.com/", "schemas": { "Aggregation": { @@ -2169,7 +2169,7 @@ }, "field": { "$ref": "FieldReference", - "description": "The field to order by." + "description": "Order based on the value referenced by this field." } }, "type": "object" @@ -2252,21 +2252,6 @@ }, "type": "object" }, - "QueryPlan": { - "description": "Plan for the query.", - "id": "QueryPlan", - "properties": { - "planInfo": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Planning phase information for the query. It will include: { \"indexes_used\": [ {\"query_scope\": \"Collection\", \"properties\": \"(foo ASC, __name__ ASC)\"}, {\"query_scope\": \"Collection\", \"properties\": \"(bar ASC, __name__ ASC)\"} ] }", - "type": "object" - } - }, - "type": "object" - }, "QueryTarget": { "description": "A target specified by a query.", "id": "QueryTarget", @@ -2306,25 +2291,6 @@ }, "type": "object" }, - "ResultSetStats": { - "description": "Planning and execution statistics for the query.", - "id": "ResultSetStats", - "properties": { - "queryPlan": { - "$ref": "QueryPlan", - "description": "Plan for the query." - }, - "queryStats": { - "additionalProperties": { - "description": "Properties of the object.", - "type": "any" - }, - "description": "Aggregated statistics from the execution of the query. This will only be present when the request specifies `PROFILE` mode. For example, a query will return the statistics including: { \"results_returned\": \"20\", \"documents_scanned\": \"20\", \"indexes_entries_scanned\": \"10050\", \"total_execution_time\": \"100.7 msecs\" }", - "type": "object" - } - }, - "type": "object" - }, "RollbackRequest": { "description": "The request for Firestore.Rollback.", "id": "RollbackRequest", @@ -2341,20 +2307,6 @@ "description": "The request for Firestore.RunAggregationQuery.", "id": "RunAggregationQueryRequest", "properties": { - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "newTransaction": { "$ref": "TransactionOptions", "description": "Starts a new transaction as part of the query, defaulting to read-only. The new transaction ID will be returned as the first response in the stream." @@ -2389,10 +2341,6 @@ "$ref": "AggregationResult", "description": "A single aggregation result. Not present when reporting partial progress." }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once with the last response in the stream." - }, "transaction": { "description": "The transaction that was started as part of this request. Only present on the first response when the request requested to start a new transaction.", "format": "byte", @@ -2405,20 +2353,6 @@ "description": "The request for Firestore.RunQuery.", "id": "RunQueryRequest", "properties": { - "mode": { - "description": "Optional. The mode in which the query request is processed. This field is optional, and when not provided, it defaults to `NORMAL` mode where no additional statistics will be returned with the query results.", - "enum": [ - "NORMAL", - "PLAN", - "PROFILE" - ], - "enumDescriptions": [ - "The default mode. Only the query results are returned.", - "This mode returns only the query plan, without any results or execution statistics information.", - "This mode returns both the query plan and the execution statistics along with the results." - ], - "type": "string" - }, "newTransaction": { "$ref": "TransactionOptions", "description": "Starts a new transaction and reads the documents. Defaults to a read-only transaction. The new transaction ID will be returned as the first response in the stream." @@ -2462,10 +2396,6 @@ "format": "int32", "type": "integer" }, - "stats": { - "$ref": "ResultSetStats", - "description": "Query plan and execution statistics. Note that the returned stats are subject to change as Firestore evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once with the last response in the stream." - }, "transaction": { "description": "The transaction that was started as part of this request. Can only be set in the first response, and only if RunQueryRequest.new_transaction was set in the request. If set, no other fields will be set in this response.", "format": "byte", diff --git a/DiscoveryJson/managedidentities_v1.json b/DiscoveryJson/managedidentities_v1.json index 686c85ff4b..3966b10e6e 100644 --- a/DiscoveryJson/managedidentities_v1.json +++ b/DiscoveryJson/managedidentities_v1.json @@ -1515,7 +1515,7 @@ } } }, - "revision": "20231010", + "revision": "20240112", "rootUrl": "https://managedidentities.googleapis.com/", "schemas": { "AttachTrustRequest": { @@ -1608,7 +1608,7 @@ "description": "The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies)." }, "members": { - "description": "Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.", + "description": "Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`.", "items": { "type": "string" }, @@ -2106,7 +2106,7 @@ "additionalProperties": { "type": "string" }, - "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the referenced policy must define the same policy type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_settings.maintenance_policies is set.", + "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the referenced policy must define the same policy type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_settings.maintenance_policies is set.", "type": "object" }, "maintenanceSchedules": { @@ -2247,7 +2247,7 @@ "additionalProperties": { "$ref": "MaintenancePolicy" }, - "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the embedded policy must define the same policy type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_policy_names is set. If only the name is needed, then only populate MaintenancePolicy.name.", + "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the embedded policy must define the same policy type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_policy_names is set. If only the name is needed, then only populate MaintenancePolicy.name.", "type": "object" } }, diff --git a/DiscoveryJson/managedidentities_v1beta1.json b/DiscoveryJson/managedidentities_v1beta1.json index c4c1c664a9..c57d11f582 100644 --- a/DiscoveryJson/managedidentities_v1beta1.json +++ b/DiscoveryJson/managedidentities_v1beta1.json @@ -1515,7 +1515,7 @@ } } }, - "revision": "20231010", + "revision": "20240112", "rootUrl": "https://managedidentities.googleapis.com/", "schemas": { "AttachTrustRequest": { @@ -1614,7 +1614,7 @@ "description": "The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies)." }, "members": { - "description": "Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding.", + "description": "Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`.", "items": { "type": "string" }, @@ -2118,7 +2118,7 @@ "additionalProperties": { "type": "string" }, - "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the referenced policy must define the same policy type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_settings.maintenance_policies is set.", + "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the referenced policy must define the same policy type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_settings.maintenance_policies is set.", "type": "object" }, "maintenanceSchedules": { @@ -2259,7 +2259,7 @@ "additionalProperties": { "$ref": "MaintenancePolicy" }, - "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the embedded policy must define the same policy type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_policy_names is set. If only the name is needed, then only populate MaintenancePolicy.name.", + "description": "Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name of the oneof policy name defined in MaintenancePolicy, and the embedded policy must define the same policy type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_policy_names is set. If only the name is needed, then only populate MaintenancePolicy.name.", "type": "object" } }, diff --git a/DiscoveryJson/monitoring_v1.json b/DiscoveryJson/monitoring_v1.json index 2e59dc9002..04bc3c7742 100644 --- a/DiscoveryJson/monitoring_v1.json +++ b/DiscoveryJson/monitoring_v1.json @@ -753,7 +753,7 @@ } } }, - "revision": "20240109", + "revision": "20240115", "rootUrl": "https://monitoring.googleapis.com/", "schemas": { "Aggregation": { @@ -1195,19 +1195,19 @@ "type": "object" }, "Dimension": { - "description": "A chart dimension. Dimensions are a structured labewl, class, or category for a set of measurements in your data.", + "description": "Preview: A chart dimension for an SQL query. This is applied over the x-axis. This is a preview feature and may be subject to change before final release.", "id": "Dimension", "properties": { "column": { - "description": "The name of the column in the source SQL query that is used to chart the dimension.", + "description": "Required. The name of the column in the source SQL query that is used to chart the dimension.", "type": "string" }, "columnType": { - "description": "The type of the dimension column. This is relevant only if one of the bin_size fields is set. If it is empty, the type TIMESTAMP or INT64 will be assumed based on which bin_size field is set. If populated, this should be set to one of the following types: DATE, TIME, DATETIME, TIMESTAMP, BIGNUMERIC, INT64, NUMERIC, FLOAT64.", + "description": "Optional. The type of the dimension column. This is relevant only if one of the bin_size fields is set. If it is empty, the type TIMESTAMP or INT64 will be assumed based on which bin_size field is set. If populated, this should be set to one of the following types: DATE, TIME, DATETIME, TIMESTAMP, BIGNUMERIC, INT64, NUMERIC, FLOAT64.", "type": "string" }, "floatBinSize": { - "description": "float_bin_size is used when the column type used for a dimension is a floating point numeric column.", + "description": "Optional. float_bin_size is used when the column type used for a dimension is a floating point numeric column.", "format": "double", "type": "number" }, @@ -1242,7 +1242,7 @@ "type": "string" }, "timeBinSize": { - "description": "time_bin_size is used when the data type specified by column is a time type and the bin size is determined by a time duration.", + "description": "time_bin_size is used when the data type specified by column is a time type and the bin size is determined by a time duration. If column_type is DATE, this must be a whole value multiple of 1 day. If column_type is TIME, this must be less than or equal to 24 hours.", "format": "google-duration", "type": "string" } @@ -1555,15 +1555,15 @@ "type": "object" }, "Measure": { - "description": "A chart measure. Measures represent a measured property in your chart data such as rainfall in inches, number of units sold, revenue gained, etc.", + "description": "Preview: A chart measure for an SQL query. This is applied over the y-axis. This is a preview feature and may be subject to change before final release.", "id": "Measure", "properties": { "aggregationFunction": { "$ref": "AggregationFunction", - "description": "The aggregation function applied to the input column. This must not be set to \"none\" unless binning is disabled on the dimension. The aggregation function is used to group points on the dimension bins." + "description": "Required. The aggregation function applied to the input column. This must not be set to \"none\" unless binning is disabled on the dimension. The aggregation function is used to group points on the dimension bins." }, "column": { - "description": "The column name within the dataset used for the measure.", + "description": "Required. The column name within in the dataset used for the measure.", "type": "string" } }, @@ -1857,20 +1857,6 @@ "description": "Groups a time series query definition.", "id": "PieChartDataSet", "properties": { - "dimensions": { - "description": "A dimension is a structured label, class, or category for a set of measurements in your data.", - "items": { - "$ref": "Dimension" - }, - "type": "array" - }, - "measures": { - "description": "A measure is a measured value of a property in your data. For example, rainfall in inches, number of units sold, revenue gained, etc.", - "items": { - "$ref": "Measure" - }, - "type": "array" - }, "minAlignmentPeriod": { "description": "Optional. The lower bound on data point frequency for this data set, implemented by specifying the minimum alignment period to use in a time series query. For example, if the data is published once every 10 minutes, the min_alignment_period should be at least 10 minutes. It would not make sense to fetch and align data at one minute intervals.", "format": "google-duration", diff --git a/DiscoveryJson/places_v1.json b/DiscoveryJson/places_v1.json index 0868a91a7a..3ee58ebbdb 100644 --- a/DiscoveryJson/places_v1.json +++ b/DiscoveryJson/places_v1.json @@ -120,7 +120,7 @@ "places": { "methods": { "get": { - "description": "Get place details with a place id (in a name) string.", + "description": "Get the details of a place based on its resource name, which is a string in the `places/{place_id}` format.", "flatPath": "v1/places/{placesId}", "httpMethod": "GET", "id": "places.places.get", @@ -134,7 +134,7 @@ "type": "string" }, "name": { - "description": "Required. A place ID returned in a Place (with \"places/\" prefix), or equivalently the name in the same Place. Format: `places/{place_id}`.", + "description": "Required. The resource name of a place, in the `places/{place_id}` format.", "location": "path", "pattern": "^places/[^/]+$", "required": true, @@ -248,7 +248,7 @@ } } }, - "revision": "20231205", + "revision": "20240115", "rootUrl": "https://places.googleapis.com/", "schemas": { "GoogleGeoTypeViewport": { @@ -633,7 +633,7 @@ "type": "boolean" }, "name": { - "description": "An ID representing this place which may be used to look up this place again (a.k.a. the API \"resource\" name: places/place_id).", + "description": "This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place.", "type": "string" }, "nationalPhoneNumber": { diff --git a/Src/Generated/Google.Apis.ACMEDNS.v1/Google.Apis.ACMEDNS.v1.csproj b/Src/Generated/Google.Apis.ACMEDNS.v1/Google.Apis.ACMEDNS.v1.csproj index 45b9de0c84..ac52c31dae 100644 --- a/Src/Generated/Google.Apis.ACMEDNS.v1/Google.Apis.ACMEDNS.v1.csproj +++ b/Src/Generated/Google.Apis.ACMEDNS.v1/Google.Apis.ACMEDNS.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ACMEDNS.v1 Client Library - 1.65.0.2981 + 1.66.0.2981 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Acmedns v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.AIPlatformNotebooks.v1/Google.Apis.AIPlatformNotebooks.v1.csproj b/Src/Generated/Google.Apis.AIPlatformNotebooks.v1/Google.Apis.AIPlatformNotebooks.v1.csproj index 448364edbe..52a7872e56 100644 --- a/Src/Generated/Google.Apis.AIPlatformNotebooks.v1/Google.Apis.AIPlatformNotebooks.v1.csproj +++ b/Src/Generated/Google.Apis.AIPlatformNotebooks.v1/Google.Apis.AIPlatformNotebooks.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AIPlatformNotebooks.v1 Client Library - 1.65.0.3268 + 1.66.0.3268 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Notebooks v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AIPlatformNotebooks.v2/Google.Apis.AIPlatformNotebooks.v2.csproj b/Src/Generated/Google.Apis.AIPlatformNotebooks.v2/Google.Apis.AIPlatformNotebooks.v2.csproj index d098ddebf7..2934f7a543 100644 --- a/Src/Generated/Google.Apis.AIPlatformNotebooks.v2/Google.Apis.AIPlatformNotebooks.v2.csproj +++ b/Src/Generated/Google.Apis.AIPlatformNotebooks.v2/Google.Apis.AIPlatformNotebooks.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.AIPlatformNotebooks.v2 Client Library - 1.65.0.3268 + 1.66.0.3268 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Notebooks v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AbusiveExperienceReport.v1/Google.Apis.AbusiveExperienceReport.v1.csproj b/Src/Generated/Google.Apis.AbusiveExperienceReport.v1/Google.Apis.AbusiveExperienceReport.v1.csproj index 42f373484f..7525f639f0 100644 --- a/Src/Generated/Google.Apis.AbusiveExperienceReport.v1/Google.Apis.AbusiveExperienceReport.v1.csproj +++ b/Src/Generated/Google.Apis.AbusiveExperienceReport.v1/Google.Apis.AbusiveExperienceReport.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AbusiveExperienceReport.v1 Client Library - 1.65.0.2235 + 1.66.0.2235 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Abusiveexperiencereport v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.Acceleratedmobilepageurl.v1/Google.Apis.Acceleratedmobilepageurl.v1.csproj b/Src/Generated/Google.Apis.Acceleratedmobilepageurl.v1/Google.Apis.Acceleratedmobilepageurl.v1.csproj index 01d6f252d8..544c862e98 100644 --- a/Src/Generated/Google.Apis.Acceleratedmobilepageurl.v1/Google.Apis.Acceleratedmobilepageurl.v1.csproj +++ b/Src/Generated/Google.Apis.Acceleratedmobilepageurl.v1/Google.Apis.Acceleratedmobilepageurl.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Acceleratedmobilepageurl.v1 Client Library - 1.65.0.3106 + 1.66.0.3106 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Acceleratedmobilepageurl v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.AccessApproval.v1/Google.Apis.AccessApproval.v1.csproj b/Src/Generated/Google.Apis.AccessApproval.v1/Google.Apis.AccessApproval.v1.csproj index 00d82f6c4b..2328a16285 100644 --- a/Src/Generated/Google.Apis.AccessApproval.v1/Google.Apis.AccessApproval.v1.csproj +++ b/Src/Generated/Google.Apis.AccessApproval.v1/Google.Apis.AccessApproval.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AccessApproval.v1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Accessapproval v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AccessContextManager.v1/Google.Apis.AccessContextManager.v1.csproj b/Src/Generated/Google.Apis.AccessContextManager.v1/Google.Apis.AccessContextManager.v1.csproj index e3f3594326..6599f9557e 100644 --- a/Src/Generated/Google.Apis.AccessContextManager.v1/Google.Apis.AccessContextManager.v1.csproj +++ b/Src/Generated/Google.Apis.AccessContextManager.v1/Google.Apis.AccessContextManager.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AccessContextManager.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Accesscontextmanager v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AdExchangeBuyerII.v2beta1/Google.Apis.AdExchangeBuyerII.v2beta1.csproj b/Src/Generated/Google.Apis.AdExchangeBuyerII.v2beta1/Google.Apis.AdExchangeBuyerII.v2beta1.csproj index 998db09c41..021059913a 100644 --- a/Src/Generated/Google.Apis.AdExchangeBuyerII.v2beta1/Google.Apis.AdExchangeBuyerII.v2beta1.csproj +++ b/Src/Generated/Google.Apis.AdExchangeBuyerII.v2beta1/Google.Apis.AdExchangeBuyerII.v2beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.AdExchangeBuyerII.v2beta1 Client Library - 1.65.0.3261 + 1.66.0.3261 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Adexchangebuyer2 v2beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AdExperienceReport.v1/Google.Apis.AdExperienceReport.v1.csproj b/Src/Generated/Google.Apis.AdExperienceReport.v1/Google.Apis.AdExperienceReport.v1.csproj index 8875c20759..8bbd8a7b98 100644 --- a/Src/Generated/Google.Apis.AdExperienceReport.v1/Google.Apis.AdExperienceReport.v1.csproj +++ b/Src/Generated/Google.Apis.AdExperienceReport.v1/Google.Apis.AdExperienceReport.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AdExperienceReport.v1 Client Library - 1.65.0.3140 + 1.66.0.3140 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Adexperiencereport v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.AdMob.v1/Google.Apis.AdMob.v1.csproj b/Src/Generated/Google.Apis.AdMob.v1/Google.Apis.AdMob.v1.csproj index 97dbaa295c..8d808c4b9c 100644 --- a/Src/Generated/Google.Apis.AdMob.v1/Google.Apis.AdMob.v1.csproj +++ b/Src/Generated/Google.Apis.AdMob.v1/Google.Apis.AdMob.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AdMob.v1 Client Library - 1.65.0.3036 + 1.66.0.3036 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Admob v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AdMob.v1beta/Google.Apis.AdMob.v1beta.csproj b/Src/Generated/Google.Apis.AdMob.v1beta/Google.Apis.AdMob.v1beta.csproj index cfd1b027a4..899a15bfac 100644 --- a/Src/Generated/Google.Apis.AdMob.v1beta/Google.Apis.AdMob.v1beta.csproj +++ b/Src/Generated/Google.Apis.AdMob.v1beta/Google.Apis.AdMob.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.AdMob.v1beta Client Library - 1.65.0.3239 + 1.66.0.3239 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Admob v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AdSenseHost.v4_1/Google.Apis.AdSenseHost.v4_1.csproj b/Src/Generated/Google.Apis.AdSenseHost.v4_1/Google.Apis.AdSenseHost.v4_1.csproj index e21604c9f2..7d5139f11d 100644 --- a/Src/Generated/Google.Apis.AdSenseHost.v4_1/Google.Apis.AdSenseHost.v4_1.csproj +++ b/Src/Generated/Google.Apis.AdSenseHost.v4_1/Google.Apis.AdSenseHost.v4_1.csproj @@ -3,7 +3,7 @@ Google.Apis.AdSenseHost.v4_1 Client Library - 1.65.0.2099 + 1.66.0.2099 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Adsensehost v4.1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Admin.DataTransfer.datatransfer_v1/Google.Apis.Admin.DataTransfer.datatransfer_v1.csproj b/Src/Generated/Google.Apis.Admin.DataTransfer.datatransfer_v1/Google.Apis.Admin.DataTransfer.datatransfer_v1.csproj index 4dbc7d69a6..5e72213501 100644 --- a/Src/Generated/Google.Apis.Admin.DataTransfer.datatransfer_v1/Google.Apis.Admin.DataTransfer.datatransfer_v1.csproj +++ b/Src/Generated/Google.Apis.Admin.DataTransfer.datatransfer_v1/Google.Apis.Admin.DataTransfer.datatransfer_v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Admin.DataTransfer.datatransfer_v1 Client Library - 1.65.0.2869 + 1.66.0.2869 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Admin datatransfer_v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Admin.Directory.directory_v1/Google.Apis.Admin.Directory.directory_v1.csproj b/Src/Generated/Google.Apis.Admin.Directory.directory_v1/Google.Apis.Admin.Directory.directory_v1.csproj index 3a8c92321a..4e66a7ac1b 100644 --- a/Src/Generated/Google.Apis.Admin.Directory.directory_v1/Google.Apis.Admin.Directory.directory_v1.csproj +++ b/Src/Generated/Google.Apis.Admin.Directory.directory_v1/Google.Apis.Admin.Directory.directory_v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Admin.Directory.directory_v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Admin directory_v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Admin.Reports.reports_v1/Google.Apis.Admin.Reports.reports_v1.csproj b/Src/Generated/Google.Apis.Admin.Reports.reports_v1/Google.Apis.Admin.Reports.reports_v1.csproj index 414faf5703..9bbae2aede 100644 --- a/Src/Generated/Google.Apis.Admin.Reports.reports_v1/Google.Apis.Admin.Reports.reports_v1.csproj +++ b/Src/Generated/Google.Apis.Admin.Reports.reports_v1/Google.Apis.Admin.Reports.reports_v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Admin.Reports.reports_v1 Client Library - 1.65.0.3084 + 1.66.0.3084 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Admin reports_v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Adsense.v2/Google.Apis.Adsense.v2.csproj b/Src/Generated/Google.Apis.Adsense.v2/Google.Apis.Adsense.v2.csproj index 9857364a35..dbc9f04bfc 100644 --- a/Src/Generated/Google.Apis.Adsense.v2/Google.Apis.Adsense.v2.csproj +++ b/Src/Generated/Google.Apis.Adsense.v2/Google.Apis.Adsense.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Adsense.v2 Client Library - 1.65.0.3212 + 1.66.0.3212 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Adsense v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Advisorynotifications.v1/Google.Apis.Advisorynotifications.v1.csproj b/Src/Generated/Google.Apis.Advisorynotifications.v1/Google.Apis.Advisorynotifications.v1.csproj index 631160cda4..5a9f018d34 100644 --- a/Src/Generated/Google.Apis.Advisorynotifications.v1/Google.Apis.Advisorynotifications.v1.csproj +++ b/Src/Generated/Google.Apis.Advisorynotifications.v1/Google.Apis.Advisorynotifications.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Advisorynotifications.v1 Client Library - 1.65.0.3258 + 1.66.0.3258 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Advisorynotifications v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Aiplatform.v1/Google.Apis.Aiplatform.v1.csproj b/Src/Generated/Google.Apis.Aiplatform.v1/Google.Apis.Aiplatform.v1.csproj index 698a4b64ad..babb1c56c2 100644 --- a/Src/Generated/Google.Apis.Aiplatform.v1/Google.Apis.Aiplatform.v1.csproj +++ b/Src/Generated/Google.Apis.Aiplatform.v1/Google.Apis.Aiplatform.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Aiplatform.v1 Client Library - 1.65.0.3284 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Aiplatform v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.cs b/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.cs index 1262a01749..c08372e767 100644 --- a/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.cs +++ b/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.cs @@ -55975,17 +55975,6 @@ public class GoogleCloudAiplatformV1beta1ReadTensorboardUsageResponsePerUserUsag public virtual string ETag { get; set; } } - /// Details of operations that perform reboot PersistentResource. - public class GoogleCloudAiplatformV1beta1RebootPersistentResourceOperationMetadata : Google.Apis.Requests.IDirectResponseSchema - { - /// Operation metadata for PersistentResource. - [Newtonsoft.Json.JsonPropertyAttribute("genericMetadata")] - public virtual GoogleCloudAiplatformV1beta1GenericOperationMetadata GenericMetadata { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// Request message for MetadataService.DeleteContextChildrenRequest. public class GoogleCloudAiplatformV1beta1RemoveContextChildrenRequest : Google.Apis.Requests.IDirectResponseSchema { diff --git a/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.csproj b/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.csproj index 661d4dbe01..10048984c2 100644 --- a/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Aiplatform.v1beta1/Google.Apis.Aiplatform.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Aiplatform.v1beta1 Client Library - 1.65.0.3284 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Aiplatform v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AlertCenter.v1beta1/Google.Apis.AlertCenter.v1beta1.csproj b/Src/Generated/Google.Apis.AlertCenter.v1beta1/Google.Apis.AlertCenter.v1beta1.csproj index 690ac73fdb..4f1051a181 100644 --- a/Src/Generated/Google.Apis.AlertCenter.v1beta1/Google.Apis.AlertCenter.v1beta1.csproj +++ b/Src/Generated/Google.Apis.AlertCenter.v1beta1/Google.Apis.AlertCenter.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.AlertCenter.v1beta1 Client Library - 1.65.0.3154 + 1.66.0.3154 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Alertcenter v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Analytics.v3/Google.Apis.Analytics.v3.csproj b/Src/Generated/Google.Apis.Analytics.v3/Google.Apis.Analytics.v3.csproj index ee16738a5b..cd428662ad 100644 --- a/Src/Generated/Google.Apis.Analytics.v3/Google.Apis.Analytics.v3.csproj +++ b/Src/Generated/Google.Apis.Analytics.v3/Google.Apis.Analytics.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Analytics.v3 Client Library - 1.65.0.1679 + 1.66.0.1679 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Analytics v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AnalyticsData.v1beta/Google.Apis.AnalyticsData.v1beta.csproj b/Src/Generated/Google.Apis.AnalyticsData.v1beta/Google.Apis.AnalyticsData.v1beta.csproj index e70ec62c1b..310fe3a16d 100644 --- a/Src/Generated/Google.Apis.AnalyticsData.v1beta/Google.Apis.AnalyticsData.v1beta.csproj +++ b/Src/Generated/Google.Apis.AnalyticsData.v1beta/Google.Apis.AnalyticsData.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.AnalyticsData.v1beta Client Library - 1.65.0.3258 + 1.66.0.3258 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Analyticsdata v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AnalyticsHub.v1/Google.Apis.AnalyticsHub.v1.csproj b/Src/Generated/Google.Apis.AnalyticsHub.v1/Google.Apis.AnalyticsHub.v1.csproj index 8504ec8f2c..04dd3f9138 100644 --- a/Src/Generated/Google.Apis.AnalyticsHub.v1/Google.Apis.AnalyticsHub.v1.csproj +++ b/Src/Generated/Google.Apis.AnalyticsHub.v1/Google.Apis.AnalyticsHub.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AnalyticsHub.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Analyticshub v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AnalyticsHub.v1beta1/Google.Apis.AnalyticsHub.v1beta1.csproj b/Src/Generated/Google.Apis.AnalyticsHub.v1beta1/Google.Apis.AnalyticsHub.v1beta1.csproj index 2afc7dafc3..43c604723e 100644 --- a/Src/Generated/Google.Apis.AnalyticsHub.v1beta1/Google.Apis.AnalyticsHub.v1beta1.csproj +++ b/Src/Generated/Google.Apis.AnalyticsHub.v1beta1/Google.Apis.AnalyticsHub.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.AnalyticsHub.v1beta1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Analyticshub v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AnalyticsReporting.v4/Google.Apis.AnalyticsReporting.v4.csproj b/Src/Generated/Google.Apis.AnalyticsReporting.v4/Google.Apis.AnalyticsReporting.v4.csproj index d135cfb59e..9b711b4150 100644 --- a/Src/Generated/Google.Apis.AnalyticsReporting.v4/Google.Apis.AnalyticsReporting.v4.csproj +++ b/Src/Generated/Google.Apis.AnalyticsReporting.v4/Google.Apis.AnalyticsReporting.v4.csproj @@ -3,7 +3,7 @@ Google.Apis.AnalyticsReporting.v4 Client Library - 1.65.0.2484 + 1.66.0.2484 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Analyticsreporting v4. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AndroidEnterprise.v1/Google.Apis.AndroidEnterprise.v1.csproj b/Src/Generated/Google.Apis.AndroidEnterprise.v1/Google.Apis.AndroidEnterprise.v1.csproj index 97eec10bde..a4d0be900c 100644 --- a/Src/Generated/Google.Apis.AndroidEnterprise.v1/Google.Apis.AndroidEnterprise.v1.csproj +++ b/Src/Generated/Google.Apis.AndroidEnterprise.v1/Google.Apis.AndroidEnterprise.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AndroidEnterprise.v1 Client Library - 1.65.0.3238 + 1.66.0.3238 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Androidenterprise v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AndroidManagement.v1/Google.Apis.AndroidManagement.v1.csproj b/Src/Generated/Google.Apis.AndroidManagement.v1/Google.Apis.AndroidManagement.v1.csproj index 99abc67fe7..1eb637f853 100644 --- a/Src/Generated/Google.Apis.AndroidManagement.v1/Google.Apis.AndroidManagement.v1.csproj +++ b/Src/Generated/Google.Apis.AndroidManagement.v1/Google.Apis.AndroidManagement.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AndroidManagement.v1 Client Library - 1.65.0.3259 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Androidmanagement v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AndroidProvisioningPartner.v1/Google.Apis.AndroidProvisioningPartner.v1.csproj b/Src/Generated/Google.Apis.AndroidProvisioningPartner.v1/Google.Apis.AndroidProvisioningPartner.v1.csproj index 6e8382b37a..6b43e8f9ee 100644 --- a/Src/Generated/Google.Apis.AndroidProvisioningPartner.v1/Google.Apis.AndroidProvisioningPartner.v1.csproj +++ b/Src/Generated/Google.Apis.AndroidProvisioningPartner.v1/Google.Apis.AndroidProvisioningPartner.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AndroidProvisioningPartner.v1 Client Library - 1.65.0.3238 + 1.66.0.3238 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Androiddeviceprovisioning v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.cs b/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.cs index e6d616fbb2..ad2e8c860b 100644 --- a/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.cs +++ b/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.cs @@ -15209,12 +15209,19 @@ public class RevocationContext : Google.Apis.Requests.IDirectResponseSchema /// amount of time remaining in a subscription. Not supported for subscriptions with multiple items. /// [Newtonsoft.Json.JsonPropertyAttribute("proratedRefund")] - public virtual UNDEFINEDPackageNameRevocationContextProratedRefund ProratedRefund { get; set; } + public virtual RevocationContextProratedRefund ProratedRefund { get; set; } /// The ETag of the item. public virtual string ETag { get; set; } } + /// Used to determine if the refund type in the RevocationContext is a prorated refund. + public class RevocationContextProratedRefund : Google.Apis.Requests.IDirectResponseSchema + { + /// The ETag of the item. + public virtual string ETag { get; set; } + } + /// Request for the purchases.subscriptionsv2.revoke API. public class RevokeSubscriptionPurchaseRequest : Google.Apis.Requests.IDirectResponseSchema { @@ -16518,13 +16525,6 @@ public class TracksListResponse : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Used to determine if the refund type in the RevocationContext is a prorated refund. - public class UNDEFINEDPackageNameRevocationContextProratedRefund : Google.Apis.Requests.IDirectResponseSchema - { - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// Request message to update the state of a subscription base plan. public class UpdateBasePlanStateRequest : Google.Apis.Requests.IDirectResponseSchema { diff --git a/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.csproj b/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.csproj index 758feac288..c240afc3ba 100644 --- a/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.csproj +++ b/Src/Generated/Google.Apis.AndroidPublisher.v3/Google.Apis.AndroidPublisher.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.AndroidPublisher.v3 Client Library - 1.65.0.3297 + 1.66.0.3302 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Androidpublisher v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ApiKeysService.v2/Google.Apis.ApiKeysService.v2.csproj b/Src/Generated/Google.Apis.ApiKeysService.v2/Google.Apis.ApiKeysService.v2.csproj index 073a7c9a16..50e874279c 100644 --- a/Src/Generated/Google.Apis.ApiKeysService.v2/Google.Apis.ApiKeysService.v2.csproj +++ b/Src/Generated/Google.Apis.ApiKeysService.v2/Google.Apis.ApiKeysService.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.ApiKeysService.v2 Client Library - 1.65.0.3140 + 1.66.0.3140 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Apikeys v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Apigateway.v1/Google.Apis.Apigateway.v1.csproj b/Src/Generated/Google.Apis.Apigateway.v1/Google.Apis.Apigateway.v1.csproj index 3400a3d895..48f336dfc4 100644 --- a/Src/Generated/Google.Apis.Apigateway.v1/Google.Apis.Apigateway.v1.csproj +++ b/Src/Generated/Google.Apis.Apigateway.v1/Google.Apis.Apigateway.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Apigateway.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Apigateway v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Apigateway.v1beta/Google.Apis.Apigateway.v1beta.csproj b/Src/Generated/Google.Apis.Apigateway.v1beta/Google.Apis.Apigateway.v1beta.csproj index 86facdae60..56f864070a 100644 --- a/Src/Generated/Google.Apis.Apigateway.v1beta/Google.Apis.Apigateway.v1beta.csproj +++ b/Src/Generated/Google.Apis.Apigateway.v1beta/Google.Apis.Apigateway.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Apigateway.v1beta Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Apigateway v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ApigeeRegistry.v1/Google.Apis.ApigeeRegistry.v1.csproj b/Src/Generated/Google.Apis.ApigeeRegistry.v1/Google.Apis.ApigeeRegistry.v1.csproj index 82aadbf14b..193102489c 100644 --- a/Src/Generated/Google.Apis.ApigeeRegistry.v1/Google.Apis.ApigeeRegistry.v1.csproj +++ b/Src/Generated/Google.Apis.ApigeeRegistry.v1/Google.Apis.ApigeeRegistry.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ApigeeRegistry.v1 Client Library - 1.65.0.3192 + 1.66.0.3192 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Apigeeregistry v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AppHub.v1/Google.Apis.AppHub.v1.csproj b/Src/Generated/Google.Apis.AppHub.v1/Google.Apis.AppHub.v1.csproj index 093b8830a4..ef3f934373 100644 --- a/Src/Generated/Google.Apis.AppHub.v1/Google.Apis.AppHub.v1.csproj +++ b/Src/Generated/Google.Apis.AppHub.v1/Google.Apis.AppHub.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AppHub.v1 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Apphub v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AppHub.v1alpha/Google.Apis.AppHub.v1alpha.csproj b/Src/Generated/Google.Apis.AppHub.v1alpha/Google.Apis.AppHub.v1alpha.csproj index d6db67b171..e7611bdad3 100644 --- a/Src/Generated/Google.Apis.AppHub.v1alpha/Google.Apis.AppHub.v1alpha.csproj +++ b/Src/Generated/Google.Apis.AppHub.v1alpha/Google.Apis.AppHub.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.AppHub.v1alpha Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Apphub v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Appengine.v1/Google.Apis.Appengine.v1.csproj b/Src/Generated/Google.Apis.Appengine.v1/Google.Apis.Appengine.v1.csproj index a257ccc34c..e846c5a85c 100644 --- a/Src/Generated/Google.Apis.Appengine.v1/Google.Apis.Appengine.v1.csproj +++ b/Src/Generated/Google.Apis.Appengine.v1/Google.Apis.Appengine.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Appengine.v1 Client Library - 1.65.0.3232 + 1.66.0.3232 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Appengine v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Appengine.v1alpha/Google.Apis.Appengine.v1alpha.csproj b/Src/Generated/Google.Apis.Appengine.v1alpha/Google.Apis.Appengine.v1alpha.csproj index 2ed6a4f5b9..d90a8abd6d 100644 --- a/Src/Generated/Google.Apis.Appengine.v1alpha/Google.Apis.Appengine.v1alpha.csproj +++ b/Src/Generated/Google.Apis.Appengine.v1alpha/Google.Apis.Appengine.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.Appengine.v1alpha Client Library - 1.65.0.3198 + 1.66.0.3198 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Appengine v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Appengine.v1beta/Google.Apis.Appengine.v1beta.csproj b/Src/Generated/Google.Apis.Appengine.v1beta/Google.Apis.Appengine.v1beta.csproj index bbc6a234f1..e6a54d3bb5 100644 --- a/Src/Generated/Google.Apis.Appengine.v1beta/Google.Apis.Appengine.v1beta.csproj +++ b/Src/Generated/Google.Apis.Appengine.v1beta/Google.Apis.Appengine.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Appengine.v1beta Client Library - 1.65.0.3232 + 1.66.0.3232 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Appengine v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Area120Tables.v1alpha1/Google.Apis.Area120Tables.v1alpha1.csproj b/Src/Generated/Google.Apis.Area120Tables.v1alpha1/Google.Apis.Area120Tables.v1alpha1.csproj index 7dc09f3fe9..5c5fdd8213 100644 --- a/Src/Generated/Google.Apis.Area120Tables.v1alpha1/Google.Apis.Area120Tables.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.Area120Tables.v1alpha1/Google.Apis.Area120Tables.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.Area120Tables.v1alpha1 Client Library - 1.65.0.2637 + 1.66.0.2637 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Area120tables v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ArtifactRegistry.v1/Google.Apis.ArtifactRegistry.v1.csproj b/Src/Generated/Google.Apis.ArtifactRegistry.v1/Google.Apis.ArtifactRegistry.v1.csproj index 8294a4f583..c511fc102c 100644 --- a/Src/Generated/Google.Apis.ArtifactRegistry.v1/Google.Apis.ArtifactRegistry.v1.csproj +++ b/Src/Generated/Google.Apis.ArtifactRegistry.v1/Google.Apis.ArtifactRegistry.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ArtifactRegistry.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Artifactregistry v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ArtifactRegistry.v1beta1/Google.Apis.ArtifactRegistry.v1beta1.csproj b/Src/Generated/Google.Apis.ArtifactRegistry.v1beta1/Google.Apis.ArtifactRegistry.v1beta1.csproj index 788519b681..521053cf3a 100644 --- a/Src/Generated/Google.Apis.ArtifactRegistry.v1beta1/Google.Apis.ArtifactRegistry.v1beta1.csproj +++ b/Src/Generated/Google.Apis.ArtifactRegistry.v1beta1/Google.Apis.ArtifactRegistry.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.ArtifactRegistry.v1beta1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Artifactregistry v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ArtifactRegistry.v1beta2/Google.Apis.ArtifactRegistry.v1beta2.csproj b/Src/Generated/Google.Apis.ArtifactRegistry.v1beta2/Google.Apis.ArtifactRegistry.v1beta2.csproj index bb30370ec9..ca5f947496 100644 --- a/Src/Generated/Google.Apis.ArtifactRegistry.v1beta2/Google.Apis.ArtifactRegistry.v1beta2.csproj +++ b/Src/Generated/Google.Apis.ArtifactRegistry.v1beta2/Google.Apis.ArtifactRegistry.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.ArtifactRegistry.v1beta2 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Artifactregistry v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.csproj b/Src/Generated/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.csproj index df30c0f19c..5fa7ee361a 100644 --- a/Src/Generated/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.csproj +++ b/Src/Generated/Google.Apis.Assuredworkloads.v1/Google.Apis.Assuredworkloads.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Assuredworkloads.v1 Client Library - 1.65.0.3256 + 1.66.0.3256 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Assuredworkloads v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Assuredworkloads.v1beta1/Google.Apis.Assuredworkloads.v1beta1.csproj b/Src/Generated/Google.Apis.Assuredworkloads.v1beta1/Google.Apis.Assuredworkloads.v1beta1.csproj index ab7b4ff5d7..4b4fd23fc1 100644 --- a/Src/Generated/Google.Apis.Assuredworkloads.v1beta1/Google.Apis.Assuredworkloads.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Assuredworkloads.v1beta1/Google.Apis.Assuredworkloads.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Assuredworkloads.v1beta1 Client Library - 1.65.0.3256 + 1.66.0.3256 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Assuredworkloads v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.AuthorizedBuyersMarketplace.v1/Google.Apis.AuthorizedBuyersMarketplace.v1.csproj b/Src/Generated/Google.Apis.AuthorizedBuyersMarketplace.v1/Google.Apis.AuthorizedBuyersMarketplace.v1.csproj index 76281be977..562d8b178a 100644 --- a/Src/Generated/Google.Apis.AuthorizedBuyersMarketplace.v1/Google.Apis.AuthorizedBuyersMarketplace.v1.csproj +++ b/Src/Generated/Google.Apis.AuthorizedBuyersMarketplace.v1/Google.Apis.AuthorizedBuyersMarketplace.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.AuthorizedBuyersMarketplace.v1 Client Library - 1.65.0.3254 + 1.66.0.3254 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Authorizedbuyersmarketplace v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Backupdr.v1/Google.Apis.Backupdr.v1.csproj b/Src/Generated/Google.Apis.Backupdr.v1/Google.Apis.Backupdr.v1.csproj index 92908c134e..1a6178591e 100644 --- a/Src/Generated/Google.Apis.Backupdr.v1/Google.Apis.Backupdr.v1.csproj +++ b/Src/Generated/Google.Apis.Backupdr.v1/Google.Apis.Backupdr.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Backupdr.v1 Client Library - 1.65.0.3279 + 1.66.0.3279 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Backupdr v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BackupforGKE.v1/Google.Apis.BackupforGKE.v1.csproj b/Src/Generated/Google.Apis.BackupforGKE.v1/Google.Apis.BackupforGKE.v1.csproj index af441e5059..6915fd9636 100644 --- a/Src/Generated/Google.Apis.BackupforGKE.v1/Google.Apis.BackupforGKE.v1.csproj +++ b/Src/Generated/Google.Apis.BackupforGKE.v1/Google.Apis.BackupforGKE.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BackupforGKE.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkebackup v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Baremetalsolution.v2/Google.Apis.Baremetalsolution.v2.csproj b/Src/Generated/Google.Apis.Baremetalsolution.v2/Google.Apis.Baremetalsolution.v2.csproj index 685dafe304..c017b83090 100644 --- a/Src/Generated/Google.Apis.Baremetalsolution.v2/Google.Apis.Baremetalsolution.v2.csproj +++ b/Src/Generated/Google.Apis.Baremetalsolution.v2/Google.Apis.Baremetalsolution.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Baremetalsolution.v2 Client Library - 1.65.0.3255 + 1.66.0.3255 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Baremetalsolution v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Batch.v1/Google.Apis.Batch.v1.csproj b/Src/Generated/Google.Apis.Batch.v1/Google.Apis.Batch.v1.csproj index 825dd69e50..92157c8345 100644 --- a/Src/Generated/Google.Apis.Batch.v1/Google.Apis.Batch.v1.csproj +++ b/Src/Generated/Google.Apis.Batch.v1/Google.Apis.Batch.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Batch.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Batch v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BeyondCorp.v1/Google.Apis.BeyondCorp.v1.csproj b/Src/Generated/Google.Apis.BeyondCorp.v1/Google.Apis.BeyondCorp.v1.csproj index 8d00d5226b..de2a1bab57 100644 --- a/Src/Generated/Google.Apis.BeyondCorp.v1/Google.Apis.BeyondCorp.v1.csproj +++ b/Src/Generated/Google.Apis.BeyondCorp.v1/Google.Apis.BeyondCorp.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BeyondCorp.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Beyondcorp v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BeyondCorp.v1alpha/Google.Apis.BeyondCorp.v1alpha.csproj b/Src/Generated/Google.Apis.BeyondCorp.v1alpha/Google.Apis.BeyondCorp.v1alpha.csproj index 58d0e73de2..083bd8280c 100644 --- a/Src/Generated/Google.Apis.BeyondCorp.v1alpha/Google.Apis.BeyondCorp.v1alpha.csproj +++ b/Src/Generated/Google.Apis.BeyondCorp.v1alpha/Google.Apis.BeyondCorp.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.BeyondCorp.v1alpha Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Beyondcorp v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BigLakeService.v1/Google.Apis.BigLakeService.v1.csproj b/Src/Generated/Google.Apis.BigLakeService.v1/Google.Apis.BigLakeService.v1.csproj index 5eff146fef..fd087a90db 100644 --- a/Src/Generated/Google.Apis.BigLakeService.v1/Google.Apis.BigLakeService.v1.csproj +++ b/Src/Generated/Google.Apis.BigLakeService.v1/Google.Apis.BigLakeService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BigLakeService.v1 Client Library - 1.65.0.3210 + 1.66.0.3210 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Biglake v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BigQueryConnectionService.v1/Google.Apis.BigQueryConnectionService.v1.csproj b/Src/Generated/Google.Apis.BigQueryConnectionService.v1/Google.Apis.BigQueryConnectionService.v1.csproj index 3eadb7422d..fcd3e44713 100644 --- a/Src/Generated/Google.Apis.BigQueryConnectionService.v1/Google.Apis.BigQueryConnectionService.v1.csproj +++ b/Src/Generated/Google.Apis.BigQueryConnectionService.v1/Google.Apis.BigQueryConnectionService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BigQueryConnectionService.v1 Client Library - 1.65.0.3258 + 1.66.0.3258 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Bigqueryconnection v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BigQueryConnectionService.v1beta1/Google.Apis.BigQueryConnectionService.v1beta1.csproj b/Src/Generated/Google.Apis.BigQueryConnectionService.v1beta1/Google.Apis.BigQueryConnectionService.v1beta1.csproj index 6e190fda4e..a9637eed2a 100644 --- a/Src/Generated/Google.Apis.BigQueryConnectionService.v1beta1/Google.Apis.BigQueryConnectionService.v1beta1.csproj +++ b/Src/Generated/Google.Apis.BigQueryConnectionService.v1beta1/Google.Apis.BigQueryConnectionService.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.BigQueryConnectionService.v1beta1 Client Library - 1.65.0.3139 + 1.66.0.3139 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Bigqueryconnection v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BigQueryDataPolicyService.v1/Google.Apis.BigQueryDataPolicyService.v1.csproj b/Src/Generated/Google.Apis.BigQueryDataPolicyService.v1/Google.Apis.BigQueryDataPolicyService.v1.csproj index 69d7bc21be..ce02f59ef0 100644 --- a/Src/Generated/Google.Apis.BigQueryDataPolicyService.v1/Google.Apis.BigQueryDataPolicyService.v1.csproj +++ b/Src/Generated/Google.Apis.BigQueryDataPolicyService.v1/Google.Apis.BigQueryDataPolicyService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BigQueryDataPolicyService.v1 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Bigquerydatapolicy v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BigQueryDataTransfer.v1/Google.Apis.BigQueryDataTransfer.v1.csproj b/Src/Generated/Google.Apis.BigQueryDataTransfer.v1/Google.Apis.BigQueryDataTransfer.v1.csproj index 8d309323ce..10bc975829 100644 --- a/Src/Generated/Google.Apis.BigQueryDataTransfer.v1/Google.Apis.BigQueryDataTransfer.v1.csproj +++ b/Src/Generated/Google.Apis.BigQueryDataTransfer.v1/Google.Apis.BigQueryDataTransfer.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BigQueryDataTransfer.v1 Client Library - 1.65.0.3169 + 1.66.0.3169 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Bigquerydatatransfer v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BigQueryReservation.v1/Google.Apis.BigQueryReservation.v1.csproj b/Src/Generated/Google.Apis.BigQueryReservation.v1/Google.Apis.BigQueryReservation.v1.csproj index c2fde9e2f1..6ab89a078a 100644 --- a/Src/Generated/Google.Apis.BigQueryReservation.v1/Google.Apis.BigQueryReservation.v1.csproj +++ b/Src/Generated/Google.Apis.BigQueryReservation.v1/Google.Apis.BigQueryReservation.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BigQueryReservation.v1 Client Library - 1.65.0.3192 + 1.66.0.3192 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Bigqueryreservation v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Bigquery.v2/Google.Apis.Bigquery.v2.csproj b/Src/Generated/Google.Apis.Bigquery.v2/Google.Apis.Bigquery.v2.csproj index 180da3abaf..efe3137f91 100644 --- a/Src/Generated/Google.Apis.Bigquery.v2/Google.Apis.Bigquery.v2.csproj +++ b/Src/Generated/Google.Apis.Bigquery.v2/Google.Apis.Bigquery.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Bigquery.v2 Client Library - 1.65.0.3257 + 1.66.0.3257 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Bigquery v2 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BigtableAdmin.v2/Google.Apis.BigtableAdmin.v2.csproj b/Src/Generated/Google.Apis.BigtableAdmin.v2/Google.Apis.BigtableAdmin.v2.csproj index 2cfe795d3e..01c001308f 100644 --- a/Src/Generated/Google.Apis.BigtableAdmin.v2/Google.Apis.BigtableAdmin.v2.csproj +++ b/Src/Generated/Google.Apis.BigtableAdmin.v2/Google.Apis.BigtableAdmin.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.BigtableAdmin.v2 Client Library - 1.65.0.3267 + 1.66.0.3267 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Bigtableadmin v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BinaryAuthorization.v1/Google.Apis.BinaryAuthorization.v1.csproj b/Src/Generated/Google.Apis.BinaryAuthorization.v1/Google.Apis.BinaryAuthorization.v1.csproj index 5ef7b6a16e..4ffd479bb2 100644 --- a/Src/Generated/Google.Apis.BinaryAuthorization.v1/Google.Apis.BinaryAuthorization.v1.csproj +++ b/Src/Generated/Google.Apis.BinaryAuthorization.v1/Google.Apis.BinaryAuthorization.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BinaryAuthorization.v1 Client Library - 1.65.0.3270 + 1.66.0.3270 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Binaryauthorization v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BinaryAuthorization.v1beta1/Google.Apis.BinaryAuthorization.v1beta1.csproj b/Src/Generated/Google.Apis.BinaryAuthorization.v1beta1/Google.Apis.BinaryAuthorization.v1beta1.csproj index 9cc4ceb7d2..1d2a4562f7 100644 --- a/Src/Generated/Google.Apis.BinaryAuthorization.v1beta1/Google.Apis.BinaryAuthorization.v1beta1.csproj +++ b/Src/Generated/Google.Apis.BinaryAuthorization.v1beta1/Google.Apis.BinaryAuthorization.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.BinaryAuthorization.v1beta1 Client Library - 1.65.0.3270 + 1.66.0.3270 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Binaryauthorization v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BlockchainNodeEngine.v1/Google.Apis.BlockchainNodeEngine.v1.csproj b/Src/Generated/Google.Apis.BlockchainNodeEngine.v1/Google.Apis.BlockchainNodeEngine.v1.csproj index b5e25021aa..35f4c666d7 100644 --- a/Src/Generated/Google.Apis.BlockchainNodeEngine.v1/Google.Apis.BlockchainNodeEngine.v1.csproj +++ b/Src/Generated/Google.Apis.BlockchainNodeEngine.v1/Google.Apis.BlockchainNodeEngine.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BlockchainNodeEngine.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Blockchainnodeengine v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Blogger.v2/Google.Apis.Blogger.v2.csproj b/Src/Generated/Google.Apis.Blogger.v2/Google.Apis.Blogger.v2.csproj index b1c7710398..f660edd6d4 100644 --- a/Src/Generated/Google.Apis.Blogger.v2/Google.Apis.Blogger.v2.csproj +++ b/Src/Generated/Google.Apis.Blogger.v2/Google.Apis.Blogger.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Blogger.v2 Client Library - 1.65.0.2764 + 1.66.0.2764 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Blogger v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Blogger.v3/Google.Apis.Blogger.v3.csproj b/Src/Generated/Google.Apis.Blogger.v3/Google.Apis.Blogger.v3.csproj index bcfa98fc6a..60dcf9a143 100644 --- a/Src/Generated/Google.Apis.Blogger.v3/Google.Apis.Blogger.v3.csproj +++ b/Src/Generated/Google.Apis.Blogger.v3/Google.Apis.Blogger.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Blogger.v3 Client Library - 1.65.0.2925 + 1.66.0.2925 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Blogger v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Books.v1/Google.Apis.Books.v1.csproj b/Src/Generated/Google.Apis.Books.v1/Google.Apis.Books.v1.csproj index 9281347de1..7eab61fd90 100644 --- a/Src/Generated/Google.Apis.Books.v1/Google.Apis.Books.v1.csproj +++ b/Src/Generated/Google.Apis.Books.v1/Google.Apis.Books.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Books.v1 Client Library - 1.65.0.2955 + 1.66.0.2955 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Books v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.BusinessProfilePerformance.v1/Google.Apis.BusinessProfilePerformance.v1.csproj b/Src/Generated/Google.Apis.BusinessProfilePerformance.v1/Google.Apis.BusinessProfilePerformance.v1.csproj index c25bffb486..7d73b6488f 100644 --- a/Src/Generated/Google.Apis.BusinessProfilePerformance.v1/Google.Apis.BusinessProfilePerformance.v1.csproj +++ b/Src/Generated/Google.Apis.BusinessProfilePerformance.v1/Google.Apis.BusinessProfilePerformance.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.BusinessProfilePerformance.v1 Client Library - 1.65.0.3079 + 1.66.0.3079 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Businessprofileperformance v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.CCAIPlatform.v1alpha1/Google.Apis.CCAIPlatform.v1alpha1.csproj b/Src/Generated/Google.Apis.CCAIPlatform.v1alpha1/Google.Apis.CCAIPlatform.v1alpha1.csproj index 58f1ca00ea..794ef6e240 100644 --- a/Src/Generated/Google.Apis.CCAIPlatform.v1alpha1/Google.Apis.CCAIPlatform.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.CCAIPlatform.v1alpha1/Google.Apis.CCAIPlatform.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.CCAIPlatform.v1alpha1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Contactcenteraiplatform v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.csproj b/Src/Generated/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.csproj index 27c48c445b..e49f4f54a2 100644 --- a/Src/Generated/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.csproj +++ b/Src/Generated/Google.Apis.Calendar.v3/Google.Apis.Calendar.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Calendar.v3 Client Library - 1.65.0.3270 + 1.66.0.3270 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Calendar v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CertificateAuthorityService.v1/Google.Apis.CertificateAuthorityService.v1.csproj b/Src/Generated/Google.Apis.CertificateAuthorityService.v1/Google.Apis.CertificateAuthorityService.v1.csproj index bc3679f8cb..a9a4e04d27 100644 --- a/Src/Generated/Google.Apis.CertificateAuthorityService.v1/Google.Apis.CertificateAuthorityService.v1.csproj +++ b/Src/Generated/Google.Apis.CertificateAuthorityService.v1/Google.Apis.CertificateAuthorityService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CertificateAuthorityService.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Privateca v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CertificateAuthorityService.v1beta1/Google.Apis.CertificateAuthorityService.v1beta1.csproj b/Src/Generated/Google.Apis.CertificateAuthorityService.v1beta1/Google.Apis.CertificateAuthorityService.v1beta1.csproj index 257d493bf1..3b8036ac22 100644 --- a/Src/Generated/Google.Apis.CertificateAuthorityService.v1beta1/Google.Apis.CertificateAuthorityService.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CertificateAuthorityService.v1beta1/Google.Apis.CertificateAuthorityService.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CertificateAuthorityService.v1beta1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Privateca v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CertificateManager.v1/Google.Apis.CertificateManager.v1.csproj b/Src/Generated/Google.Apis.CertificateManager.v1/Google.Apis.CertificateManager.v1.csproj index 20d7e209b5..d63f875224 100644 --- a/Src/Generated/Google.Apis.CertificateManager.v1/Google.Apis.CertificateManager.v1.csproj +++ b/Src/Generated/Google.Apis.CertificateManager.v1/Google.Apis.CertificateManager.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CertificateManager.v1 Client Library - 1.65.0.3170 + 1.66.0.3170 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Certificatemanager v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ChecksService.v1alpha/Google.Apis.ChecksService.v1alpha.csproj b/Src/Generated/Google.Apis.ChecksService.v1alpha/Google.Apis.ChecksService.v1alpha.csproj index 61f226beb4..6adb05d140 100644 --- a/Src/Generated/Google.Apis.ChecksService.v1alpha/Google.Apis.ChecksService.v1alpha.csproj +++ b/Src/Generated/Google.Apis.ChecksService.v1alpha/Google.Apis.ChecksService.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.ChecksService.v1alpha Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Checks v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.ChromeManagement.v1/Google.Apis.ChromeManagement.v1.csproj b/Src/Generated/Google.Apis.ChromeManagement.v1/Google.Apis.ChromeManagement.v1.csproj index ed3947162f..a26a2b3975 100644 --- a/Src/Generated/Google.Apis.ChromeManagement.v1/Google.Apis.ChromeManagement.v1.csproj +++ b/Src/Generated/Google.Apis.ChromeManagement.v1/Google.Apis.ChromeManagement.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ChromeManagement.v1 Client Library - 1.65.0.3235 + 1.66.0.3235 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Chromemanagement v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ChromePolicy.v1/Google.Apis.ChromePolicy.v1.csproj b/Src/Generated/Google.Apis.ChromePolicy.v1/Google.Apis.ChromePolicy.v1.csproj index bb9e67a294..253922f35b 100644 --- a/Src/Generated/Google.Apis.ChromePolicy.v1/Google.Apis.ChromePolicy.v1.csproj +++ b/Src/Generated/Google.Apis.ChromePolicy.v1/Google.Apis.ChromePolicy.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ChromePolicy.v1 Client Library - 1.65.0.3297 + 1.66.0.3297 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Chromepolicy v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ChromeUXReport.v1/Google.Apis.ChromeUXReport.v1.csproj b/Src/Generated/Google.Apis.ChromeUXReport.v1/Google.Apis.ChromeUXReport.v1.csproj index 39c4c64022..9e8b6fcb9a 100644 --- a/Src/Generated/Google.Apis.ChromeUXReport.v1/Google.Apis.ChromeUXReport.v1.csproj +++ b/Src/Generated/Google.Apis.ChromeUXReport.v1/Google.Apis.ChromeUXReport.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ChromeUXReport.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Chromeuxreport v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.CivicInfo.v2/Google.Apis.CivicInfo.v2.csproj b/Src/Generated/Google.Apis.CivicInfo.v2/Google.Apis.CivicInfo.v2.csproj index 8d8c45b6b7..24daa753ba 100644 --- a/Src/Generated/Google.Apis.CivicInfo.v2/Google.Apis.CivicInfo.v2.csproj +++ b/Src/Generated/Google.Apis.CivicInfo.v2/Google.Apis.CivicInfo.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CivicInfo.v2 Client Library - 1.65.0.3113 + 1.66.0.3113 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Civicinfo v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.Classroom.v1/Google.Apis.Classroom.v1.csproj b/Src/Generated/Google.Apis.Classroom.v1/Google.Apis.Classroom.v1.csproj index 93a3e5f006..e2ab7c868c 100644 --- a/Src/Generated/Google.Apis.Classroom.v1/Google.Apis.Classroom.v1.csproj +++ b/Src/Generated/Google.Apis.Classroom.v1/Google.Apis.Classroom.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Classroom.v1 Client Library - 1.65.0.3246 + 1.66.0.3246 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Classroom v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1/Google.Apis.CloudAlloyDBAdmin.v1.csproj b/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1/Google.Apis.CloudAlloyDBAdmin.v1.csproj index 93a5fd6678..62d4130c13 100644 --- a/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1/Google.Apis.CloudAlloyDBAdmin.v1.csproj +++ b/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1/Google.Apis.CloudAlloyDBAdmin.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAlloyDBAdmin.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Alloydb v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1alpha/Google.Apis.CloudAlloyDBAdmin.v1alpha.csproj b/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1alpha/Google.Apis.CloudAlloyDBAdmin.v1alpha.csproj index 28333d0899..8d11a956a8 100644 --- a/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1alpha/Google.Apis.CloudAlloyDBAdmin.v1alpha.csproj +++ b/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1alpha/Google.Apis.CloudAlloyDBAdmin.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAlloyDBAdmin.v1alpha Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Alloydb v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1beta/Google.Apis.CloudAlloyDBAdmin.v1beta.csproj b/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1beta/Google.Apis.CloudAlloyDBAdmin.v1beta.csproj index ac8dced456..bb72dbd0b2 100644 --- a/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1beta/Google.Apis.CloudAlloyDBAdmin.v1beta.csproj +++ b/Src/Generated/Google.Apis.CloudAlloyDBAdmin.v1beta/Google.Apis.CloudAlloyDBAdmin.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAlloyDBAdmin.v1beta Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Alloydb v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAsset.v1/Google.Apis.CloudAsset.v1.csproj b/Src/Generated/Google.Apis.CloudAsset.v1/Google.Apis.CloudAsset.v1.csproj index 07ded70517..e8fafa1c6f 100644 --- a/Src/Generated/Google.Apis.CloudAsset.v1/Google.Apis.CloudAsset.v1.csproj +++ b/Src/Generated/Google.Apis.CloudAsset.v1/Google.Apis.CloudAsset.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAsset.v1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Cloudasset v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAsset.v1beta1/Google.Apis.CloudAsset.v1beta1.csproj b/Src/Generated/Google.Apis.CloudAsset.v1beta1/Google.Apis.CloudAsset.v1beta1.csproj index f1ff913f07..c51faf2c20 100644 --- a/Src/Generated/Google.Apis.CloudAsset.v1beta1/Google.Apis.CloudAsset.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudAsset.v1beta1/Google.Apis.CloudAsset.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAsset.v1beta1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudasset v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAsset.v1p1beta1/Google.Apis.CloudAsset.v1p1beta1.csproj b/Src/Generated/Google.Apis.CloudAsset.v1p1beta1/Google.Apis.CloudAsset.v1p1beta1.csproj index 09167128e2..90abccf096 100644 --- a/Src/Generated/Google.Apis.CloudAsset.v1p1beta1/Google.Apis.CloudAsset.v1p1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudAsset.v1p1beta1/Google.Apis.CloudAsset.v1p1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAsset.v1p1beta1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudasset v1p1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAsset.v1p5beta1/Google.Apis.CloudAsset.v1p5beta1.csproj b/Src/Generated/Google.Apis.CloudAsset.v1p5beta1/Google.Apis.CloudAsset.v1p5beta1.csproj index 86bc7dd75a..df36b22ad2 100644 --- a/Src/Generated/Google.Apis.CloudAsset.v1p5beta1/Google.Apis.CloudAsset.v1p5beta1.csproj +++ b/Src/Generated/Google.Apis.CloudAsset.v1p5beta1/Google.Apis.CloudAsset.v1p5beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAsset.v1p5beta1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudasset v1p5beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudAsset.v1p7beta1/Google.Apis.CloudAsset.v1p7beta1.csproj b/Src/Generated/Google.Apis.CloudAsset.v1p7beta1/Google.Apis.CloudAsset.v1p7beta1.csproj index 1f816b35d1..da782dcc28 100644 --- a/Src/Generated/Google.Apis.CloudAsset.v1p7beta1/Google.Apis.CloudAsset.v1p7beta1.csproj +++ b/Src/Generated/Google.Apis.CloudAsset.v1p7beta1/Google.Apis.CloudAsset.v1p7beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudAsset.v1p7beta1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudasset v1p7beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudBillingBudget.v1/Google.Apis.CloudBillingBudget.v1.csproj b/Src/Generated/Google.Apis.CloudBillingBudget.v1/Google.Apis.CloudBillingBudget.v1.csproj index 6fb7b67254..ec2403b28c 100644 --- a/Src/Generated/Google.Apis.CloudBillingBudget.v1/Google.Apis.CloudBillingBudget.v1.csproj +++ b/Src/Generated/Google.Apis.CloudBillingBudget.v1/Google.Apis.CloudBillingBudget.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudBillingBudget.v1 Client Library - 1.65.0.3223 + 1.66.0.3223 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Billingbudgets v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudBillingBudget.v1beta1/Google.Apis.CloudBillingBudget.v1beta1.csproj b/Src/Generated/Google.Apis.CloudBillingBudget.v1beta1/Google.Apis.CloudBillingBudget.v1beta1.csproj index 400d7efec7..85037e4456 100644 --- a/Src/Generated/Google.Apis.CloudBillingBudget.v1beta1/Google.Apis.CloudBillingBudget.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudBillingBudget.v1beta1/Google.Apis.CloudBillingBudget.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudBillingBudget.v1beta1 Client Library - 1.65.0.3223 + 1.66.0.3223 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Billingbudgets v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.cs b/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.cs index 7344a5521d..c464768e42 100644 --- a/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.cs +++ b/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.cs @@ -8692,10 +8692,7 @@ public class PullRequestFilter : Google.Apis.Requests.IDirectResponseSchema public virtual string Branch { get; set; } /// - /// If CommentControl is enabled, depending on the setting, builds may not fire until a repository writer - /// comments `/gcbrun` on a pull request or `/gcbrun` is in the pull request description. Only PR comments that - /// contain `/gcbrun` will trigger builds. If CommentControl is set to disabled, comments with `/gcbrun` from a - /// user with repository write permission or above will still trigger builds to run. + /// Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`. /// [Newtonsoft.Json.JsonPropertyAttribute("commentControl")] public virtual string CommentControl { get; set; } diff --git a/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.csproj b/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.csproj index 2f072973df..cfe21c39d5 100644 --- a/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.csproj +++ b/Src/Generated/Google.Apis.CloudBuild.v1/Google.Apis.CloudBuild.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudBuild.v1 Client Library - 1.65.0.3295 + 1.66.0.3286 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudbuild v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudBuild.v2/Google.Apis.CloudBuild.v2.csproj b/Src/Generated/Google.Apis.CloudBuild.v2/Google.Apis.CloudBuild.v2.csproj index e459b51e03..81cc74a6dd 100644 --- a/Src/Generated/Google.Apis.CloudBuild.v2/Google.Apis.CloudBuild.v2.csproj +++ b/Src/Generated/Google.Apis.CloudBuild.v2/Google.Apis.CloudBuild.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudBuild.v2 Client Library - 1.65.0.3286 + 1.66.0.3286 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudbuild v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudComposer.v1/Google.Apis.CloudComposer.v1.csproj b/Src/Generated/Google.Apis.CloudComposer.v1/Google.Apis.CloudComposer.v1.csproj index 43c237e98d..5087fc6dde 100644 --- a/Src/Generated/Google.Apis.CloudComposer.v1/Google.Apis.CloudComposer.v1.csproj +++ b/Src/Generated/Google.Apis.CloudComposer.v1/Google.Apis.CloudComposer.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudComposer.v1 Client Library - 1.65.0.3292 + 1.66.0.3292 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Composer v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudComposer.v1beta1/Google.Apis.CloudComposer.v1beta1.csproj b/Src/Generated/Google.Apis.CloudComposer.v1beta1/Google.Apis.CloudComposer.v1beta1.csproj index 0b9b790c9c..e4e92efa73 100644 --- a/Src/Generated/Google.Apis.CloudComposer.v1beta1/Google.Apis.CloudComposer.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudComposer.v1beta1/Google.Apis.CloudComposer.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudComposer.v1beta1 Client Library - 1.65.0.3292 + 1.66.0.3292 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Composer v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudDataplex.v1/Google.Apis.CloudDataplex.v1.csproj b/Src/Generated/Google.Apis.CloudDataplex.v1/Google.Apis.CloudDataplex.v1.csproj index eccd6cf541..01a8082998 100644 --- a/Src/Generated/Google.Apis.CloudDataplex.v1/Google.Apis.CloudDataplex.v1.csproj +++ b/Src/Generated/Google.Apis.CloudDataplex.v1/Google.Apis.CloudDataplex.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudDataplex.v1 Client Library - 1.65.0.3286 + 1.66.0.3286 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dataplex v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudDeploy.v1/Google.Apis.CloudDeploy.v1.csproj b/Src/Generated/Google.Apis.CloudDeploy.v1/Google.Apis.CloudDeploy.v1.csproj index 13354996c9..919e6ea3ed 100644 --- a/Src/Generated/Google.Apis.CloudDeploy.v1/Google.Apis.CloudDeploy.v1.csproj +++ b/Src/Generated/Google.Apis.CloudDeploy.v1/Google.Apis.CloudDeploy.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudDeploy.v1 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Clouddeploy v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudDomains.v1/Google.Apis.CloudDomains.v1.csproj b/Src/Generated/Google.Apis.CloudDomains.v1/Google.Apis.CloudDomains.v1.csproj index 130d9471cc..82ea2e8dcf 100644 --- a/Src/Generated/Google.Apis.CloudDomains.v1/Google.Apis.CloudDomains.v1.csproj +++ b/Src/Generated/Google.Apis.CloudDomains.v1/Google.Apis.CloudDomains.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudDomains.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Domains v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudDomains.v1alpha2/Google.Apis.CloudDomains.v1alpha2.csproj b/Src/Generated/Google.Apis.CloudDomains.v1alpha2/Google.Apis.CloudDomains.v1alpha2.csproj index 057d9b5825..a030a44ad5 100644 --- a/Src/Generated/Google.Apis.CloudDomains.v1alpha2/Google.Apis.CloudDomains.v1alpha2.csproj +++ b/Src/Generated/Google.Apis.CloudDomains.v1alpha2/Google.Apis.CloudDomains.v1alpha2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudDomains.v1alpha2 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Domains v1alpha2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudDomains.v1beta1/Google.Apis.CloudDomains.v1beta1.csproj b/Src/Generated/Google.Apis.CloudDomains.v1beta1/Google.Apis.CloudDomains.v1beta1.csproj index 23eb318532..1e16ec81af 100644 --- a/Src/Generated/Google.Apis.CloudDomains.v1beta1/Google.Apis.CloudDomains.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudDomains.v1beta1/Google.Apis.CloudDomains.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudDomains.v1beta1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Domains v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudFilestore.v1/Google.Apis.CloudFilestore.v1.csproj b/Src/Generated/Google.Apis.CloudFilestore.v1/Google.Apis.CloudFilestore.v1.csproj index 5c0ce30769..87a88ef6bf 100644 --- a/Src/Generated/Google.Apis.CloudFilestore.v1/Google.Apis.CloudFilestore.v1.csproj +++ b/Src/Generated/Google.Apis.CloudFilestore.v1/Google.Apis.CloudFilestore.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudFilestore.v1 Client Library - 1.65.0.3268 + 1.66.0.3268 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with File v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudFilestore.v1beta1/Google.Apis.CloudFilestore.v1beta1.csproj b/Src/Generated/Google.Apis.CloudFilestore.v1beta1/Google.Apis.CloudFilestore.v1beta1.csproj index 1b59eb6b7b..f797276b4b 100644 --- a/Src/Generated/Google.Apis.CloudFilestore.v1beta1/Google.Apis.CloudFilestore.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudFilestore.v1beta1/Google.Apis.CloudFilestore.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudFilestore.v1beta1 Client Library - 1.65.0.3268 + 1.66.0.3268 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with File v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudFunctions.v1/Google.Apis.CloudFunctions.v1.csproj b/Src/Generated/Google.Apis.CloudFunctions.v1/Google.Apis.CloudFunctions.v1.csproj index c3f6067fab..ddaebe7210 100644 --- a/Src/Generated/Google.Apis.CloudFunctions.v1/Google.Apis.CloudFunctions.v1.csproj +++ b/Src/Generated/Google.Apis.CloudFunctions.v1/Google.Apis.CloudFunctions.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudFunctions.v1 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudfunctions v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudFunctions.v2/Google.Apis.CloudFunctions.v2.csproj b/Src/Generated/Google.Apis.CloudFunctions.v2/Google.Apis.CloudFunctions.v2.csproj index c7f32898fb..6669dc2f19 100644 --- a/Src/Generated/Google.Apis.CloudFunctions.v2/Google.Apis.CloudFunctions.v2.csproj +++ b/Src/Generated/Google.Apis.CloudFunctions.v2/Google.Apis.CloudFunctions.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudFunctions.v2 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudfunctions v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudFunctions.v2alpha/Google.Apis.CloudFunctions.v2alpha.csproj b/Src/Generated/Google.Apis.CloudFunctions.v2alpha/Google.Apis.CloudFunctions.v2alpha.csproj index 9e3b204808..9cc046432b 100644 --- a/Src/Generated/Google.Apis.CloudFunctions.v2alpha/Google.Apis.CloudFunctions.v2alpha.csproj +++ b/Src/Generated/Google.Apis.CloudFunctions.v2alpha/Google.Apis.CloudFunctions.v2alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudFunctions.v2alpha Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudfunctions v2alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudFunctions.v2beta/Google.Apis.CloudFunctions.v2beta.csproj b/Src/Generated/Google.Apis.CloudFunctions.v2beta/Google.Apis.CloudFunctions.v2beta.csproj index 00529d03b8..92009638e0 100644 --- a/Src/Generated/Google.Apis.CloudFunctions.v2beta/Google.Apis.CloudFunctions.v2beta.csproj +++ b/Src/Generated/Google.Apis.CloudFunctions.v2beta/Google.Apis.CloudFunctions.v2beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudFunctions.v2beta Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudfunctions v2beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudHealthcare.v1/Google.Apis.CloudHealthcare.v1.csproj b/Src/Generated/Google.Apis.CloudHealthcare.v1/Google.Apis.CloudHealthcare.v1.csproj index fb1951466a..077288fc37 100644 --- a/Src/Generated/Google.Apis.CloudHealthcare.v1/Google.Apis.CloudHealthcare.v1.csproj +++ b/Src/Generated/Google.Apis.CloudHealthcare.v1/Google.Apis.CloudHealthcare.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudHealthcare.v1 Client Library - 1.65.0.3299 + 1.66.0.3299 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Healthcare v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudHealthcare.v1beta1/Google.Apis.CloudHealthcare.v1beta1.csproj b/Src/Generated/Google.Apis.CloudHealthcare.v1beta1/Google.Apis.CloudHealthcare.v1beta1.csproj index a2af98155a..fbe92db250 100644 --- a/Src/Generated/Google.Apis.CloudHealthcare.v1beta1/Google.Apis.CloudHealthcare.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudHealthcare.v1beta1/Google.Apis.CloudHealthcare.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudHealthcare.v1beta1 Client Library - 1.65.0.3299 + 1.66.0.3299 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Healthcare v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudIAP.v1/Google.Apis.CloudIAP.v1.csproj b/Src/Generated/Google.Apis.CloudIAP.v1/Google.Apis.CloudIAP.v1.csproj index 7aa792188b..02b264ff21 100644 --- a/Src/Generated/Google.Apis.CloudIAP.v1/Google.Apis.CloudIAP.v1.csproj +++ b/Src/Generated/Google.Apis.CloudIAP.v1/Google.Apis.CloudIAP.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudIAP.v1 Client Library - 1.65.0.3284 + 1.66.0.3284 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Iap v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudIAP.v1beta1/Google.Apis.CloudIAP.v1beta1.csproj b/Src/Generated/Google.Apis.CloudIAP.v1beta1/Google.Apis.CloudIAP.v1beta1.csproj index 429f0da366..bac88f80ff 100644 --- a/Src/Generated/Google.Apis.CloudIAP.v1beta1/Google.Apis.CloudIAP.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudIAP.v1beta1/Google.Apis.CloudIAP.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudIAP.v1beta1 Client Library - 1.65.0.3284 + 1.66.0.3284 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Iap v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudIdentity.v1/Google.Apis.CloudIdentity.v1.csproj b/Src/Generated/Google.Apis.CloudIdentity.v1/Google.Apis.CloudIdentity.v1.csproj index 622635ff10..8a94844674 100644 --- a/Src/Generated/Google.Apis.CloudIdentity.v1/Google.Apis.CloudIdentity.v1.csproj +++ b/Src/Generated/Google.Apis.CloudIdentity.v1/Google.Apis.CloudIdentity.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudIdentity.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudidentity v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudIdentity.v1beta1/Google.Apis.CloudIdentity.v1beta1.csproj b/Src/Generated/Google.Apis.CloudIdentity.v1beta1/Google.Apis.CloudIdentity.v1beta1.csproj index 2f2fb81e4b..2693dc6ad4 100644 --- a/Src/Generated/Google.Apis.CloudIdentity.v1beta1/Google.Apis.CloudIdentity.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudIdentity.v1beta1/Google.Apis.CloudIdentity.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudIdentity.v1beta1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudidentity v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudKMS.v1/Google.Apis.CloudKMS.v1.csproj b/Src/Generated/Google.Apis.CloudKMS.v1/Google.Apis.CloudKMS.v1.csproj index 2984705e9c..035465c751 100644 --- a/Src/Generated/Google.Apis.CloudKMS.v1/Google.Apis.CloudKMS.v1.csproj +++ b/Src/Generated/Google.Apis.CloudKMS.v1/Google.Apis.CloudKMS.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudKMS.v1 Client Library - 1.65.0.3267 + 1.66.0.3267 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Cloudkms v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudLifeSciences.v2beta/Google.Apis.CloudLifeSciences.v2beta.csproj b/Src/Generated/Google.Apis.CloudLifeSciences.v2beta/Google.Apis.CloudLifeSciences.v2beta.csproj index d04d357fed..c81a42879e 100644 --- a/Src/Generated/Google.Apis.CloudLifeSciences.v2beta/Google.Apis.CloudLifeSciences.v2beta.csproj +++ b/Src/Generated/Google.Apis.CloudLifeSciences.v2beta/Google.Apis.CloudLifeSciences.v2beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudLifeSciences.v2beta Client Library - 1.65.0.3109 + 1.66.0.3109 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Lifesciences v2beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudMachineLearningEngine.v1/Google.Apis.CloudMachineLearningEngine.v1.csproj b/Src/Generated/Google.Apis.CloudMachineLearningEngine.v1/Google.Apis.CloudMachineLearningEngine.v1.csproj index 98201c3dea..d705b0adc4 100644 --- a/Src/Generated/Google.Apis.CloudMachineLearningEngine.v1/Google.Apis.CloudMachineLearningEngine.v1.csproj +++ b/Src/Generated/Google.Apis.CloudMachineLearningEngine.v1/Google.Apis.CloudMachineLearningEngine.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudMachineLearningEngine.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Ml v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1/Google.Apis.CloudMemorystoreforMemcached.v1.csproj b/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1/Google.Apis.CloudMemorystoreforMemcached.v1.csproj index f12798076f..5a09b1d6e3 100644 --- a/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1/Google.Apis.CloudMemorystoreforMemcached.v1.csproj +++ b/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1/Google.Apis.CloudMemorystoreforMemcached.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudMemorystoreforMemcached.v1 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Memcache v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1beta2/Google.Apis.CloudMemorystoreforMemcached.v1beta2.csproj b/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1beta2/Google.Apis.CloudMemorystoreforMemcached.v1beta2.csproj index 894abda043..b7632f5177 100644 --- a/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1beta2/Google.Apis.CloudMemorystoreforMemcached.v1beta2.csproj +++ b/Src/Generated/Google.Apis.CloudMemorystoreforMemcached.v1beta2/Google.Apis.CloudMemorystoreforMemcached.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudMemorystoreforMemcached.v1beta2 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Memcache v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudNaturalLanguage.v1/Google.Apis.CloudNaturalLanguage.v1.csproj b/Src/Generated/Google.Apis.CloudNaturalLanguage.v1/Google.Apis.CloudNaturalLanguage.v1.csproj index 2b92133468..293de51cf6 100644 --- a/Src/Generated/Google.Apis.CloudNaturalLanguage.v1/Google.Apis.CloudNaturalLanguage.v1.csproj +++ b/Src/Generated/Google.Apis.CloudNaturalLanguage.v1/Google.Apis.CloudNaturalLanguage.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudNaturalLanguage.v1 Client Library - 1.65.0.3285 + 1.66.0.3285 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Language v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudNaturalLanguage.v1beta2/Google.Apis.CloudNaturalLanguage.v1beta2.csproj b/Src/Generated/Google.Apis.CloudNaturalLanguage.v1beta2/Google.Apis.CloudNaturalLanguage.v1beta2.csproj index b3821cb2e5..6b1bd3b5c3 100644 --- a/Src/Generated/Google.Apis.CloudNaturalLanguage.v1beta2/Google.Apis.CloudNaturalLanguage.v1beta2.csproj +++ b/Src/Generated/Google.Apis.CloudNaturalLanguage.v1beta2/Google.Apis.CloudNaturalLanguage.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudNaturalLanguage.v1beta2 Client Library - 1.65.0.3285 + 1.66.0.3285 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Language v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudNaturalLanguage.v2/Google.Apis.CloudNaturalLanguage.v2.csproj b/Src/Generated/Google.Apis.CloudNaturalLanguage.v2/Google.Apis.CloudNaturalLanguage.v2.csproj index 1ccd12bd76..ec3716feae 100644 --- a/Src/Generated/Google.Apis.CloudNaturalLanguage.v2/Google.Apis.CloudNaturalLanguage.v2.csproj +++ b/Src/Generated/Google.Apis.CloudNaturalLanguage.v2/Google.Apis.CloudNaturalLanguage.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudNaturalLanguage.v2 Client Library - 1.65.0.3169 + 1.66.0.3169 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Language v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudOSLogin.v1/Google.Apis.CloudOSLogin.v1.csproj b/Src/Generated/Google.Apis.CloudOSLogin.v1/Google.Apis.CloudOSLogin.v1.csproj index 8bd0c4ff1d..58f9e91fc9 100644 --- a/Src/Generated/Google.Apis.CloudOSLogin.v1/Google.Apis.CloudOSLogin.v1.csproj +++ b/Src/Generated/Google.Apis.CloudOSLogin.v1/Google.Apis.CloudOSLogin.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudOSLogin.v1 Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Oslogin v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudOSLogin.v1alpha/Google.Apis.CloudOSLogin.v1alpha.csproj b/Src/Generated/Google.Apis.CloudOSLogin.v1alpha/Google.Apis.CloudOSLogin.v1alpha.csproj index 4096e5d4b5..d991d0f09c 100644 --- a/Src/Generated/Google.Apis.CloudOSLogin.v1alpha/Google.Apis.CloudOSLogin.v1alpha.csproj +++ b/Src/Generated/Google.Apis.CloudOSLogin.v1alpha/Google.Apis.CloudOSLogin.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudOSLogin.v1alpha Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Oslogin v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudOSLogin.v1beta/Google.Apis.CloudOSLogin.v1beta.csproj b/Src/Generated/Google.Apis.CloudOSLogin.v1beta/Google.Apis.CloudOSLogin.v1beta.csproj index 511a2dc7b1..6a7e65b453 100644 --- a/Src/Generated/Google.Apis.CloudOSLogin.v1beta/Google.Apis.CloudOSLogin.v1beta.csproj +++ b/Src/Generated/Google.Apis.CloudOSLogin.v1beta/Google.Apis.CloudOSLogin.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudOSLogin.v1beta Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Oslogin v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudProfiler.v2/Google.Apis.CloudProfiler.v2.csproj b/Src/Generated/Google.Apis.CloudProfiler.v2/Google.Apis.CloudProfiler.v2.csproj index 9cb9b37a41..ee27e6141c 100644 --- a/Src/Generated/Google.Apis.CloudProfiler.v2/Google.Apis.CloudProfiler.v2.csproj +++ b/Src/Generated/Google.Apis.CloudProfiler.v2/Google.Apis.CloudProfiler.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudProfiler.v2 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudprofiler v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRedis.v1/Google.Apis.CloudRedis.v1.csproj b/Src/Generated/Google.Apis.CloudRedis.v1/Google.Apis.CloudRedis.v1.csproj index 36c643757a..dc43025d56 100644 --- a/Src/Generated/Google.Apis.CloudRedis.v1/Google.Apis.CloudRedis.v1.csproj +++ b/Src/Generated/Google.Apis.CloudRedis.v1/Google.Apis.CloudRedis.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRedis.v1 Client Library - 1.65.0.3254 + 1.66.0.3254 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Redis v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRedis.v1beta1/Google.Apis.CloudRedis.v1beta1.csproj b/Src/Generated/Google.Apis.CloudRedis.v1beta1/Google.Apis.CloudRedis.v1beta1.csproj index b7479829a8..726562f1dd 100644 --- a/Src/Generated/Google.Apis.CloudRedis.v1beta1/Google.Apis.CloudRedis.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudRedis.v1beta1/Google.Apis.CloudRedis.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRedis.v1beta1 Client Library - 1.65.0.3254 + 1.66.0.3254 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Redis v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudResourceManager.v1/Google.Apis.CloudResourceManager.v1.csproj b/Src/Generated/Google.Apis.CloudResourceManager.v1/Google.Apis.CloudResourceManager.v1.csproj index ea128c93ff..bc69560baf 100644 --- a/Src/Generated/Google.Apis.CloudResourceManager.v1/Google.Apis.CloudResourceManager.v1.csproj +++ b/Src/Generated/Google.Apis.CloudResourceManager.v1/Google.Apis.CloudResourceManager.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudResourceManager.v1 Client Library - 1.65.0.3216 + 1.66.0.3216 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudresourcemanager v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudResourceManager.v1beta1/Google.Apis.CloudResourceManager.v1beta1.csproj b/Src/Generated/Google.Apis.CloudResourceManager.v1beta1/Google.Apis.CloudResourceManager.v1beta1.csproj index f5100cfab7..7ef837bb85 100644 --- a/Src/Generated/Google.Apis.CloudResourceManager.v1beta1/Google.Apis.CloudResourceManager.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudResourceManager.v1beta1/Google.Apis.CloudResourceManager.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudResourceManager.v1beta1 Client Library - 1.65.0.3216 + 1.66.0.3216 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudresourcemanager v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudResourceManager.v2/Google.Apis.CloudResourceManager.v2.csproj b/Src/Generated/Google.Apis.CloudResourceManager.v2/Google.Apis.CloudResourceManager.v2.csproj index c30820efb3..454adabce5 100644 --- a/Src/Generated/Google.Apis.CloudResourceManager.v2/Google.Apis.CloudResourceManager.v2.csproj +++ b/Src/Generated/Google.Apis.CloudResourceManager.v2/Google.Apis.CloudResourceManager.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudResourceManager.v2 Client Library - 1.65.0.3139 + 1.66.0.3139 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudresourcemanager v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudResourceManager.v2beta1/Google.Apis.CloudResourceManager.v2beta1.csproj b/Src/Generated/Google.Apis.CloudResourceManager.v2beta1/Google.Apis.CloudResourceManager.v2beta1.csproj index c3619dfb5b..e0608f01c4 100644 --- a/Src/Generated/Google.Apis.CloudResourceManager.v2beta1/Google.Apis.CloudResourceManager.v2beta1.csproj +++ b/Src/Generated/Google.Apis.CloudResourceManager.v2beta1/Google.Apis.CloudResourceManager.v2beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudResourceManager.v2beta1 Client Library - 1.65.0.3139 + 1.66.0.3139 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudresourcemanager v2beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudResourceManager.v3/Google.Apis.CloudResourceManager.v3.csproj b/Src/Generated/Google.Apis.CloudResourceManager.v3/Google.Apis.CloudResourceManager.v3.csproj index 8151adf36a..7afbac4461 100644 --- a/Src/Generated/Google.Apis.CloudResourceManager.v3/Google.Apis.CloudResourceManager.v3.csproj +++ b/Src/Generated/Google.Apis.CloudResourceManager.v3/Google.Apis.CloudResourceManager.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudResourceManager.v3 Client Library - 1.65.0.3216 + 1.66.0.3216 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudresourcemanager v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRetail.v2/Google.Apis.CloudRetail.v2.csproj b/Src/Generated/Google.Apis.CloudRetail.v2/Google.Apis.CloudRetail.v2.csproj index f392617f39..27f034ea93 100644 --- a/Src/Generated/Google.Apis.CloudRetail.v2/Google.Apis.CloudRetail.v2.csproj +++ b/Src/Generated/Google.Apis.CloudRetail.v2/Google.Apis.CloudRetail.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRetail.v2 Client Library - 1.65.0.3295 + 1.66.0.3295 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Retail v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRetail.v2alpha/Google.Apis.CloudRetail.v2alpha.csproj b/Src/Generated/Google.Apis.CloudRetail.v2alpha/Google.Apis.CloudRetail.v2alpha.csproj index c71bc9da00..c5e8db5ba1 100644 --- a/Src/Generated/Google.Apis.CloudRetail.v2alpha/Google.Apis.CloudRetail.v2alpha.csproj +++ b/Src/Generated/Google.Apis.CloudRetail.v2alpha/Google.Apis.CloudRetail.v2alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRetail.v2alpha Client Library - 1.65.0.3295 + 1.66.0.3295 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Retail v2alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRetail.v2beta/Google.Apis.CloudRetail.v2beta.csproj b/Src/Generated/Google.Apis.CloudRetail.v2beta/Google.Apis.CloudRetail.v2beta.csproj index 4ecbcd8ab8..acc62f21d6 100644 --- a/Src/Generated/Google.Apis.CloudRetail.v2beta/Google.Apis.CloudRetail.v2beta.csproj +++ b/Src/Generated/Google.Apis.CloudRetail.v2beta/Google.Apis.CloudRetail.v2beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRetail.v2beta Client Library - 1.65.0.3295 + 1.66.0.3295 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Retail v2beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.csproj b/Src/Generated/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.csproj index ed46b40d9f..5e7ac2abc3 100644 --- a/Src/Generated/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.csproj +++ b/Src/Generated/Google.Apis.CloudRun.v1/Google.Apis.CloudRun.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRun.v1 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Run v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRun.v2/Google.Apis.CloudRun.v2.csproj b/Src/Generated/Google.Apis.CloudRun.v2/Google.Apis.CloudRun.v2.csproj index 8f587af58f..c094a2f883 100644 --- a/Src/Generated/Google.Apis.CloudRun.v2/Google.Apis.CloudRun.v2.csproj +++ b/Src/Generated/Google.Apis.CloudRun.v2/Google.Apis.CloudRun.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRun.v2 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Run v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRuntimeConfig.v1/Google.Apis.CloudRuntimeConfig.v1.csproj b/Src/Generated/Google.Apis.CloudRuntimeConfig.v1/Google.Apis.CloudRuntimeConfig.v1.csproj index aa46a398d3..de922d4cd5 100644 --- a/Src/Generated/Google.Apis.CloudRuntimeConfig.v1/Google.Apis.CloudRuntimeConfig.v1.csproj +++ b/Src/Generated/Google.Apis.CloudRuntimeConfig.v1/Google.Apis.CloudRuntimeConfig.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRuntimeConfig.v1 Client Library - 1.65.0.3136 + 1.66.0.3136 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Runtimeconfig v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudRuntimeConfig.v1beta1/Google.Apis.CloudRuntimeConfig.v1beta1.csproj b/Src/Generated/Google.Apis.CloudRuntimeConfig.v1beta1/Google.Apis.CloudRuntimeConfig.v1beta1.csproj index 0fabf9dd2a..2a967c131a 100644 --- a/Src/Generated/Google.Apis.CloudRuntimeConfig.v1beta1/Google.Apis.CloudRuntimeConfig.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudRuntimeConfig.v1beta1/Google.Apis.CloudRuntimeConfig.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudRuntimeConfig.v1beta1 Client Library - 1.65.0.3284 + 1.66.0.3284 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Runtimeconfig v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudScheduler.v1/Google.Apis.CloudScheduler.v1.csproj b/Src/Generated/Google.Apis.CloudScheduler.v1/Google.Apis.CloudScheduler.v1.csproj index 79888a3235..37e522e6df 100644 --- a/Src/Generated/Google.Apis.CloudScheduler.v1/Google.Apis.CloudScheduler.v1.csproj +++ b/Src/Generated/Google.Apis.CloudScheduler.v1/Google.Apis.CloudScheduler.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudScheduler.v1 Client Library - 1.65.0.3256 + 1.66.0.3256 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Cloudscheduler v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudScheduler.v1beta1/Google.Apis.CloudScheduler.v1beta1.csproj b/Src/Generated/Google.Apis.CloudScheduler.v1beta1/Google.Apis.CloudScheduler.v1beta1.csproj index 8ce8412d44..a2e2b645ce 100644 --- a/Src/Generated/Google.Apis.CloudScheduler.v1beta1/Google.Apis.CloudScheduler.v1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudScheduler.v1beta1/Google.Apis.CloudScheduler.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudScheduler.v1beta1 Client Library - 1.65.0.3256 + 1.66.0.3256 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudscheduler v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudSearch.v1/Google.Apis.CloudSearch.v1.csproj b/Src/Generated/Google.Apis.CloudSearch.v1/Google.Apis.CloudSearch.v1.csproj index 640c68fad5..c8a30d99c2 100644 --- a/Src/Generated/Google.Apis.CloudSearch.v1/Google.Apis.CloudSearch.v1.csproj +++ b/Src/Generated/Google.Apis.CloudSearch.v1/Google.Apis.CloudSearch.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudSearch.v1 Client Library - 1.65.0.3164 + 1.66.0.3164 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudsearch v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudSecurityToken.v1/Google.Apis.CloudSecurityToken.v1.csproj b/Src/Generated/Google.Apis.CloudSecurityToken.v1/Google.Apis.CloudSecurityToken.v1.csproj index 8dfbdca860..53256305ae 100644 --- a/Src/Generated/Google.Apis.CloudSecurityToken.v1/Google.Apis.CloudSecurityToken.v1.csproj +++ b/Src/Generated/Google.Apis.CloudSecurityToken.v1/Google.Apis.CloudSecurityToken.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudSecurityToken.v1 Client Library - 1.65.0.2950 + 1.66.0.2950 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Sts v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.CloudSecurityToken.v1beta/Google.Apis.CloudSecurityToken.v1beta.csproj b/Src/Generated/Google.Apis.CloudSecurityToken.v1beta/Google.Apis.CloudSecurityToken.v1beta.csproj index 10ac6839dc..4312fa38d1 100644 --- a/Src/Generated/Google.Apis.CloudSecurityToken.v1beta/Google.Apis.CloudSecurityToken.v1beta.csproj +++ b/Src/Generated/Google.Apis.CloudSecurityToken.v1beta/Google.Apis.CloudSecurityToken.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudSecurityToken.v1beta Client Library - 1.65.0.2950 + 1.66.0.2950 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Sts v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.CloudShell.v1/Google.Apis.CloudShell.v1.csproj b/Src/Generated/Google.Apis.CloudShell.v1/Google.Apis.CloudShell.v1.csproj index 512170ca53..c3f8f1ed8a 100644 --- a/Src/Generated/Google.Apis.CloudShell.v1/Google.Apis.CloudShell.v1.csproj +++ b/Src/Generated/Google.Apis.CloudShell.v1/Google.Apis.CloudShell.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudShell.v1 Client Library - 1.65.0.3140 + 1.66.0.3140 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudshell v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudSourceRepositories.v1/Google.Apis.CloudSourceRepositories.v1.csproj b/Src/Generated/Google.Apis.CloudSourceRepositories.v1/Google.Apis.CloudSourceRepositories.v1.csproj index 2cfab88d19..f640fd34a5 100644 --- a/Src/Generated/Google.Apis.CloudSourceRepositories.v1/Google.Apis.CloudSourceRepositories.v1.csproj +++ b/Src/Generated/Google.Apis.CloudSourceRepositories.v1/Google.Apis.CloudSourceRepositories.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudSourceRepositories.v1 Client Library - 1.65.0.3273 + 1.66.0.3273 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Sourcerepo v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.csproj b/Src/Generated/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.csproj index 9cb3f09e90..45878310c3 100644 --- a/Src/Generated/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.csproj +++ b/Src/Generated/Google.Apis.CloudSupport.v2/Google.Apis.CloudSupport.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudSupport.v2 Client Library - 1.65.0.3275 + 1.66.0.3275 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudsupport v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudSupport.v2beta/Google.Apis.CloudSupport.v2beta.csproj b/Src/Generated/Google.Apis.CloudSupport.v2beta/Google.Apis.CloudSupport.v2beta.csproj index 495af3b8a8..3e3d0bda21 100644 --- a/Src/Generated/Google.Apis.CloudSupport.v2beta/Google.Apis.CloudSupport.v2beta.csproj +++ b/Src/Generated/Google.Apis.CloudSupport.v2beta/Google.Apis.CloudSupport.v2beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudSupport.v2beta Client Library - 1.65.0.3275 + 1.66.0.3275 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudsupport v2beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTalentSolution.v3/Google.Apis.CloudTalentSolution.v3.csproj b/Src/Generated/Google.Apis.CloudTalentSolution.v3/Google.Apis.CloudTalentSolution.v3.csproj index 62c7e94022..799e34ae8e 100644 --- a/Src/Generated/Google.Apis.CloudTalentSolution.v3/Google.Apis.CloudTalentSolution.v3.csproj +++ b/Src/Generated/Google.Apis.CloudTalentSolution.v3/Google.Apis.CloudTalentSolution.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTalentSolution.v3 Client Library - 1.65.0.3155 + 1.66.0.3155 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Jobs v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTalentSolution.v3p1beta1/Google.Apis.CloudTalentSolution.v3p1beta1.csproj b/Src/Generated/Google.Apis.CloudTalentSolution.v3p1beta1/Google.Apis.CloudTalentSolution.v3p1beta1.csproj index 1fd169def6..ee30f1048c 100644 --- a/Src/Generated/Google.Apis.CloudTalentSolution.v3p1beta1/Google.Apis.CloudTalentSolution.v3p1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudTalentSolution.v3p1beta1/Google.Apis.CloudTalentSolution.v3p1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTalentSolution.v3p1beta1 Client Library - 1.65.0.3155 + 1.66.0.3155 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Jobs v3p1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTalentSolution.v4/Google.Apis.CloudTalentSolution.v4.csproj b/Src/Generated/Google.Apis.CloudTalentSolution.v4/Google.Apis.CloudTalentSolution.v4.csproj index 7962b09b04..3ffdf96482 100644 --- a/Src/Generated/Google.Apis.CloudTalentSolution.v4/Google.Apis.CloudTalentSolution.v4.csproj +++ b/Src/Generated/Google.Apis.CloudTalentSolution.v4/Google.Apis.CloudTalentSolution.v4.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTalentSolution.v4 Client Library - 1.65.0.3155 + 1.66.0.3155 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Jobs v4. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTasks.v2/Google.Apis.CloudTasks.v2.csproj b/Src/Generated/Google.Apis.CloudTasks.v2/Google.Apis.CloudTasks.v2.csproj index 5eb09499a6..8c809c1a2e 100644 --- a/Src/Generated/Google.Apis.CloudTasks.v2/Google.Apis.CloudTasks.v2.csproj +++ b/Src/Generated/Google.Apis.CloudTasks.v2/Google.Apis.CloudTasks.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTasks.v2 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Cloudtasks v2 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTasks.v2beta2/Google.Apis.CloudTasks.v2beta2.csproj b/Src/Generated/Google.Apis.CloudTasks.v2beta2/Google.Apis.CloudTasks.v2beta2.csproj index 8dcb02b3cf..97d94c6e8a 100644 --- a/Src/Generated/Google.Apis.CloudTasks.v2beta2/Google.Apis.CloudTasks.v2beta2.csproj +++ b/Src/Generated/Google.Apis.CloudTasks.v2beta2/Google.Apis.CloudTasks.v2beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTasks.v2beta2 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudtasks v2beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTasks.v2beta3/Google.Apis.CloudTasks.v2beta3.csproj b/Src/Generated/Google.Apis.CloudTasks.v2beta3/Google.Apis.CloudTasks.v2beta3.csproj index 5a8cb630d8..e4dbd8e7a6 100644 --- a/Src/Generated/Google.Apis.CloudTasks.v2beta3/Google.Apis.CloudTasks.v2beta3.csproj +++ b/Src/Generated/Google.Apis.CloudTasks.v2beta3/Google.Apis.CloudTasks.v2beta3.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTasks.v2beta3 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudtasks v2beta3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTrace.v1/Google.Apis.CloudTrace.v1.csproj b/Src/Generated/Google.Apis.CloudTrace.v1/Google.Apis.CloudTrace.v1.csproj index bfc4c56f69..57d3ad1a6b 100644 --- a/Src/Generated/Google.Apis.CloudTrace.v1/Google.Apis.CloudTrace.v1.csproj +++ b/Src/Generated/Google.Apis.CloudTrace.v1/Google.Apis.CloudTrace.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTrace.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Cloudtrace v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTrace.v2/Google.Apis.CloudTrace.v2.csproj b/Src/Generated/Google.Apis.CloudTrace.v2/Google.Apis.CloudTrace.v2.csproj index 3d5e516cbf..b02d6a7aae 100644 --- a/Src/Generated/Google.Apis.CloudTrace.v2/Google.Apis.CloudTrace.v2.csproj +++ b/Src/Generated/Google.Apis.CloudTrace.v2/Google.Apis.CloudTrace.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTrace.v2 Client Library - 1.65.0.3052 + 1.66.0.3052 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Cloudtrace v2 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudTrace.v2beta1/Google.Apis.CloudTrace.v2beta1.csproj b/Src/Generated/Google.Apis.CloudTrace.v2beta1/Google.Apis.CloudTrace.v2beta1.csproj index bae297f0e5..14df12382a 100644 --- a/Src/Generated/Google.Apis.CloudTrace.v2beta1/Google.Apis.CloudTrace.v2beta1.csproj +++ b/Src/Generated/Google.Apis.CloudTrace.v2beta1/Google.Apis.CloudTrace.v2beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudTrace.v2beta1 Client Library - 1.65.0.2667 + 1.66.0.2667 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudtrace v2beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1/Google.Apis.CloudVideoIntelligence.v1.csproj b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1/Google.Apis.CloudVideoIntelligence.v1.csproj index f3e411d21e..02083e9067 100644 --- a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1/Google.Apis.CloudVideoIntelligence.v1.csproj +++ b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1/Google.Apis.CloudVideoIntelligence.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudVideoIntelligence.v1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Videointelligence v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1beta2/Google.Apis.CloudVideoIntelligence.v1beta2.csproj b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1beta2/Google.Apis.CloudVideoIntelligence.v1beta2.csproj index e99fb147bd..c898e2a560 100644 --- a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1beta2/Google.Apis.CloudVideoIntelligence.v1beta2.csproj +++ b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1beta2/Google.Apis.CloudVideoIntelligence.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudVideoIntelligence.v1beta2 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Videointelligence v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p1beta1/Google.Apis.CloudVideoIntelligence.v1p1beta1.csproj b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p1beta1/Google.Apis.CloudVideoIntelligence.v1p1beta1.csproj index 5c2fcf0fdc..7796ba368c 100644 --- a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p1beta1/Google.Apis.CloudVideoIntelligence.v1p1beta1.csproj +++ b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p1beta1/Google.Apis.CloudVideoIntelligence.v1p1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudVideoIntelligence.v1p1beta1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Videointelligence v1p1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p2beta1/Google.Apis.CloudVideoIntelligence.v1p2beta1.csproj b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p2beta1/Google.Apis.CloudVideoIntelligence.v1p2beta1.csproj index 3dca925b32..0f236114b0 100644 --- a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p2beta1/Google.Apis.CloudVideoIntelligence.v1p2beta1.csproj +++ b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p2beta1/Google.Apis.CloudVideoIntelligence.v1p2beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudVideoIntelligence.v1p2beta1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Videointelligence v1p2beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p3beta1/Google.Apis.CloudVideoIntelligence.v1p3beta1.csproj b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p3beta1/Google.Apis.CloudVideoIntelligence.v1p3beta1.csproj index 5944389fab..e894392376 100644 --- a/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p3beta1/Google.Apis.CloudVideoIntelligence.v1p3beta1.csproj +++ b/Src/Generated/Google.Apis.CloudVideoIntelligence.v1p3beta1/Google.Apis.CloudVideoIntelligence.v1p3beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudVideoIntelligence.v1p3beta1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Videointelligence v1p3beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj b/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj index ec28919599..8d46b5555e 100644 --- a/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj +++ b/Src/Generated/Google.Apis.CloudWorkstations.v1/Google.Apis.CloudWorkstations.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudWorkstations.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Workstations v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CloudWorkstations.v1beta/Google.Apis.CloudWorkstations.v1beta.csproj b/Src/Generated/Google.Apis.CloudWorkstations.v1beta/Google.Apis.CloudWorkstations.v1beta.csproj index d3f61ed2dc..98d2078633 100644 --- a/Src/Generated/Google.Apis.CloudWorkstations.v1beta/Google.Apis.CloudWorkstations.v1beta.csproj +++ b/Src/Generated/Google.Apis.CloudWorkstations.v1beta/Google.Apis.CloudWorkstations.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.CloudWorkstations.v1beta Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Workstations v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.cs b/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.cs index 2224377393..3300eda22a 100644 --- a/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.cs +++ b/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.cs @@ -435,9 +435,8 @@ public SubAccountsResource(Google.Apis.Services.IClientService service) /// /// The body of the request. /// - /// Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for - /// example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, - /// `billingAccounts/012345-567890-ABCDEF` + /// Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, + /// for example, `billingAccounts/012345-567890-ABCDEF` /// public virtual CreateRequest Create(Google.Apis.Cloudbilling.v1.Data.BillingAccount body, string parent) { @@ -466,9 +465,8 @@ public CreateRequest(Google.Apis.Services.IClientService service, Google.Apis.Cl } /// - /// Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, - /// for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, - /// `billingAccounts/012345-567890-ABCDEF` + /// Optional. The parent to create a billing account from. Format: - + /// `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF` /// [Google.Apis.Util.RequestParameterAttribute("parent", Google.Apis.Util.RequestParameterType.Path)] public virtual string Parent { get; private set; } @@ -645,9 +643,8 @@ public CreateRequest(Google.Apis.Services.IClientService service, Google.Apis.Cl } /// - /// Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for - /// example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, - /// `billingAccounts/012345-567890-ABCDEF` + /// Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, + /// for example, `billingAccounts/012345-567890-ABCDEF` /// [Google.Apis.Util.RequestParameterAttribute("parent", Google.Apis.Util.RequestParameterType.Query)] public virtual string Parent { get; set; } @@ -1230,9 +1227,8 @@ public BillingAccountsResource(Google.Apis.Services.IClientService service) /// /// The body of the request. /// - /// Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, for - /// example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, - /// `billingAccounts/012345-567890-ABCDEF` + /// Optional. The parent to create a billing account from. Format: - `billingAccounts/{billing_account_id}`, + /// for example, `billingAccounts/012345-567890-ABCDEF` /// public virtual CreateRequest Create(Google.Apis.Cloudbilling.v1.Data.BillingAccount body, string parent) { @@ -1261,9 +1257,8 @@ public CreateRequest(Google.Apis.Services.IClientService service, Google.Apis.Cl } /// - /// Optional. The parent to create a billing account from. Format: - `organizations/{organization_id}`, - /// for example, `organizations/12345678` - `billingAccounts/{billing_account_id}`, for example, - /// `billingAccounts/012345-567890-ABCDEF` + /// Optional. The parent to create a billing account from. Format: - + /// `billingAccounts/{billing_account_id}`, for example, `billingAccounts/012345-567890-ABCDEF` /// [Google.Apis.Util.RequestParameterAttribute("parent", Google.Apis.Util.RequestParameterType.Path)] public virtual string Parent { get; private set; } diff --git a/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.csproj b/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.csproj index 5159fd6e9e..860f620daa 100644 --- a/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.csproj +++ b/Src/Generated/Google.Apis.Cloudbilling.v1/Google.Apis.Cloudbilling.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Cloudbilling.v1 Client Library - 1.65.0.3288 + 1.66.0.3298 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudbilling v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Cloudbilling.v1beta/Google.Apis.Cloudbilling.v1beta.csproj b/Src/Generated/Google.Apis.Cloudbilling.v1beta/Google.Apis.Cloudbilling.v1beta.csproj index 3624f04896..9a74288860 100644 --- a/Src/Generated/Google.Apis.Cloudbilling.v1beta/Google.Apis.Cloudbilling.v1beta.csproj +++ b/Src/Generated/Google.Apis.Cloudbilling.v1beta/Google.Apis.Cloudbilling.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Cloudbilling.v1beta Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudbilling v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Cloudchannel.v1/Google.Apis.Cloudchannel.v1.csproj b/Src/Generated/Google.Apis.Cloudchannel.v1/Google.Apis.Cloudchannel.v1.csproj index cabe731816..c52ed413fa 100644 --- a/Src/Generated/Google.Apis.Cloudchannel.v1/Google.Apis.Cloudchannel.v1.csproj +++ b/Src/Generated/Google.Apis.Cloudchannel.v1/Google.Apis.Cloudchannel.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Cloudchannel.v1 Client Library - 1.65.0.3295 + 1.66.0.3295 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Cloudchannel v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Clouderrorreporting.v1beta1/Google.Apis.Clouderrorreporting.v1beta1.csproj b/Src/Generated/Google.Apis.Clouderrorreporting.v1beta1/Google.Apis.Clouderrorreporting.v1beta1.csproj index dcc36f680e..4eb39cd719 100644 --- a/Src/Generated/Google.Apis.Clouderrorreporting.v1beta1/Google.Apis.Clouderrorreporting.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Clouderrorreporting.v1beta1/Google.Apis.Clouderrorreporting.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Clouderrorreporting.v1beta1 Client Library - 1.65.0.3231 + 1.66.0.3231 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Clouderrorreporting v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Compute.alpha/Google.Apis.Compute.alpha.csproj b/Src/Generated/Google.Apis.Compute.alpha/Google.Apis.Compute.alpha.csproj index 8c1ef2c723..aec7c9d45e 100644 --- a/Src/Generated/Google.Apis.Compute.alpha/Google.Apis.Compute.alpha.csproj +++ b/Src/Generated/Google.Apis.Compute.alpha/Google.Apis.Compute.alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.Compute.alpha Client Library - 1.65.0.3286 + 1.66.0.3286 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Compute alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Compute.beta/Google.Apis.Compute.beta.csproj b/Src/Generated/Google.Apis.Compute.beta/Google.Apis.Compute.beta.csproj index be139839d6..fd32b9a25c 100644 --- a/Src/Generated/Google.Apis.Compute.beta/Google.Apis.Compute.beta.csproj +++ b/Src/Generated/Google.Apis.Compute.beta/Google.Apis.Compute.beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Compute.beta Client Library - 1.65.0.3286 + 1.66.0.3286 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Compute beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Compute.v1/Google.Apis.Compute.v1.csproj b/Src/Generated/Google.Apis.Compute.v1/Google.Apis.Compute.v1.csproj index e6270c8e9d..e5d8801d38 100644 --- a/Src/Generated/Google.Apis.Compute.v1/Google.Apis.Compute.v1.csproj +++ b/Src/Generated/Google.Apis.Compute.v1/Google.Apis.Compute.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Compute.v1 Client Library - 1.65.0.3286 + 1.66.0.3286 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Compute v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Connectors.v1/Google.Apis.Connectors.v1.csproj b/Src/Generated/Google.Apis.Connectors.v1/Google.Apis.Connectors.v1.csproj index fcdc184ad9..df159090e6 100644 --- a/Src/Generated/Google.Apis.Connectors.v1/Google.Apis.Connectors.v1.csproj +++ b/Src/Generated/Google.Apis.Connectors.v1/Google.Apis.Connectors.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Connectors.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Connectors v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Connectors.v2/Google.Apis.Connectors.v2.csproj b/Src/Generated/Google.Apis.Connectors.v2/Google.Apis.Connectors.v2.csproj index 40e4b3976f..6d020ee992 100644 --- a/Src/Generated/Google.Apis.Connectors.v2/Google.Apis.Connectors.v2.csproj +++ b/Src/Generated/Google.Apis.Connectors.v2/Google.Apis.Connectors.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Connectors.v2 Client Library - 1.65.0.3268 + 1.66.0.3268 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Connectors v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Contactcenterinsights.v1/Google.Apis.Contactcenterinsights.v1.csproj b/Src/Generated/Google.Apis.Contactcenterinsights.v1/Google.Apis.Contactcenterinsights.v1.csproj index 853cded2fb..d2a84835c7 100644 --- a/Src/Generated/Google.Apis.Contactcenterinsights.v1/Google.Apis.Contactcenterinsights.v1.csproj +++ b/Src/Generated/Google.Apis.Contactcenterinsights.v1/Google.Apis.Contactcenterinsights.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Contactcenterinsights.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Contactcenterinsights v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Container.v1/Google.Apis.Container.v1.csproj b/Src/Generated/Google.Apis.Container.v1/Google.Apis.Container.v1.csproj index 8d11721470..9579b93733 100644 --- a/Src/Generated/Google.Apis.Container.v1/Google.Apis.Container.v1.csproj +++ b/Src/Generated/Google.Apis.Container.v1/Google.Apis.Container.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Container.v1 Client Library - 1.65.0.3247 + 1.66.0.3247 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Container v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Container.v1beta1/Google.Apis.Container.v1beta1.csproj b/Src/Generated/Google.Apis.Container.v1beta1/Google.Apis.Container.v1beta1.csproj index 5aab36055b..d620d2ad24 100644 --- a/Src/Generated/Google.Apis.Container.v1beta1/Google.Apis.Container.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Container.v1beta1/Google.Apis.Container.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Container.v1beta1 Client Library - 1.65.0.3259 + 1.66.0.3259 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Container v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ContainerAnalysis.v1/Google.Apis.ContainerAnalysis.v1.csproj b/Src/Generated/Google.Apis.ContainerAnalysis.v1/Google.Apis.ContainerAnalysis.v1.csproj index f4bd8f84bb..5d3bac659f 100644 --- a/Src/Generated/Google.Apis.ContainerAnalysis.v1/Google.Apis.ContainerAnalysis.v1.csproj +++ b/Src/Generated/Google.Apis.ContainerAnalysis.v1/Google.Apis.ContainerAnalysis.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ContainerAnalysis.v1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Containeranalysis v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ContainerAnalysis.v1alpha1/Google.Apis.ContainerAnalysis.v1alpha1.csproj b/Src/Generated/Google.Apis.ContainerAnalysis.v1alpha1/Google.Apis.ContainerAnalysis.v1alpha1.csproj index bb55d465c1..7fc0ed0cfb 100644 --- a/Src/Generated/Google.Apis.ContainerAnalysis.v1alpha1/Google.Apis.ContainerAnalysis.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.ContainerAnalysis.v1alpha1/Google.Apis.ContainerAnalysis.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.ContainerAnalysis.v1alpha1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Containeranalysis v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ContainerAnalysis.v1beta1/Google.Apis.ContainerAnalysis.v1beta1.csproj b/Src/Generated/Google.Apis.ContainerAnalysis.v1beta1/Google.Apis.ContainerAnalysis.v1beta1.csproj index ac3c1f004d..efefb58b5b 100644 --- a/Src/Generated/Google.Apis.ContainerAnalysis.v1beta1/Google.Apis.ContainerAnalysis.v1beta1.csproj +++ b/Src/Generated/Google.Apis.ContainerAnalysis.v1beta1/Google.Apis.ContainerAnalysis.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.ContainerAnalysis.v1beta1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Containeranalysis v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.CustomSearchAPI.v1/Google.Apis.CustomSearchAPI.v1.csproj b/Src/Generated/Google.Apis.CustomSearchAPI.v1/Google.Apis.CustomSearchAPI.v1.csproj index eff8687d1b..bf8e4008be 100644 --- a/Src/Generated/Google.Apis.CustomSearchAPI.v1/Google.Apis.CustomSearchAPI.v1.csproj +++ b/Src/Generated/Google.Apis.CustomSearchAPI.v1/Google.Apis.CustomSearchAPI.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.CustomSearchAPI.v1 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Customsearch v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.DLP.v2/Google.Apis.DLP.v2.csproj b/Src/Generated/Google.Apis.DLP.v2/Google.Apis.DLP.v2.csproj index c02eb6efc7..27cb19acda 100644 --- a/Src/Generated/Google.Apis.DLP.v2/Google.Apis.DLP.v2.csproj +++ b/Src/Generated/Google.Apis.DLP.v2/Google.Apis.DLP.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.DLP.v2 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Dlp v2 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DataCatalog.v1/Google.Apis.DataCatalog.v1.csproj b/Src/Generated/Google.Apis.DataCatalog.v1/Google.Apis.DataCatalog.v1.csproj index c35165cc9e..3401bed983 100644 --- a/Src/Generated/Google.Apis.DataCatalog.v1/Google.Apis.DataCatalog.v1.csproj +++ b/Src/Generated/Google.Apis.DataCatalog.v1/Google.Apis.DataCatalog.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.DataCatalog.v1 Client Library - 1.65.0.3283 + 1.66.0.3283 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datacatalog v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DataCatalog.v1beta1/Google.Apis.DataCatalog.v1beta1.csproj b/Src/Generated/Google.Apis.DataCatalog.v1beta1/Google.Apis.DataCatalog.v1beta1.csproj index 6a768b1635..92f481ac65 100644 --- a/Src/Generated/Google.Apis.DataCatalog.v1beta1/Google.Apis.DataCatalog.v1beta1.csproj +++ b/Src/Generated/Google.Apis.DataCatalog.v1beta1/Google.Apis.DataCatalog.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.DataCatalog.v1beta1 Client Library - 1.65.0.3283 + 1.66.0.3283 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datacatalog v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DataFusion.v1/Google.Apis.DataFusion.v1.csproj b/Src/Generated/Google.Apis.DataFusion.v1/Google.Apis.DataFusion.v1.csproj index bc6d24804d..d926640ea9 100644 --- a/Src/Generated/Google.Apis.DataFusion.v1/Google.Apis.DataFusion.v1.csproj +++ b/Src/Generated/Google.Apis.DataFusion.v1/Google.Apis.DataFusion.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.DataFusion.v1 Client Library - 1.65.0.3297 + 1.66.0.3297 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datafusion v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DataFusion.v1beta1/Google.Apis.DataFusion.v1beta1.csproj b/Src/Generated/Google.Apis.DataFusion.v1beta1/Google.Apis.DataFusion.v1beta1.csproj index 5e6b9e0aa9..4a0ab46ec5 100644 --- a/Src/Generated/Google.Apis.DataFusion.v1beta1/Google.Apis.DataFusion.v1beta1.csproj +++ b/Src/Generated/Google.Apis.DataFusion.v1beta1/Google.Apis.DataFusion.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.DataFusion.v1beta1 Client Library - 1.65.0.3297 + 1.66.0.3297 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datafusion v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DataLabeling.v1beta1/Google.Apis.DataLabeling.v1beta1.csproj b/Src/Generated/Google.Apis.DataLabeling.v1beta1/Google.Apis.DataLabeling.v1beta1.csproj index c6355130b9..f7ccdda8f5 100644 --- a/Src/Generated/Google.Apis.DataLabeling.v1beta1/Google.Apis.DataLabeling.v1beta1.csproj +++ b/Src/Generated/Google.Apis.DataLabeling.v1beta1/Google.Apis.DataLabeling.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.DataLabeling.v1beta1 Client Library - 1.65.0.3195 + 1.66.0.3195 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datalabeling v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DatabaseMigrationService.v1/Google.Apis.DatabaseMigrationService.v1.csproj b/Src/Generated/Google.Apis.DatabaseMigrationService.v1/Google.Apis.DatabaseMigrationService.v1.csproj index 466d9bb127..a0f930dffe 100644 --- a/Src/Generated/Google.Apis.DatabaseMigrationService.v1/Google.Apis.DatabaseMigrationService.v1.csproj +++ b/Src/Generated/Google.Apis.DatabaseMigrationService.v1/Google.Apis.DatabaseMigrationService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.DatabaseMigrationService.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datamigration v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DatabaseMigrationService.v1beta1/Google.Apis.DatabaseMigrationService.v1beta1.csproj b/Src/Generated/Google.Apis.DatabaseMigrationService.v1beta1/Google.Apis.DatabaseMigrationService.v1beta1.csproj index 1643c887b3..1a57be9ca5 100644 --- a/Src/Generated/Google.Apis.DatabaseMigrationService.v1beta1/Google.Apis.DatabaseMigrationService.v1beta1.csproj +++ b/Src/Generated/Google.Apis.DatabaseMigrationService.v1beta1/Google.Apis.DatabaseMigrationService.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.DatabaseMigrationService.v1beta1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datamigration v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dataflow.v1b3/Google.Apis.Dataflow.v1b3.csproj b/Src/Generated/Google.Apis.Dataflow.v1b3/Google.Apis.Dataflow.v1b3.csproj index 0a0f2090ca..7774a8e805 100644 --- a/Src/Generated/Google.Apis.Dataflow.v1b3/Google.Apis.Dataflow.v1b3.csproj +++ b/Src/Generated/Google.Apis.Dataflow.v1b3/Google.Apis.Dataflow.v1b3.csproj @@ -3,7 +3,7 @@ Google.Apis.Dataflow.v1b3 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dataflow v1b3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dataform.v1beta1/Google.Apis.Dataform.v1beta1.csproj b/Src/Generated/Google.Apis.Dataform.v1beta1/Google.Apis.Dataform.v1beta1.csproj index 95ccae0262..6af0b0153b 100644 --- a/Src/Generated/Google.Apis.Dataform.v1beta1/Google.Apis.Dataform.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Dataform.v1beta1/Google.Apis.Dataform.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Dataform.v1beta1 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dataform v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Datapipelines.v1/Google.Apis.Datapipelines.v1.csproj b/Src/Generated/Google.Apis.Datapipelines.v1/Google.Apis.Datapipelines.v1.csproj index f668b3f0f2..841030c548 100644 --- a/Src/Generated/Google.Apis.Datapipelines.v1/Google.Apis.Datapipelines.v1.csproj +++ b/Src/Generated/Google.Apis.Datapipelines.v1/Google.Apis.Datapipelines.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Datapipelines.v1 Client Library - 1.65.0.2900 + 1.66.0.2900 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datapipelines v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dataproc.v1/Google.Apis.Dataproc.v1.csproj b/Src/Generated/Google.Apis.Dataproc.v1/Google.Apis.Dataproc.v1.csproj index a3fae4b09f..0e0aa7d9e1 100644 --- a/Src/Generated/Google.Apis.Dataproc.v1/Google.Apis.Dataproc.v1.csproj +++ b/Src/Generated/Google.Apis.Dataproc.v1/Google.Apis.Dataproc.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Dataproc.v1 Client Library - 1.65.0.3262 + 1.66.0.3262 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Dataproc v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.cs b/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.cs index fcbc2fbba8..863f99a1a1 100644 --- a/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.cs +++ b/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.cs @@ -3220,21 +3220,6 @@ public class Query : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Plan for the query. - public class QueryPlan : Google.Apis.Requests.IDirectResponseSchema - { - /// - /// Planning phase information for the query. It will include: { "indexes_used": [ {"query_scope": "Collection", - /// "properties": "(foo ASC, __name__ ASC)"}, {"query_scope": "Collection", "properties": "(bar ASC, __name__ - /// ASC)"} ] } - /// - [Newtonsoft.Json.JsonPropertyAttribute("planInfo")] - public virtual System.Collections.Generic.IDictionary PlanInfo { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// A batch of results produced by a query. public class QueryResultBatch : Google.Apis.Requests.IDirectResponseSchema { @@ -3473,25 +3458,6 @@ public class ReserveIdsResponse : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Planning and execution statistics for the query. - public class ResultSetStats : Google.Apis.Requests.IDirectResponseSchema - { - /// Plan for the query. - [Newtonsoft.Json.JsonPropertyAttribute("queryPlan")] - public virtual QueryPlan QueryPlan { get; set; } - - /// - /// Aggregated statistics from the execution of the query. This will only be present when the request specifies - /// `PROFILE` mode. For example, a query will return the statistics including: { "results_returned": "20", - /// "documents_scanned": "20", "indexes_entries_scanned": "10050", "total_execution_time": "100.7 msecs" } - /// - [Newtonsoft.Json.JsonPropertyAttribute("queryStats")] - public virtual System.Collections.Generic.IDictionary QueryStats { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// The request for Datastore.Rollback. public class RollbackRequest : Google.Apis.Requests.IDirectResponseSchema { @@ -3535,13 +3501,6 @@ public class RunAggregationQueryRequest : Google.Apis.Requests.IDirectResponseSc [Newtonsoft.Json.JsonPropertyAttribute("gqlQuery")] public virtual GqlQuery GqlQuery { get; set; } - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single /// partition. This partition ID is normalized with the standard default context partition ID. @@ -3568,13 +3527,6 @@ public class RunAggregationQueryResponse : Google.Apis.Requests.IDirectResponseS [Newtonsoft.Json.JsonPropertyAttribute("query")] public virtual AggregationQuery Query { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL`. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// /// The identifier of the transaction that was started as part of this RunAggregationQuery request. Set only /// when ReadOptions.new_transaction was set in RunAggregationQueryRequest.read_options. @@ -3600,13 +3552,6 @@ public class RunQueryRequest : Google.Apis.Requests.IDirectResponseSchema [Newtonsoft.Json.JsonPropertyAttribute("gqlQuery")] public virtual GqlQuery GqlQuery { get; set; } - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single /// partition. This partition ID is normalized with the standard default context partition ID. @@ -3637,13 +3582,6 @@ public class RunQueryResponse : Google.Apis.Requests.IDirectResponseSchema [Newtonsoft.Json.JsonPropertyAttribute("query")] public virtual Query Query { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL`. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// /// The identifier of the transaction that was started as part of this RunQuery request. Set only when /// ReadOptions.new_transaction was set in RunQueryRequest.read_options. diff --git a/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.csproj b/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.csproj index 6d5f82515a..51b37e78e3 100644 --- a/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.csproj +++ b/Src/Generated/Google.Apis.Datastore.v1/Google.Apis.Datastore.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Datastore.v1 Client Library - 1.65.0.3295 + 1.66.0.3276 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Datastore v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Datastore.v1beta1/Google.Apis.Datastore.v1beta1.csproj b/Src/Generated/Google.Apis.Datastore.v1beta1/Google.Apis.Datastore.v1beta1.csproj index cc71720e22..0fde9abd16 100644 --- a/Src/Generated/Google.Apis.Datastore.v1beta1/Google.Apis.Datastore.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Datastore.v1beta1/Google.Apis.Datastore.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Datastore.v1beta1 Client Library - 1.65.0.3139 + 1.66.0.3139 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datastore v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.cs b/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.cs index 97e33148a7..24687802fa 100644 --- a/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.cs +++ b/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.cs @@ -2278,21 +2278,6 @@ public class Query : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Plan for the query. - public class QueryPlan : Google.Apis.Requests.IDirectResponseSchema - { - /// - /// Planning phase information for the query. It will include: { "indexes_used": [ {"query_scope": "Collection", - /// "properties": "(foo ASC, __name__ ASC)"}, {"query_scope": "Collection", "properties": "(bar ASC, __name__ - /// ASC)"} ] } - /// - [Newtonsoft.Json.JsonPropertyAttribute("planInfo")] - public virtual System.Collections.Generic.IDictionary PlanInfo { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// A batch of results produced by a query. public class QueryResultBatch : Google.Apis.Requests.IDirectResponseSchema { @@ -2524,25 +2509,6 @@ public class ReserveIdsResponse : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Planning and execution statistics for the query. - public class ResultSetStats : Google.Apis.Requests.IDirectResponseSchema - { - /// Plan for the query. - [Newtonsoft.Json.JsonPropertyAttribute("queryPlan")] - public virtual QueryPlan QueryPlan { get; set; } - - /// - /// Aggregated statistics from the execution of the query. This will only be present when the request specifies - /// `PROFILE` mode. For example, a query will return the statistics including: { "results_returned": "20", - /// "documents_scanned": "20", "indexes_entries_scanned": "10050", "total_execution_time": "100.7 msecs" } - /// - [Newtonsoft.Json.JsonPropertyAttribute("queryStats")] - public virtual System.Collections.Generic.IDictionary QueryStats { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// The request for Datastore.Rollback. public class RollbackRequest : Google.Apis.Requests.IDirectResponseSchema { @@ -2572,13 +2538,6 @@ public class RunAggregationQueryRequest : Google.Apis.Requests.IDirectResponseSc [Newtonsoft.Json.JsonPropertyAttribute("gqlQuery")] public virtual GqlQuery GqlQuery { get; set; } - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single /// partition. This partition ID is normalized with the standard default context partition ID. @@ -2605,13 +2564,6 @@ public class RunAggregationQueryResponse : Google.Apis.Requests.IDirectResponseS [Newtonsoft.Json.JsonPropertyAttribute("query")] public virtual AggregationQuery Query { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL`. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// The ETag of the item. public virtual string ETag { get; set; } } @@ -2623,13 +2575,6 @@ public class RunQueryRequest : Google.Apis.Requests.IDirectResponseSchema [Newtonsoft.Json.JsonPropertyAttribute("gqlQuery")] public virtual GqlQuery GqlQuery { get; set; } - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single /// partition. This partition ID is normalized with the standard default context partition ID. @@ -2660,13 +2605,6 @@ public class RunQueryResponse : Google.Apis.Requests.IDirectResponseSchema [Newtonsoft.Json.JsonPropertyAttribute("query")] public virtual Query Query { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL`. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// The ETag of the item. public virtual string ETag { get; set; } } diff --git a/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.csproj b/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.csproj index ce1419f8f7..cecf35634d 100644 --- a/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.csproj +++ b/Src/Generated/Google.Apis.Datastore.v1beta3/Google.Apis.Datastore.v1beta3.csproj @@ -3,7 +3,7 @@ Google.Apis.Datastore.v1beta3 Client Library - 1.65.0.3295 + 1.66.0.3276 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datastore v1beta3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Datastream.v1/Google.Apis.Datastream.v1.csproj b/Src/Generated/Google.Apis.Datastream.v1/Google.Apis.Datastream.v1.csproj index bd90f53994..1dabbeff02 100644 --- a/Src/Generated/Google.Apis.Datastream.v1/Google.Apis.Datastream.v1.csproj +++ b/Src/Generated/Google.Apis.Datastream.v1/Google.Apis.Datastream.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Datastream.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datastream v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Datastream.v1alpha1/Google.Apis.Datastream.v1alpha1.csproj b/Src/Generated/Google.Apis.Datastream.v1alpha1/Google.Apis.Datastream.v1alpha1.csproj index a9759c2041..f28f958273 100644 --- a/Src/Generated/Google.Apis.Datastream.v1alpha1/Google.Apis.Datastream.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.Datastream.v1alpha1/Google.Apis.Datastream.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.Datastream.v1alpha1 Client Library - 1.65.0.3135 + 1.66.0.3135 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Datastream v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DeploymentManager.alpha/Google.Apis.DeploymentManager.alpha.csproj b/Src/Generated/Google.Apis.DeploymentManager.alpha/Google.Apis.DeploymentManager.alpha.csproj index c8a0900688..67c5139500 100644 --- a/Src/Generated/Google.Apis.DeploymentManager.alpha/Google.Apis.DeploymentManager.alpha.csproj +++ b/Src/Generated/Google.Apis.DeploymentManager.alpha/Google.Apis.DeploymentManager.alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.DeploymentManager.alpha Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Deploymentmanager alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DeploymentManager.v2/Google.Apis.DeploymentManager.v2.csproj b/Src/Generated/Google.Apis.DeploymentManager.v2/Google.Apis.DeploymentManager.v2.csproj index 4ee3d7ebfc..a59c54c6a4 100644 --- a/Src/Generated/Google.Apis.DeploymentManager.v2/Google.Apis.DeploymentManager.v2.csproj +++ b/Src/Generated/Google.Apis.DeploymentManager.v2/Google.Apis.DeploymentManager.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.DeploymentManager.v2 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Deploymentmanager v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DeploymentManager.v2beta/Google.Apis.DeploymentManager.v2beta.csproj b/Src/Generated/Google.Apis.DeploymentManager.v2beta/Google.Apis.DeploymentManager.v2beta.csproj index 1b8ac9af5b..801f634b49 100644 --- a/Src/Generated/Google.Apis.DeploymentManager.v2beta/Google.Apis.DeploymentManager.v2beta.csproj +++ b/Src/Generated/Google.Apis.DeploymentManager.v2beta/Google.Apis.DeploymentManager.v2beta.csproj @@ -3,7 +3,7 @@ Google.Apis.DeploymentManager.v2beta Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Deploymentmanager v2beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dfareporting.v3_5/Google.Apis.Dfareporting.v3_5.csproj b/Src/Generated/Google.Apis.Dfareporting.v3_5/Google.Apis.Dfareporting.v3_5.csproj index 3046877778..b87a94cffb 100644 --- a/Src/Generated/Google.Apis.Dfareporting.v3_5/Google.Apis.Dfareporting.v3_5.csproj +++ b/Src/Generated/Google.Apis.Dfareporting.v3_5/Google.Apis.Dfareporting.v3_5.csproj @@ -3,7 +3,7 @@ Google.Apis.Dfareporting.v3_5 Client Library - 1.65.0.3064 + 1.66.0.3064 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dfareporting v3.5. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dfareporting.v4/Google.Apis.Dfareporting.v4.csproj b/Src/Generated/Google.Apis.Dfareporting.v4/Google.Apis.Dfareporting.v4.csproj index 5a9274ed56..96fdecd5ca 100644 --- a/Src/Generated/Google.Apis.Dfareporting.v4/Google.Apis.Dfareporting.v4.csproj +++ b/Src/Generated/Google.Apis.Dfareporting.v4/Google.Apis.Dfareporting.v4.csproj @@ -3,7 +3,7 @@ Google.Apis.Dfareporting.v4 Client Library - 1.65.0.3182 + 1.66.0.3182 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dfareporting v4. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dialogflow.v2/Google.Apis.Dialogflow.v2.csproj b/Src/Generated/Google.Apis.Dialogflow.v2/Google.Apis.Dialogflow.v2.csproj index 2b6f04d2bd..c2a2c6d854 100644 --- a/Src/Generated/Google.Apis.Dialogflow.v2/Google.Apis.Dialogflow.v2.csproj +++ b/Src/Generated/Google.Apis.Dialogflow.v2/Google.Apis.Dialogflow.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Dialogflow.v2 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dialogflow v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dialogflow.v2beta1/Google.Apis.Dialogflow.v2beta1.csproj b/Src/Generated/Google.Apis.Dialogflow.v2beta1/Google.Apis.Dialogflow.v2beta1.csproj index fc42f50d55..ad7cd538bf 100644 --- a/Src/Generated/Google.Apis.Dialogflow.v2beta1/Google.Apis.Dialogflow.v2beta1.csproj +++ b/Src/Generated/Google.Apis.Dialogflow.v2beta1/Google.Apis.Dialogflow.v2beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Dialogflow.v2beta1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dialogflow v2beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dialogflow.v3/Google.Apis.Dialogflow.v3.csproj b/Src/Generated/Google.Apis.Dialogflow.v3/Google.Apis.Dialogflow.v3.csproj index eff3f2b68d..0823bf83b2 100644 --- a/Src/Generated/Google.Apis.Dialogflow.v3/Google.Apis.Dialogflow.v3.csproj +++ b/Src/Generated/Google.Apis.Dialogflow.v3/Google.Apis.Dialogflow.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Dialogflow.v3 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dialogflow v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dialogflow.v3beta1/Google.Apis.Dialogflow.v3beta1.csproj b/Src/Generated/Google.Apis.Dialogflow.v3beta1/Google.Apis.Dialogflow.v3beta1.csproj index 9c32cacd3b..136ae998e4 100644 --- a/Src/Generated/Google.Apis.Dialogflow.v3beta1/Google.Apis.Dialogflow.v3beta1.csproj +++ b/Src/Generated/Google.Apis.Dialogflow.v3beta1/Google.Apis.Dialogflow.v3beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Dialogflow.v3beta1 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dialogflow v3beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Digitalassetlinks.v1/Google.Apis.Digitalassetlinks.v1.csproj b/Src/Generated/Google.Apis.Digitalassetlinks.v1/Google.Apis.Digitalassetlinks.v1.csproj index 6962cea94a..2f9978e076 100644 --- a/Src/Generated/Google.Apis.Digitalassetlinks.v1/Google.Apis.Digitalassetlinks.v1.csproj +++ b/Src/Generated/Google.Apis.Digitalassetlinks.v1/Google.Apis.Digitalassetlinks.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Digitalassetlinks.v1 Client Library - 1.65.0.2578 + 1.66.0.2578 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Digitalassetlinks v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.Discovery.v1/Google.Apis.Discovery.v1.csproj b/Src/Generated/Google.Apis.Discovery.v1/Google.Apis.Discovery.v1.csproj index 5110c9e65c..8bdc52b2fa 100644 --- a/Src/Generated/Google.Apis.Discovery.v1/Google.Apis.Discovery.v1.csproj +++ b/Src/Generated/Google.Apis.Discovery.v1/Google.Apis.Discovery.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Discovery.v1 Client Library - 1.65.0.0 + 1.66.0.0 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Discovery v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.DiscoveryEngine.v1alpha/Google.Apis.DiscoveryEngine.v1alpha.csproj b/Src/Generated/Google.Apis.DiscoveryEngine.v1alpha/Google.Apis.DiscoveryEngine.v1alpha.csproj index 0bf5e974a4..cceccfcd90 100644 --- a/Src/Generated/Google.Apis.DiscoveryEngine.v1alpha/Google.Apis.DiscoveryEngine.v1alpha.csproj +++ b/Src/Generated/Google.Apis.DiscoveryEngine.v1alpha/Google.Apis.DiscoveryEngine.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.DiscoveryEngine.v1alpha Client Library - 1.65.0.3294 + 1.66.0.3297 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Discoveryengine v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DiscoveryEngine.v1beta/Google.Apis.DiscoveryEngine.v1beta.csproj b/Src/Generated/Google.Apis.DiscoveryEngine.v1beta/Google.Apis.DiscoveryEngine.v1beta.csproj index 76071d96a4..550ba6c36b 100644 --- a/Src/Generated/Google.Apis.DiscoveryEngine.v1beta/Google.Apis.DiscoveryEngine.v1beta.csproj +++ b/Src/Generated/Google.Apis.DiscoveryEngine.v1beta/Google.Apis.DiscoveryEngine.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.DiscoveryEngine.v1beta Client Library - 1.65.0.3294 + 1.66.0.3297 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Discoveryengine v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DisplayVideo.v1/Google.Apis.DisplayVideo.v1.csproj b/Src/Generated/Google.Apis.DisplayVideo.v1/Google.Apis.DisplayVideo.v1.csproj index 4f85f631df..ec0d6593dd 100644 --- a/Src/Generated/Google.Apis.DisplayVideo.v1/Google.Apis.DisplayVideo.v1.csproj +++ b/Src/Generated/Google.Apis.DisplayVideo.v1/Google.Apis.DisplayVideo.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.DisplayVideo.v1 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Displayvideo v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DisplayVideo.v2/Google.Apis.DisplayVideo.v2.csproj b/Src/Generated/Google.Apis.DisplayVideo.v2/Google.Apis.DisplayVideo.v2.csproj index 28e41f4d8a..312896bab5 100644 --- a/Src/Generated/Google.Apis.DisplayVideo.v2/Google.Apis.DisplayVideo.v2.csproj +++ b/Src/Generated/Google.Apis.DisplayVideo.v2/Google.Apis.DisplayVideo.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.DisplayVideo.v2 Client Library - 1.65.0.3297 + 1.66.0.3297 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Displayvideo v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DisplayVideo.v3/Google.Apis.DisplayVideo.v3.csproj b/Src/Generated/Google.Apis.DisplayVideo.v3/Google.Apis.DisplayVideo.v3.csproj index 6a54a117be..30ba8384c2 100644 --- a/Src/Generated/Google.Apis.DisplayVideo.v3/Google.Apis.DisplayVideo.v3.csproj +++ b/Src/Generated/Google.Apis.DisplayVideo.v3/Google.Apis.DisplayVideo.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.DisplayVideo.v3 Client Library - 1.65.0.3297 + 1.66.0.3297 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Displayvideo v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dns.v1/Google.Apis.Dns.v1.csproj b/Src/Generated/Google.Apis.Dns.v1/Google.Apis.Dns.v1.csproj index e985d73989..a9032572de 100644 --- a/Src/Generated/Google.Apis.Dns.v1/Google.Apis.Dns.v1.csproj +++ b/Src/Generated/Google.Apis.Dns.v1/Google.Apis.Dns.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Dns.v1 Client Library - 1.65.0.3273 + 1.66.0.3273 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dns v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Dns.v1beta2/Google.Apis.Dns.v1beta2.csproj b/Src/Generated/Google.Apis.Dns.v1beta2/Google.Apis.Dns.v1beta2.csproj index 17167efc07..1ca7b4fe3f 100644 --- a/Src/Generated/Google.Apis.Dns.v1beta2/Google.Apis.Dns.v1beta2.csproj +++ b/Src/Generated/Google.Apis.Dns.v1beta2/Google.Apis.Dns.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.Dns.v1beta2 Client Library - 1.65.0.3273 + 1.66.0.3273 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Dns v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Docs.v1/Google.Apis.Docs.v1.csproj b/Src/Generated/Google.Apis.Docs.v1/Google.Apis.Docs.v1.csproj index 9db5353d12..776a43a1a4 100644 --- a/Src/Generated/Google.Apis.Docs.v1/Google.Apis.Docs.v1.csproj +++ b/Src/Generated/Google.Apis.Docs.v1/Google.Apis.Docs.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Docs.v1 Client Library - 1.65.0.3193 + 1.66.0.3193 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Docs v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Document.v1/Google.Apis.Document.v1.csproj b/Src/Generated/Google.Apis.Document.v1/Google.Apis.Document.v1.csproj index c33d641c5b..c690da73f0 100644 --- a/Src/Generated/Google.Apis.Document.v1/Google.Apis.Document.v1.csproj +++ b/Src/Generated/Google.Apis.Document.v1/Google.Apis.Document.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Document.v1 Client Library - 1.65.0.3241 + 1.66.0.3241 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Documentai v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Document.v1beta2/Google.Apis.Document.v1beta2.csproj b/Src/Generated/Google.Apis.Document.v1beta2/Google.Apis.Document.v1beta2.csproj index d485c83325..d413f07417 100644 --- a/Src/Generated/Google.Apis.Document.v1beta2/Google.Apis.Document.v1beta2.csproj +++ b/Src/Generated/Google.Apis.Document.v1beta2/Google.Apis.Document.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.Document.v1beta2 Client Library - 1.65.0.3241 + 1.66.0.3241 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Documentai v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Document.v1beta3/Google.Apis.Document.v1beta3.csproj b/Src/Generated/Google.Apis.Document.v1beta3/Google.Apis.Document.v1beta3.csproj index 55e8ddb0e9..e43a61f0d3 100644 --- a/Src/Generated/Google.Apis.Document.v1beta3/Google.Apis.Document.v1beta3.csproj +++ b/Src/Generated/Google.Apis.Document.v1beta3/Google.Apis.Document.v1beta3.csproj @@ -3,7 +3,7 @@ Google.Apis.Document.v1beta3 Client Library - 1.65.0.3255 + 1.66.0.3255 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Documentai v1beta3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DomainsRDAP.v1/Google.Apis.DomainsRDAP.v1.csproj b/Src/Generated/Google.Apis.DomainsRDAP.v1/Google.Apis.DomainsRDAP.v1.csproj index 839b6e7c76..78161776f4 100644 --- a/Src/Generated/Google.Apis.DomainsRDAP.v1/Google.Apis.DomainsRDAP.v1.csproj +++ b/Src/Generated/Google.Apis.DomainsRDAP.v1/Google.Apis.DomainsRDAP.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.DomainsRDAP.v1 Client Library - 1.65.0.2239 + 1.66.0.2239 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Domainsrdap v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.DoubleClickBidManager.v2/Google.Apis.DoubleClickBidManager.v2.csproj b/Src/Generated/Google.Apis.DoubleClickBidManager.v2/Google.Apis.DoubleClickBidManager.v2.csproj index fa38aff290..9af3c71889 100644 --- a/Src/Generated/Google.Apis.DoubleClickBidManager.v2/Google.Apis.DoubleClickBidManager.v2.csproj +++ b/Src/Generated/Google.Apis.DoubleClickBidManager.v2/Google.Apis.DoubleClickBidManager.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.DoubleClickBidManager.v2 Client Library - 1.65.0.3105 + 1.66.0.3105 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Doubleclickbidmanager v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Doubleclicksearch.v2/Google.Apis.Doubleclicksearch.v2.csproj b/Src/Generated/Google.Apis.Doubleclicksearch.v2/Google.Apis.Doubleclicksearch.v2.csproj index 67fd526878..76759c1033 100644 --- a/Src/Generated/Google.Apis.Doubleclicksearch.v2/Google.Apis.Doubleclicksearch.v2.csproj +++ b/Src/Generated/Google.Apis.Doubleclicksearch.v2/Google.Apis.Doubleclicksearch.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Doubleclicksearch.v2 Client Library - 1.65.0.3211 + 1.66.0.3211 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Doubleclicksearch v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Drive.v2/Google.Apis.Drive.v2.csproj b/Src/Generated/Google.Apis.Drive.v2/Google.Apis.Drive.v2.csproj index d99dc64985..6b3da76e23 100644 --- a/Src/Generated/Google.Apis.Drive.v2/Google.Apis.Drive.v2.csproj +++ b/Src/Generated/Google.Apis.Drive.v2/Google.Apis.Drive.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Drive.v2 Client Library - 1.65.0.3296 + 1.66.0.3296 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Drive v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Drive.v3/Google.Apis.Drive.v3.csproj b/Src/Generated/Google.Apis.Drive.v3/Google.Apis.Drive.v3.csproj index 8555911983..b84a78cd99 100644 --- a/Src/Generated/Google.Apis.Drive.v3/Google.Apis.Drive.v3.csproj +++ b/Src/Generated/Google.Apis.Drive.v3/Google.Apis.Drive.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Drive.v3 Client Library - 1.65.0.3296 + 1.66.0.3296 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Drive v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DriveActivity.v2/Google.Apis.DriveActivity.v2.csproj b/Src/Generated/Google.Apis.DriveActivity.v2/Google.Apis.DriveActivity.v2.csproj index 7ec71cd101..2b0bdd9816 100644 --- a/Src/Generated/Google.Apis.DriveActivity.v2/Google.Apis.DriveActivity.v2.csproj +++ b/Src/Generated/Google.Apis.DriveActivity.v2/Google.Apis.DriveActivity.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.DriveActivity.v2 Client Library - 1.65.0.3106 + 1.66.0.3106 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Driveactivity v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DriveLabels.v2/Google.Apis.DriveLabels.v2.csproj b/Src/Generated/Google.Apis.DriveLabels.v2/Google.Apis.DriveLabels.v2.csproj index 11c73c11b2..4ab4218bc4 100644 --- a/Src/Generated/Google.Apis.DriveLabels.v2/Google.Apis.DriveLabels.v2.csproj +++ b/Src/Generated/Google.Apis.DriveLabels.v2/Google.Apis.DriveLabels.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.DriveLabels.v2 Client Library - 1.65.0.3273 + 1.66.0.3273 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Drivelabels v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.DriveLabels.v2beta/Google.Apis.DriveLabels.v2beta.csproj b/Src/Generated/Google.Apis.DriveLabels.v2beta/Google.Apis.DriveLabels.v2beta.csproj index 5bf3137558..4b47ec7e43 100644 --- a/Src/Generated/Google.Apis.DriveLabels.v2beta/Google.Apis.DriveLabels.v2beta.csproj +++ b/Src/Generated/Google.Apis.DriveLabels.v2beta/Google.Apis.DriveLabels.v2beta.csproj @@ -3,7 +3,7 @@ Google.Apis.DriveLabels.v2beta Client Library - 1.65.0.3273 + 1.66.0.3273 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Drivelabels v2beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Essentialcontacts.v1/Google.Apis.Essentialcontacts.v1.csproj b/Src/Generated/Google.Apis.Essentialcontacts.v1/Google.Apis.Essentialcontacts.v1.csproj index a638790fb5..675c766f1a 100644 --- a/Src/Generated/Google.Apis.Essentialcontacts.v1/Google.Apis.Essentialcontacts.v1.csproj +++ b/Src/Generated/Google.Apis.Essentialcontacts.v1/Google.Apis.Essentialcontacts.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Essentialcontacts.v1 Client Library - 1.65.0.2861 + 1.66.0.2861 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Essentialcontacts v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Eventarc.v1/Google.Apis.Eventarc.v1.csproj b/Src/Generated/Google.Apis.Eventarc.v1/Google.Apis.Eventarc.v1.csproj index ff14b8272b..bf1623d124 100644 --- a/Src/Generated/Google.Apis.Eventarc.v1/Google.Apis.Eventarc.v1.csproj +++ b/Src/Generated/Google.Apis.Eventarc.v1/Google.Apis.Eventarc.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Eventarc.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Eventarc v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Eventarc.v1beta1/Google.Apis.Eventarc.v1beta1.csproj b/Src/Generated/Google.Apis.Eventarc.v1beta1/Google.Apis.Eventarc.v1beta1.csproj index 6fe31f9f65..6874e8bad9 100644 --- a/Src/Generated/Google.Apis.Eventarc.v1beta1/Google.Apis.Eventarc.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Eventarc.v1beta1/Google.Apis.Eventarc.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Eventarc.v1beta1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Eventarc v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FactCheckTools.v1alpha1/Google.Apis.FactCheckTools.v1alpha1.csproj b/Src/Generated/Google.Apis.FactCheckTools.v1alpha1/Google.Apis.FactCheckTools.v1alpha1.csproj index 3acf056b6c..443d464549 100644 --- a/Src/Generated/Google.Apis.FactCheckTools.v1alpha1/Google.Apis.FactCheckTools.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.FactCheckTools.v1alpha1/Google.Apis.FactCheckTools.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.FactCheckTools.v1alpha1 Client Library - 1.65.0.2632 + 1.66.0.2632 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Factchecktools v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Fcmdata.v1beta1/Google.Apis.Fcmdata.v1beta1.csproj b/Src/Generated/Google.Apis.Fcmdata.v1beta1/Google.Apis.Fcmdata.v1beta1.csproj index 0478b7d909..dffb0a7520 100644 --- a/Src/Generated/Google.Apis.Fcmdata.v1beta1/Google.Apis.Fcmdata.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Fcmdata.v1beta1/Google.Apis.Fcmdata.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Fcmdata.v1beta1 Client Library - 1.65.0.2651 + 1.66.0.2651 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Fcmdata v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseAppDistribution.v1/Google.Apis.FirebaseAppDistribution.v1.csproj b/Src/Generated/Google.Apis.FirebaseAppDistribution.v1/Google.Apis.FirebaseAppDistribution.v1.csproj index 51ae8b444c..58a0d79f29 100644 --- a/Src/Generated/Google.Apis.FirebaseAppDistribution.v1/Google.Apis.FirebaseAppDistribution.v1.csproj +++ b/Src/Generated/Google.Apis.FirebaseAppDistribution.v1/Google.Apis.FirebaseAppDistribution.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseAppDistribution.v1 Client Library - 1.65.0.3142 + 1.66.0.3142 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebaseappdistribution v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseAppDistribution.v1alpha/Google.Apis.FirebaseAppDistribution.v1alpha.csproj b/Src/Generated/Google.Apis.FirebaseAppDistribution.v1alpha/Google.Apis.FirebaseAppDistribution.v1alpha.csproj index 25fb774b8c..79ffaf8772 100644 --- a/Src/Generated/Google.Apis.FirebaseAppDistribution.v1alpha/Google.Apis.FirebaseAppDistribution.v1alpha.csproj +++ b/Src/Generated/Google.Apis.FirebaseAppDistribution.v1alpha/Google.Apis.FirebaseAppDistribution.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseAppDistribution.v1alpha Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebaseappdistribution v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseCloudMessaging.v1/Google.Apis.FirebaseCloudMessaging.v1.csproj b/Src/Generated/Google.Apis.FirebaseCloudMessaging.v1/Google.Apis.FirebaseCloudMessaging.v1.csproj index 4b5c37e8cf..396293dc56 100644 --- a/Src/Generated/Google.Apis.FirebaseCloudMessaging.v1/Google.Apis.FirebaseCloudMessaging.v1.csproj +++ b/Src/Generated/Google.Apis.FirebaseCloudMessaging.v1/Google.Apis.FirebaseCloudMessaging.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseCloudMessaging.v1 Client Library - 1.65.0.3098 + 1.66.0.3098 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Fcm v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseDynamicLinks.v1/Google.Apis.FirebaseDynamicLinks.v1.csproj b/Src/Generated/Google.Apis.FirebaseDynamicLinks.v1/Google.Apis.FirebaseDynamicLinks.v1.csproj index 598e3603b8..28b2a281c8 100644 --- a/Src/Generated/Google.Apis.FirebaseDynamicLinks.v1/Google.Apis.FirebaseDynamicLinks.v1.csproj +++ b/Src/Generated/Google.Apis.FirebaseDynamicLinks.v1/Google.Apis.FirebaseDynamicLinks.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseDynamicLinks.v1 Client Library - 1.65.0.3232 + 1.66.0.3232 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebasedynamiclinks v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseHosting.v1/Google.Apis.FirebaseHosting.v1.csproj b/Src/Generated/Google.Apis.FirebaseHosting.v1/Google.Apis.FirebaseHosting.v1.csproj index 65dc434699..90bebef8e8 100644 --- a/Src/Generated/Google.Apis.FirebaseHosting.v1/Google.Apis.FirebaseHosting.v1.csproj +++ b/Src/Generated/Google.Apis.FirebaseHosting.v1/Google.Apis.FirebaseHosting.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseHosting.v1 Client Library - 1.65.0.3177 + 1.66.0.3177 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebasehosting v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseHosting.v1beta1/Google.Apis.FirebaseHosting.v1beta1.csproj b/Src/Generated/Google.Apis.FirebaseHosting.v1beta1/Google.Apis.FirebaseHosting.v1beta1.csproj index 729b0d3c81..39409fcce8 100644 --- a/Src/Generated/Google.Apis.FirebaseHosting.v1beta1/Google.Apis.FirebaseHosting.v1beta1.csproj +++ b/Src/Generated/Google.Apis.FirebaseHosting.v1beta1/Google.Apis.FirebaseHosting.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseHosting.v1beta1 Client Library - 1.65.0.3177 + 1.66.0.3177 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebasehosting v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseML.v1/Google.Apis.FirebaseML.v1.csproj b/Src/Generated/Google.Apis.FirebaseML.v1/Google.Apis.FirebaseML.v1.csproj index f9b982f2f8..c770ecdad9 100644 --- a/Src/Generated/Google.Apis.FirebaseML.v1/Google.Apis.FirebaseML.v1.csproj +++ b/Src/Generated/Google.Apis.FirebaseML.v1/Google.Apis.FirebaseML.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseML.v1 Client Library - 1.65.0.3135 + 1.66.0.3135 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebaseml v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseML.v1beta2/Google.Apis.FirebaseML.v1beta2.csproj b/Src/Generated/Google.Apis.FirebaseML.v1beta2/Google.Apis.FirebaseML.v1beta2.csproj index bdbfb7a5be..08a9fb757e 100644 --- a/Src/Generated/Google.Apis.FirebaseML.v1beta2/Google.Apis.FirebaseML.v1beta2.csproj +++ b/Src/Generated/Google.Apis.FirebaseML.v1beta2/Google.Apis.FirebaseML.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseML.v1beta2 Client Library - 1.65.0.3135 + 1.66.0.3135 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebaseml v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseManagement.v1beta1/Google.Apis.FirebaseManagement.v1beta1.csproj b/Src/Generated/Google.Apis.FirebaseManagement.v1beta1/Google.Apis.FirebaseManagement.v1beta1.csproj index 45324f94d8..5baa2e8a8c 100644 --- a/Src/Generated/Google.Apis.FirebaseManagement.v1beta1/Google.Apis.FirebaseManagement.v1beta1.csproj +++ b/Src/Generated/Google.Apis.FirebaseManagement.v1beta1/Google.Apis.FirebaseManagement.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseManagement.v1beta1 Client Library - 1.65.0.3182 + 1.66.0.3182 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebase v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseRealtimeDatabase.v1beta/Google.Apis.FirebaseRealtimeDatabase.v1beta.csproj b/Src/Generated/Google.Apis.FirebaseRealtimeDatabase.v1beta/Google.Apis.FirebaseRealtimeDatabase.v1beta.csproj index 361fbe008a..70b0896033 100644 --- a/Src/Generated/Google.Apis.FirebaseRealtimeDatabase.v1beta/Google.Apis.FirebaseRealtimeDatabase.v1beta.csproj +++ b/Src/Generated/Google.Apis.FirebaseRealtimeDatabase.v1beta/Google.Apis.FirebaseRealtimeDatabase.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseRealtimeDatabase.v1beta Client Library - 1.65.0.2911 + 1.66.0.2911 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebasedatabase v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.FirebaseRules.v1/Google.Apis.FirebaseRules.v1.csproj b/Src/Generated/Google.Apis.FirebaseRules.v1/Google.Apis.FirebaseRules.v1.csproj index 1a306a07b5..7e568b7b59 100644 --- a/Src/Generated/Google.Apis.FirebaseRules.v1/Google.Apis.FirebaseRules.v1.csproj +++ b/Src/Generated/Google.Apis.FirebaseRules.v1/Google.Apis.FirebaseRules.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.FirebaseRules.v1 Client Library - 1.65.0.3245 + 1.66.0.3245 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebaserules v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Firebaseappcheck.v1/Google.Apis.Firebaseappcheck.v1.csproj b/Src/Generated/Google.Apis.Firebaseappcheck.v1/Google.Apis.Firebaseappcheck.v1.csproj index 12fffc5c5f..c3110bcf46 100644 --- a/Src/Generated/Google.Apis.Firebaseappcheck.v1/Google.Apis.Firebaseappcheck.v1.csproj +++ b/Src/Generated/Google.Apis.Firebaseappcheck.v1/Google.Apis.Firebaseappcheck.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Firebaseappcheck.v1 Client Library - 1.65.0.3203 + 1.66.0.3203 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebaseappcheck v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Firebaseappcheck.v1beta/Google.Apis.Firebaseappcheck.v1beta.csproj b/Src/Generated/Google.Apis.Firebaseappcheck.v1beta/Google.Apis.Firebaseappcheck.v1beta.csproj index c981a6a478..13a60779d5 100644 --- a/Src/Generated/Google.Apis.Firebaseappcheck.v1beta/Google.Apis.Firebaseappcheck.v1beta.csproj +++ b/Src/Generated/Google.Apis.Firebaseappcheck.v1beta/Google.Apis.Firebaseappcheck.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Firebaseappcheck.v1beta Client Library - 1.65.0.3259 + 1.66.0.3259 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebaseappcheck v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Firebasestorage.v1beta/Google.Apis.Firebasestorage.v1beta.csproj b/Src/Generated/Google.Apis.Firebasestorage.v1beta/Google.Apis.Firebasestorage.v1beta.csproj index 0837fd9c91..005f3ac9e1 100644 --- a/Src/Generated/Google.Apis.Firebasestorage.v1beta/Google.Apis.Firebasestorage.v1beta.csproj +++ b/Src/Generated/Google.Apis.Firebasestorage.v1beta/Google.Apis.Firebasestorage.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Firebasestorage.v1beta Client Library - 1.65.0.3158 + 1.66.0.3158 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firebasestorage v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.cs b/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.cs index bc2594fcb8..5d5b07aba3 100644 --- a/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.cs +++ b/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.cs @@ -6715,7 +6715,7 @@ public class Order : Google.Apis.Requests.IDirectResponseSchema [Newtonsoft.Json.JsonPropertyAttribute("direction")] public virtual string Direction { get; set; } - /// The field to order by. + /// Order based on the value referenced by this field. [Newtonsoft.Json.JsonPropertyAttribute("field")] public virtual FieldReference Field { get; set; } @@ -6900,21 +6900,6 @@ public class Projection : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Plan for the query. - public class QueryPlan : Google.Apis.Requests.IDirectResponseSchema - { - /// - /// Planning phase information for the query. It will include: { "indexes_used": [ {"query_scope": "Collection", - /// "properties": "(foo ASC, __name__ ASC)"}, {"query_scope": "Collection", "properties": "(bar ASC, __name__ - /// ASC)"} ] } - /// - [Newtonsoft.Json.JsonPropertyAttribute("planInfo")] - public virtual System.Collections.Generic.IDictionary PlanInfo { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// A target specified by a query. public class QueryTarget : Google.Apis.Requests.IDirectResponseSchema { @@ -6997,25 +6982,6 @@ public class ReadWrite : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Planning and execution statistics for the query. - public class ResultSetStats : Google.Apis.Requests.IDirectResponseSchema - { - /// Plan for the query. - [Newtonsoft.Json.JsonPropertyAttribute("queryPlan")] - public virtual QueryPlan QueryPlan { get; set; } - - /// - /// Aggregated statistics from the execution of the query. This will only be present when the request specifies - /// `PROFILE` mode. For example, a query will return the statistics including: { "results_returned": "20", - /// "documents_scanned": "20", "indexes_entries_scanned": "10050", "total_execution_time": "100.7 msecs" } - /// - [Newtonsoft.Json.JsonPropertyAttribute("queryStats")] - public virtual System.Collections.Generic.IDictionary QueryStats { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// The request for Firestore.Rollback. public class RollbackRequest : Google.Apis.Requests.IDirectResponseSchema { @@ -7030,13 +6996,6 @@ public class RollbackRequest : Google.Apis.Requests.IDirectResponseSchema /// The request for Firestore.RunAggregationQuery. public class RunAggregationQueryRequest : Google.Apis.Requests.IDirectResponseSchema { - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Starts a new transaction as part of the query, defaulting to read-only. The new transaction ID will be /// returned as the first response in the stream. @@ -7149,14 +7108,6 @@ public virtual System.DateTimeOffset? ReadTimeDateTimeOffset [Newtonsoft.Json.JsonPropertyAttribute("result")] public virtual AggregationResult Result { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once - /// with the last response in the stream. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// /// The transaction that was started as part of this request. Only present on the first response when the /// request requested to start a new transaction. @@ -7171,13 +7122,6 @@ public virtual System.DateTimeOffset? ReadTimeDateTimeOffset /// The request for Firestore.RunQuery. public class RunQueryRequest : Google.Apis.Requests.IDirectResponseSchema { - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Starts a new transaction and reads the documents. Defaults to a read-only transaction. The new transaction /// ID will be returned as the first response in the stream. @@ -7303,14 +7247,6 @@ public virtual System.DateTimeOffset? ReadTimeDateTimeOffset [Newtonsoft.Json.JsonPropertyAttribute("skippedResults")] public virtual System.Nullable SkippedResults { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once - /// with the last response in the stream. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// /// The transaction that was started as part of this request. Can only be set in the first response, and only if /// RunQueryRequest.new_transaction was set in the request. If set, no other fields will be set in this diff --git a/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.csproj b/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.csproj index 529e479bd0..0cf8933d05 100644 --- a/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.csproj +++ b/Src/Generated/Google.Apis.Firestore.v1/Google.Apis.Firestore.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Firestore.v1 Client Library - 1.65.0.3295 + 1.66.0.3276 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Firestore v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.cs b/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.cs index 2bf70dafe3..8a041c5639 100644 --- a/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.cs +++ b/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.cs @@ -4068,7 +4068,7 @@ public class Order : Google.Apis.Requests.IDirectResponseSchema [Newtonsoft.Json.JsonPropertyAttribute("direction")] public virtual string Direction { get; set; } - /// The field to order by. + /// Order based on the value referenced by this field. [Newtonsoft.Json.JsonPropertyAttribute("field")] public virtual FieldReference Field { get; set; } @@ -4253,21 +4253,6 @@ public class Projection : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Plan for the query. - public class QueryPlan : Google.Apis.Requests.IDirectResponseSchema - { - /// - /// Planning phase information for the query. It will include: { "indexes_used": [ {"query_scope": "Collection", - /// "properties": "(foo ASC, __name__ ASC)"}, {"query_scope": "Collection", "properties": "(bar ASC, __name__ - /// ASC)"} ] } - /// - [Newtonsoft.Json.JsonPropertyAttribute("planInfo")] - public virtual System.Collections.Generic.IDictionary PlanInfo { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// A target specified by a query. public class QueryTarget : Google.Apis.Requests.IDirectResponseSchema { @@ -4350,25 +4335,6 @@ public class ReadWrite : Google.Apis.Requests.IDirectResponseSchema public virtual string ETag { get; set; } } - /// Planning and execution statistics for the query. - public class ResultSetStats : Google.Apis.Requests.IDirectResponseSchema - { - /// Plan for the query. - [Newtonsoft.Json.JsonPropertyAttribute("queryPlan")] - public virtual QueryPlan QueryPlan { get; set; } - - /// - /// Aggregated statistics from the execution of the query. This will only be present when the request specifies - /// `PROFILE` mode. For example, a query will return the statistics including: { "results_returned": "20", - /// "documents_scanned": "20", "indexes_entries_scanned": "10050", "total_execution_time": "100.7 msecs" } - /// - [Newtonsoft.Json.JsonPropertyAttribute("queryStats")] - public virtual System.Collections.Generic.IDictionary QueryStats { get; set; } - - /// The ETag of the item. - public virtual string ETag { get; set; } - } - /// The request for Firestore.Rollback. public class RollbackRequest : Google.Apis.Requests.IDirectResponseSchema { @@ -4383,13 +4349,6 @@ public class RollbackRequest : Google.Apis.Requests.IDirectResponseSchema /// The request for Firestore.RunAggregationQuery. public class RunAggregationQueryRequest : Google.Apis.Requests.IDirectResponseSchema { - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Starts a new transaction as part of the query, defaulting to read-only. The new transaction ID will be /// returned as the first response in the stream. @@ -4502,14 +4461,6 @@ public virtual System.DateTimeOffset? ReadTimeDateTimeOffset [Newtonsoft.Json.JsonPropertyAttribute("result")] public virtual AggregationResult Result { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once - /// with the last response in the stream. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// /// The transaction that was started as part of this request. Only present on the first response when the /// request requested to start a new transaction. @@ -4524,13 +4475,6 @@ public virtual System.DateTimeOffset? ReadTimeDateTimeOffset /// The request for Firestore.RunQuery. public class RunQueryRequest : Google.Apis.Requests.IDirectResponseSchema { - /// - /// Optional. The mode in which the query request is processed. This field is optional, and when not provided, - /// it defaults to `NORMAL` mode where no additional statistics will be returned with the query results. - /// - [Newtonsoft.Json.JsonPropertyAttribute("mode")] - public virtual string Mode { get; set; } - /// /// Starts a new transaction and reads the documents. Defaults to a read-only transaction. The new transaction /// ID will be returned as the first response in the stream. @@ -4656,14 +4600,6 @@ public virtual System.DateTimeOffset? ReadTimeDateTimeOffset [Newtonsoft.Json.JsonPropertyAttribute("skippedResults")] public virtual System.Nullable SkippedResults { get; set; } - /// - /// Query plan and execution statistics. Note that the returned stats are subject to change as Firestore - /// evolves. This is only present when the request specifies a mode other than `NORMAL` and is sent only once - /// with the last response in the stream. - /// - [Newtonsoft.Json.JsonPropertyAttribute("stats")] - public virtual ResultSetStats Stats { get; set; } - /// /// The transaction that was started as part of this request. Can only be set in the first response, and only if /// RunQueryRequest.new_transaction was set in the request. If set, no other fields will be set in this diff --git a/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.csproj b/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.csproj index eb9f063c86..0f46e7bf72 100644 --- a/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Firestore.v1beta1/Google.Apis.Firestore.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Firestore.v1beta1 Client Library - 1.65.0.3295 + 1.66.0.3276 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firestore v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Firestore.v1beta2/Google.Apis.Firestore.v1beta2.csproj b/Src/Generated/Google.Apis.Firestore.v1beta2/Google.Apis.Firestore.v1beta2.csproj index aaad177aab..b82a1d6943 100644 --- a/Src/Generated/Google.Apis.Firestore.v1beta2/Google.Apis.Firestore.v1beta2.csproj +++ b/Src/Generated/Google.Apis.Firestore.v1beta2/Google.Apis.Firestore.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.Firestore.v1beta2 Client Library - 1.65.0.3169 + 1.66.0.3169 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Firestore v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Fitness.v1/Google.Apis.Fitness.v1.csproj b/Src/Generated/Google.Apis.Fitness.v1/Google.Apis.Fitness.v1.csproj index 8b3bf103ad..7264253755 100644 --- a/Src/Generated/Google.Apis.Fitness.v1/Google.Apis.Fitness.v1.csproj +++ b/Src/Generated/Google.Apis.Fitness.v1/Google.Apis.Fitness.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Fitness.v1 Client Library - 1.65.0.3232 + 1.66.0.3232 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Fitness v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Forms.v1/Google.Apis.Forms.v1.csproj b/Src/Generated/Google.Apis.Forms.v1/Google.Apis.Forms.v1.csproj index 440ba0add5..c90564844d 100644 --- a/Src/Generated/Google.Apis.Forms.v1/Google.Apis.Forms.v1.csproj +++ b/Src/Generated/Google.Apis.Forms.v1/Google.Apis.Forms.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Forms.v1 Client Library - 1.65.0.2807 + 1.66.0.2807 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Forms v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GKEHub.v1/Google.Apis.GKEHub.v1.csproj b/Src/Generated/Google.Apis.GKEHub.v1/Google.Apis.GKEHub.v1.csproj index b1942f06c7..0d5403f2e8 100644 --- a/Src/Generated/Google.Apis.GKEHub.v1/Google.Apis.GKEHub.v1.csproj +++ b/Src/Generated/Google.Apis.GKEHub.v1/Google.Apis.GKEHub.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.GKEHub.v1 Client Library - 1.65.0.3261 + 1.66.0.3261 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkehub v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GKEHub.v1alpha/Google.Apis.GKEHub.v1alpha.csproj b/Src/Generated/Google.Apis.GKEHub.v1alpha/Google.Apis.GKEHub.v1alpha.csproj index 5963093ff0..5d19670fdf 100644 --- a/Src/Generated/Google.Apis.GKEHub.v1alpha/Google.Apis.GKEHub.v1alpha.csproj +++ b/Src/Generated/Google.Apis.GKEHub.v1alpha/Google.Apis.GKEHub.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.GKEHub.v1alpha Client Library - 1.65.0.3261 + 1.66.0.3261 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkehub v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GKEHub.v1alpha2/Google.Apis.GKEHub.v1alpha2.csproj b/Src/Generated/Google.Apis.GKEHub.v1alpha2/Google.Apis.GKEHub.v1alpha2.csproj index 846a527903..5c5fa4b8d6 100644 --- a/Src/Generated/Google.Apis.GKEHub.v1alpha2/Google.Apis.GKEHub.v1alpha2.csproj +++ b/Src/Generated/Google.Apis.GKEHub.v1alpha2/Google.Apis.GKEHub.v1alpha2.csproj @@ -3,7 +3,7 @@ Google.Apis.GKEHub.v1alpha2 Client Library - 1.65.0.3200 + 1.66.0.3200 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkehub v1alpha2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GKEHub.v1beta/Google.Apis.GKEHub.v1beta.csproj b/Src/Generated/Google.Apis.GKEHub.v1beta/Google.Apis.GKEHub.v1beta.csproj index efe56abdbf..f05d4dae65 100644 --- a/Src/Generated/Google.Apis.GKEHub.v1beta/Google.Apis.GKEHub.v1beta.csproj +++ b/Src/Generated/Google.Apis.GKEHub.v1beta/Google.Apis.GKEHub.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.GKEHub.v1beta Client Library - 1.65.0.3261 + 1.66.0.3261 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkehub v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GKEHub.v1beta1/Google.Apis.GKEHub.v1beta1.csproj b/Src/Generated/Google.Apis.GKEHub.v1beta1/Google.Apis.GKEHub.v1beta1.csproj index 3a6d809966..552e58a808 100644 --- a/Src/Generated/Google.Apis.GKEHub.v1beta1/Google.Apis.GKEHub.v1beta1.csproj +++ b/Src/Generated/Google.Apis.GKEHub.v1beta1/Google.Apis.GKEHub.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.GKEHub.v1beta1 Client Library - 1.65.0.3200 + 1.66.0.3200 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkehub v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GKEHub.v2alpha/Google.Apis.GKEHub.v2alpha.csproj b/Src/Generated/Google.Apis.GKEHub.v2alpha/Google.Apis.GKEHub.v2alpha.csproj index a2a6342f4a..d3b09613e2 100644 --- a/Src/Generated/Google.Apis.GKEHub.v2alpha/Google.Apis.GKEHub.v2alpha.csproj +++ b/Src/Generated/Google.Apis.GKEHub.v2alpha/Google.Apis.GKEHub.v2alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.GKEHub.v2alpha Client Library - 1.65.0.3137 + 1.66.0.3137 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkehub v2alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GKEOnPrem.v1/Google.Apis.GKEOnPrem.v1.csproj b/Src/Generated/Google.Apis.GKEOnPrem.v1/Google.Apis.GKEOnPrem.v1.csproj index 486db0295d..b462a6023d 100644 --- a/Src/Generated/Google.Apis.GKEOnPrem.v1/Google.Apis.GKEOnPrem.v1.csproj +++ b/Src/Generated/Google.Apis.GKEOnPrem.v1/Google.Apis.GKEOnPrem.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.GKEOnPrem.v1 Client Library - 1.65.0.3259 + 1.66.0.3259 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gkeonprem v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Games.v1/Google.Apis.Games.v1.csproj b/Src/Generated/Google.Apis.Games.v1/Google.Apis.Games.v1.csproj index 4dcc1d28bb..81770848b1 100644 --- a/Src/Generated/Google.Apis.Games.v1/Google.Apis.Games.v1.csproj +++ b/Src/Generated/Google.Apis.Games.v1/Google.Apis.Games.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Games.v1 Client Library - 1.65.0.3163 + 1.66.0.3163 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Games v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GamesConfiguration.v1configuration/Google.Apis.GamesConfiguration.v1configuration.csproj b/Src/Generated/Google.Apis.GamesConfiguration.v1configuration/Google.Apis.GamesConfiguration.v1configuration.csproj index f724d14fac..67c3497291 100644 --- a/Src/Generated/Google.Apis.GamesConfiguration.v1configuration/Google.Apis.GamesConfiguration.v1configuration.csproj +++ b/Src/Generated/Google.Apis.GamesConfiguration.v1configuration/Google.Apis.GamesConfiguration.v1configuration.csproj @@ -3,7 +3,7 @@ Google.Apis.GamesConfiguration.v1configuration Client Library - 1.65.0.2884 + 1.66.0.2884 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with GamesConfiguration v1configuration. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GamesManagement.v1management/Google.Apis.GamesManagement.v1management.csproj b/Src/Generated/Google.Apis.GamesManagement.v1management/Google.Apis.GamesManagement.v1management.csproj index bb9b4def75..7e909fe6eb 100644 --- a/Src/Generated/Google.Apis.GamesManagement.v1management/Google.Apis.GamesManagement.v1management.csproj +++ b/Src/Generated/Google.Apis.GamesManagement.v1management/Google.Apis.GamesManagement.v1management.csproj @@ -3,7 +3,7 @@ Google.Apis.GamesManagement.v1management Client Library - 1.65.0.2239 + 1.66.0.2239 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with GamesManagement v1management. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Gmail.v1/Google.Apis.Gmail.v1.csproj b/Src/Generated/Google.Apis.Gmail.v1/Google.Apis.Gmail.v1.csproj index f4bf90f613..1d0b4deab5 100644 --- a/Src/Generated/Google.Apis.Gmail.v1/Google.Apis.Gmail.v1.csproj +++ b/Src/Generated/Google.Apis.Gmail.v1/Google.Apis.Gmail.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Gmail.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gmail v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.cs b/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.cs index a9b59032a4..b892daf385 100644 --- a/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.cs +++ b/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.cs @@ -1463,6 +1463,7 @@ public PropertiesResource(Google.Apis.Services.IClientService service) AdSenseLinks = new AdSenseLinksResource(service); Audiences = new AudiencesResource(service); BigQueryLinks = new BigQueryLinksResource(service); + CalculatedMetrics = new CalculatedMetricsResource(service); ChannelGroups = new ChannelGroupsResource(service); ConversionEvents = new ConversionEventsResource(service); CustomDimensions = new CustomDimensionsResource(service); @@ -2793,6 +2794,351 @@ protected override void InitParameters() } } + /// Gets the CalculatedMetrics resource. + public virtual CalculatedMetricsResource CalculatedMetrics { get; } + + /// The "calculatedMetrics" collection of methods. + public class CalculatedMetricsResource + { + private const string Resource = "calculatedMetrics"; + + /// The service which this resource belongs to. + private readonly Google.Apis.Services.IClientService service; + + /// Constructs a new resource. + public CalculatedMetricsResource(Google.Apis.Services.IClientService service) + { + this.service = service; + } + + /// Creates a CalculatedMetric. + /// The body of the request. + /// Required. Format: properties/{property_id} Example: properties/1234 + public virtual CreateRequest Create(Google.Apis.GoogleAnalyticsAdmin.v1alpha.Data.GoogleAnalyticsAdminV1alphaCalculatedMetric body, string parent) + { + return new CreateRequest(this.service, body, parent); + } + + /// Creates a CalculatedMetric. + public class CreateRequest : GoogleAnalyticsAdminBaseServiceRequest + { + /// Constructs a new Create request. + public CreateRequest(Google.Apis.Services.IClientService service, Google.Apis.GoogleAnalyticsAdmin.v1alpha.Data.GoogleAnalyticsAdminV1alphaCalculatedMetric body, string parent) : base(service) + { + Parent = parent; + Body = body; + InitParameters(); + } + + /// Required. Format: properties/{property_id} Example: properties/1234 + [Google.Apis.Util.RequestParameterAttribute("parent", Google.Apis.Util.RequestParameterType.Path)] + public virtual string Parent { get; private set; } + + /// + /// Required. The ID to use for the calculated metric which will become the final component of the + /// calculated metric's resource name. This value should be 1-80 characters and valid characters are + /// /[a-zA-Z0-9_]/, no spaces allowed. calculated_metric_id must be unique between all calculated + /// metrics under a property. The calculated_metric_id is used when referencing this calculated metric + /// from external APIs, for example, "calcMetric:{calculated_metric_id}". + /// + [Google.Apis.Util.RequestParameterAttribute("calculatedMetricId", Google.Apis.Util.RequestParameterType.Query)] + public virtual string CalculatedMetricId { get; set; } + + /// Gets or sets the body of this request. + Google.Apis.GoogleAnalyticsAdmin.v1alpha.Data.GoogleAnalyticsAdminV1alphaCalculatedMetric Body { get; set; } + + /// Returns the body of the request. + protected override object GetBody() => Body; + + /// Gets the method name. + public override string MethodName => "create"; + + /// Gets the HTTP method. + public override string HttpMethod => "POST"; + + /// Gets the REST path. + public override string RestPath => "v1alpha/{+parent}/calculatedMetrics"; + + /// Initializes Create parameter list. + protected override void InitParameters() + { + base.InitParameters(); + RequestParameters.Add("parent", new Google.Apis.Discovery.Parameter + { + Name = "parent", + IsRequired = true, + ParameterType = "path", + DefaultValue = null, + Pattern = @"^properties/[^/]+$", + }); + RequestParameters.Add("calculatedMetricId", new Google.Apis.Discovery.Parameter + { + Name = "calculatedMetricId", + IsRequired = false, + ParameterType = "query", + DefaultValue = null, + Pattern = null, + }); + } + } + + /// Deletes a CalculatedMetric on a property. + /// + /// Required. The name of the CalculatedMetric to delete. Format: + /// properties/{property_id}/calculatedMetrics/{calculated_metric_id} Example: + /// properties/1234/calculatedMetrics/Metric01 + /// + public virtual DeleteRequest Delete(string name) + { + return new DeleteRequest(this.service, name); + } + + /// Deletes a CalculatedMetric on a property. + public class DeleteRequest : GoogleAnalyticsAdminBaseServiceRequest + { + /// Constructs a new Delete request. + public DeleteRequest(Google.Apis.Services.IClientService service, string name) : base(service) + { + Name = name; + InitParameters(); + } + + /// + /// Required. The name of the CalculatedMetric to delete. Format: + /// properties/{property_id}/calculatedMetrics/{calculated_metric_id} Example: + /// properties/1234/calculatedMetrics/Metric01 + /// + [Google.Apis.Util.RequestParameterAttribute("name", Google.Apis.Util.RequestParameterType.Path)] + public virtual string Name { get; private set; } + + /// Gets the method name. + public override string MethodName => "delete"; + + /// Gets the HTTP method. + public override string HttpMethod => "DELETE"; + + /// Gets the REST path. + public override string RestPath => "v1alpha/{+name}"; + + /// Initializes Delete parameter list. + protected override void InitParameters() + { + base.InitParameters(); + RequestParameters.Add("name", new Google.Apis.Discovery.Parameter + { + Name = "name", + IsRequired = true, + ParameterType = "path", + DefaultValue = null, + Pattern = @"^properties/[^/]+/calculatedMetrics/[^/]+$", + }); + } + } + + /// Lookup for a single CalculatedMetric. + /// + /// Required. The name of the CalculatedMetric to get. Format: + /// properties/{property_id}/calculatedMetrics/{calculated_metric_id} Example: + /// properties/1234/calculatedMetrics/Metric01 + /// + public virtual GetRequest Get(string name) + { + return new GetRequest(this.service, name); + } + + /// Lookup for a single CalculatedMetric. + public class GetRequest : GoogleAnalyticsAdminBaseServiceRequest + { + /// Constructs a new Get request. + public GetRequest(Google.Apis.Services.IClientService service, string name) : base(service) + { + Name = name; + InitParameters(); + } + + /// + /// Required. The name of the CalculatedMetric to get. Format: + /// properties/{property_id}/calculatedMetrics/{calculated_metric_id} Example: + /// properties/1234/calculatedMetrics/Metric01 + /// + [Google.Apis.Util.RequestParameterAttribute("name", Google.Apis.Util.RequestParameterType.Path)] + public virtual string Name { get; private set; } + + /// Gets the method name. + public override string MethodName => "get"; + + /// Gets the HTTP method. + public override string HttpMethod => "GET"; + + /// Gets the REST path. + public override string RestPath => "v1alpha/{+name}"; + + /// Initializes Get parameter list. + protected override void InitParameters() + { + base.InitParameters(); + RequestParameters.Add("name", new Google.Apis.Discovery.Parameter + { + Name = "name", + IsRequired = true, + ParameterType = "path", + DefaultValue = null, + Pattern = @"^properties/[^/]+/calculatedMetrics/[^/]+$", + }); + } + } + + /// Lists CalculatedMetrics on a property. + /// Required. Example format: properties/1234 + public virtual ListRequest List(string parent) + { + return new ListRequest(this.service, parent); + } + + /// Lists CalculatedMetrics on a property. + public class ListRequest : GoogleAnalyticsAdminBaseServiceRequest + { + /// Constructs a new List request. + public ListRequest(Google.Apis.Services.IClientService service, string parent) : base(service) + { + Parent = parent; + InitParameters(); + } + + /// Required. Example format: properties/1234 + [Google.Apis.Util.RequestParameterAttribute("parent", Google.Apis.Util.RequestParameterType.Path)] + public virtual string Parent { get; private set; } + + /// + /// Optional. The maximum number of resources to return. If unspecified, at most 50 resources will be + /// returned. The maximum value is 200 (higher values will be coerced to the maximum). + /// + [Google.Apis.Util.RequestParameterAttribute("pageSize", Google.Apis.Util.RequestParameterType.Query)] + public virtual System.Nullable PageSize { get; set; } + + /// + /// Optional. A page token, received from a previous `ListCalculatedMetrics` call. Provide this to + /// retrieve the subsequent page. When paginating, all other parameters provided to + /// `ListCalculatedMetrics` must match the call that provided the page token. + /// + [Google.Apis.Util.RequestParameterAttribute("pageToken", Google.Apis.Util.RequestParameterType.Query)] + public virtual string PageToken { get; set; } + + /// Gets the method name. + public override string MethodName => "list"; + + /// Gets the HTTP method. + public override string HttpMethod => "GET"; + + /// Gets the REST path. + public override string RestPath => "v1alpha/{+parent}/calculatedMetrics"; + + /// Initializes List parameter list. + protected override void InitParameters() + { + base.InitParameters(); + RequestParameters.Add("parent", new Google.Apis.Discovery.Parameter + { + Name = "parent", + IsRequired = true, + ParameterType = "path", + DefaultValue = null, + Pattern = @"^properties/[^/]+$", + }); + RequestParameters.Add("pageSize", new Google.Apis.Discovery.Parameter + { + Name = "pageSize", + IsRequired = false, + ParameterType = "query", + DefaultValue = null, + Pattern = null, + }); + RequestParameters.Add("pageToken", new Google.Apis.Discovery.Parameter + { + Name = "pageToken", + IsRequired = false, + ParameterType = "query", + DefaultValue = null, + Pattern = null, + }); + } + } + + /// Updates a CalculatedMetric on a property. + /// The body of the request. + /// + /// Output only. Resource name for this CalculatedMetric. Format: + /// 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}' + /// + public virtual PatchRequest Patch(Google.Apis.GoogleAnalyticsAdmin.v1alpha.Data.GoogleAnalyticsAdminV1alphaCalculatedMetric body, string name) + { + return new PatchRequest(this.service, body, name); + } + + /// Updates a CalculatedMetric on a property. + public class PatchRequest : GoogleAnalyticsAdminBaseServiceRequest + { + /// Constructs a new Patch request. + public PatchRequest(Google.Apis.Services.IClientService service, Google.Apis.GoogleAnalyticsAdmin.v1alpha.Data.GoogleAnalyticsAdminV1alphaCalculatedMetric body, string name) : base(service) + { + Name = name; + Body = body; + InitParameters(); + } + + /// + /// Output only. Resource name for this CalculatedMetric. Format: + /// 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}' + /// + [Google.Apis.Util.RequestParameterAttribute("name", Google.Apis.Util.RequestParameterType.Path)] + public virtual string Name { get; private set; } + + /// + /// Required. The list of fields to be updated. Omitted fields will not be updated. To replace the + /// entire entity, use one path with the string "*" to match all fields. + /// + [Google.Apis.Util.RequestParameterAttribute("updateMask", Google.Apis.Util.RequestParameterType.Query)] + public virtual object UpdateMask { get; set; } + + /// Gets or sets the body of this request. + Google.Apis.GoogleAnalyticsAdmin.v1alpha.Data.GoogleAnalyticsAdminV1alphaCalculatedMetric Body { get; set; } + + /// Returns the body of the request. + protected override object GetBody() => Body; + + /// Gets the method name. + public override string MethodName => "patch"; + + /// Gets the HTTP method. + public override string HttpMethod => "PATCH"; + + /// Gets the REST path. + public override string RestPath => "v1alpha/{+name}"; + + /// Initializes Patch parameter list. + protected override void InitParameters() + { + base.InitParameters(); + RequestParameters.Add("name", new Google.Apis.Discovery.Parameter + { + Name = "name", + IsRequired = true, + ParameterType = "path", + DefaultValue = null, + Pattern = @"^properties/[^/]+/calculatedMetrics/[^/]+$", + }); + RequestParameters.Add("updateMask", new Google.Apis.Discovery.Parameter + { + Name = "updateMask", + IsRequired = false, + ParameterType = "query", + DefaultValue = null, + Pattern = null, + }); + } + } + } + /// Gets the ChannelGroups resource. public virtual ChannelGroupsResource ChannelGroups { get; } @@ -10613,6 +10959,64 @@ public virtual System.DateTimeOffset? CreateTimeDateTimeOffset public virtual string ETag { get; set; } } + /// A definition for a calculated metric. + public class GoogleAnalyticsAdminV1alphaCalculatedMetric : Google.Apis.Requests.IDirectResponseSchema + { + /// + /// Output only. The ID to use for the calculated metric. In the UI, this is referred to as the "API name." The + /// calculated_metric_id is used when referencing this calculated metric from external APIs. For example, + /// "calcMetric:{calculated_metric_id}". + /// + [Newtonsoft.Json.JsonPropertyAttribute("calculatedMetricId")] + public virtual string CalculatedMetricId { get; set; } + + /// Optional. Description for this calculated metric. Max length of 4096 characters. + [Newtonsoft.Json.JsonPropertyAttribute("description")] + public virtual string Description { get; set; } + + /// + /// Required. Display name for this calculated metric as shown in the Google Analytics UI. Max length 82 + /// characters. + /// + [Newtonsoft.Json.JsonPropertyAttribute("displayName")] + public virtual string DisplayName { get; set; } + + /// + /// Required. The calculated metric's definition. Maximum number of unique referenced custom metrics is 5. + /// Formulas supports the following operations: + (addition), - (subtraction), - (negative), * (multiplication), + /// / (division), () (parenthesis). Any valid real numbers are acceptable that fit in a Long (64bit integer) or + /// a Double (64 bit floating point number). Example formula: "( customEvent:parameter_name + + /// cartPurchaseQuantity ) / 2.0" + /// + [Newtonsoft.Json.JsonPropertyAttribute("formula")] + public virtual string Formula { get; set; } + + /// + /// Output only. If true, this calculated metric has a invalid metric reference. Anything using a calculated + /// metric with invalid_metric_reference set to true may fail, produce warnings, or produce unexpected results. + /// + [Newtonsoft.Json.JsonPropertyAttribute("invalidMetricReference")] + public virtual System.Nullable InvalidMetricReference { get; set; } + + /// Required. The type for the calculated metric's value. + [Newtonsoft.Json.JsonPropertyAttribute("metricUnit")] + public virtual string MetricUnit { get; set; } + + /// + /// Output only. Resource name for this CalculatedMetric. Format: + /// 'properties/{property_id}/calculatedMetrics/{calculated_metric_id}' + /// + [Newtonsoft.Json.JsonPropertyAttribute("name")] + public virtual string Name { get; set; } + + /// Output only. Types of restricted data that this metric contains. + [Newtonsoft.Json.JsonPropertyAttribute("restrictedMetricType")] + public virtual System.Collections.Generic.IList RestrictedMetricType { get; set; } + + /// The ETag of the item. + public virtual string ETag { get; set; } + } + /// Request message for CancelDisplayVideo360AdvertiserLinkProposal RPC. public class GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest : Google.Apis.Requests.IDirectResponseSchema { @@ -10672,6 +11076,10 @@ public class GoogleAnalyticsAdminV1alphaChangeHistoryChangeChangeHistoryResource [Newtonsoft.Json.JsonPropertyAttribute("bigqueryLink")] public virtual GoogleAnalyticsAdminV1alphaBigQueryLink BigqueryLink { get; set; } + /// A snapshot of a CalculatedMetric resource in change history. + [Newtonsoft.Json.JsonPropertyAttribute("calculatedMetric")] + public virtual GoogleAnalyticsAdminV1alphaCalculatedMetric CalculatedMetric { get; set; } + /// A snapshot of a ChannelGroup resource in change history. [Newtonsoft.Json.JsonPropertyAttribute("channelGroup")] public virtual GoogleAnalyticsAdminV1alphaChannelGroup ChannelGroup { get; set; } @@ -12492,6 +12900,24 @@ public class GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse : Google.Apis. public virtual string ETag { get; set; } } + /// Response message for ListCalculatedMetrics RPC. + public class GoogleAnalyticsAdminV1alphaListCalculatedMetricsResponse : Google.Apis.Requests.IDirectResponseSchema + { + /// List of CalculatedMetrics. + [Newtonsoft.Json.JsonPropertyAttribute("calculatedMetrics")] + public virtual System.Collections.Generic.IList CalculatedMetrics { get; set; } + + /// + /// A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no + /// subsequent pages. + /// + [Newtonsoft.Json.JsonPropertyAttribute("nextPageToken")] + public virtual string NextPageToken { get; set; } + + /// The ETag of the item. + public virtual string ETag { get; set; } + } + /// Response message for ListChannelGroups RPC. public class GoogleAnalyticsAdminV1alphaListChannelGroupsResponse : Google.Apis.Requests.IDirectResponseSchema { diff --git a/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.csproj b/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.csproj index 3df5227e28..67b8b62160 100644 --- a/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.csproj +++ b/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1alpha/Google.Apis.GoogleAnalyticsAdmin.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.GoogleAnalyticsAdmin.v1alpha Client Library - 1.65.0.3291 + 1.66.0.3301 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Analyticsadmin v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1beta/Google.Apis.GoogleAnalyticsAdmin.v1beta.csproj b/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1beta/Google.Apis.GoogleAnalyticsAdmin.v1beta.csproj index 187fa338b4..ac182f13b9 100644 --- a/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1beta/Google.Apis.GoogleAnalyticsAdmin.v1beta.csproj +++ b/Src/Generated/Google.Apis.GoogleAnalyticsAdmin.v1beta/Google.Apis.GoogleAnalyticsAdmin.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.GoogleAnalyticsAdmin.v1beta Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Analyticsadmin v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.GroupsMigration.v1/Google.Apis.GroupsMigration.v1.csproj b/Src/Generated/Google.Apis.GroupsMigration.v1/Google.Apis.GroupsMigration.v1.csproj index 815886c8f0..8a4fe04109 100644 --- a/Src/Generated/Google.Apis.GroupsMigration.v1/Google.Apis.GroupsMigration.v1.csproj +++ b/Src/Generated/Google.Apis.GroupsMigration.v1/Google.Apis.GroupsMigration.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.GroupsMigration.v1 Client Library - 1.65.0.2254 + 1.66.0.2254 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Groupsmigration v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Groupssettings.v1/Google.Apis.Groupssettings.v1.csproj b/Src/Generated/Google.Apis.Groupssettings.v1/Google.Apis.Groupssettings.v1.csproj index 30f1ad5ddb..003158e9d7 100644 --- a/Src/Generated/Google.Apis.Groupssettings.v1/Google.Apis.Groupssettings.v1.csproj +++ b/Src/Generated/Google.Apis.Groupssettings.v1/Google.Apis.Groupssettings.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Groupssettings.v1 Client Library - 1.65.0.2366 + 1.66.0.2366 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Groupssettings v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.HangoutsChat.v1/Google.Apis.HangoutsChat.v1.csproj b/Src/Generated/Google.Apis.HangoutsChat.v1/Google.Apis.HangoutsChat.v1.csproj index 43a075bb73..39af082d14 100644 --- a/Src/Generated/Google.Apis.HangoutsChat.v1/Google.Apis.HangoutsChat.v1.csproj +++ b/Src/Generated/Google.Apis.HangoutsChat.v1/Google.Apis.HangoutsChat.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.HangoutsChat.v1 Client Library - 1.65.0.3295 + 1.66.0.3295 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Chat v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.HomeGraphService.v1/Google.Apis.HomeGraphService.v1.csproj b/Src/Generated/Google.Apis.HomeGraphService.v1/Google.Apis.HomeGraphService.v1.csproj index 5ff221592a..c044e6b634 100644 --- a/Src/Generated/Google.Apis.HomeGraphService.v1/Google.Apis.HomeGraphService.v1.csproj +++ b/Src/Generated/Google.Apis.HomeGraphService.v1/Google.Apis.HomeGraphService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.HomeGraphService.v1 Client Library - 1.65.0.3109 + 1.66.0.3109 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Homegraph v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.IAMCredentials.v1/Google.Apis.IAMCredentials.v1.csproj b/Src/Generated/Google.Apis.IAMCredentials.v1/Google.Apis.IAMCredentials.v1.csproj index 3a3f5e421f..9faaf9421c 100644 --- a/Src/Generated/Google.Apis.IAMCredentials.v1/Google.Apis.IAMCredentials.v1.csproj +++ b/Src/Generated/Google.Apis.IAMCredentials.v1/Google.Apis.IAMCredentials.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.IAMCredentials.v1 Client Library - 1.65.0.2528 + 1.66.0.2528 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Iamcredentials v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.IDS.v1/Google.Apis.IDS.v1.csproj b/Src/Generated/Google.Apis.IDS.v1/Google.Apis.IDS.v1.csproj index c6b48f487e..e6718d75a5 100644 --- a/Src/Generated/Google.Apis.IDS.v1/Google.Apis.IDS.v1.csproj +++ b/Src/Generated/Google.Apis.IDS.v1/Google.Apis.IDS.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.IDS.v1 Client Library - 1.65.0.3140 + 1.66.0.3140 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Ids v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Iam.v1/Google.Apis.Iam.v1.csproj b/Src/Generated/Google.Apis.Iam.v1/Google.Apis.Iam.v1.csproj index 5c4d53edb2..e2d82d3679 100644 --- a/Src/Generated/Google.Apis.Iam.v1/Google.Apis.Iam.v1.csproj +++ b/Src/Generated/Google.Apis.Iam.v1/Google.Apis.Iam.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Iam.v1 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Iam v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Iam.v2/Google.Apis.Iam.v2.csproj b/Src/Generated/Google.Apis.Iam.v2/Google.Apis.Iam.v2.csproj index 4fc2d68a9b..4eac4178f3 100644 --- a/Src/Generated/Google.Apis.Iam.v2/Google.Apis.Iam.v2.csproj +++ b/Src/Generated/Google.Apis.Iam.v2/Google.Apis.Iam.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Iam.v2 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Iam v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Iam.v2beta/Google.Apis.Iam.v2beta.csproj b/Src/Generated/Google.Apis.Iam.v2beta/Google.Apis.Iam.v2beta.csproj index 810be762ea..b3934114e4 100644 --- a/Src/Generated/Google.Apis.Iam.v2beta/Google.Apis.Iam.v2beta.csproj +++ b/Src/Generated/Google.Apis.Iam.v2beta/Google.Apis.Iam.v2beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Iam.v2beta Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Iam v2beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Indexing.v3/Google.Apis.Indexing.v3.csproj b/Src/Generated/Google.Apis.Indexing.v3/Google.Apis.Indexing.v3.csproj index 373f8d7016..96b5a3de73 100644 --- a/Src/Generated/Google.Apis.Indexing.v3/Google.Apis.Indexing.v3.csproj +++ b/Src/Generated/Google.Apis.Indexing.v3/Google.Apis.Indexing.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Indexing.v3 Client Library - 1.65.0.3191 + 1.66.0.3191 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Indexing v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Keep.v1/Google.Apis.Keep.v1.csproj b/Src/Generated/Google.Apis.Keep.v1/Google.Apis.Keep.v1.csproj index 548c344022..e3853e4b07 100644 --- a/Src/Generated/Google.Apis.Keep.v1/Google.Apis.Keep.v1.csproj +++ b/Src/Generated/Google.Apis.Keep.v1/Google.Apis.Keep.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Keep.v1 Client Library - 1.65.0.2637 + 1.66.0.2637 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Keep v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Kgsearch.v1/Google.Apis.Kgsearch.v1.csproj b/Src/Generated/Google.Apis.Kgsearch.v1/Google.Apis.Kgsearch.v1.csproj index 9090c99c17..d10d61d0b0 100644 --- a/Src/Generated/Google.Apis.Kgsearch.v1/Google.Apis.Kgsearch.v1.csproj +++ b/Src/Generated/Google.Apis.Kgsearch.v1/Google.Apis.Kgsearch.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Kgsearch.v1 Client Library - 1.65.0.2143 + 1.66.0.2143 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Kgsearch v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.Kmsinventory.v1/Google.Apis.Kmsinventory.v1.csproj b/Src/Generated/Google.Apis.Kmsinventory.v1/Google.Apis.Kmsinventory.v1.csproj index 63f4e768b7..9fee588338 100644 --- a/Src/Generated/Google.Apis.Kmsinventory.v1/Google.Apis.Kmsinventory.v1.csproj +++ b/Src/Generated/Google.Apis.Kmsinventory.v1/Google.Apis.Kmsinventory.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Kmsinventory.v1 Client Library - 1.65.0.3118 + 1.66.0.3118 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Kmsinventory v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Libraryagent.v1/Google.Apis.Libraryagent.v1.csproj b/Src/Generated/Google.Apis.Libraryagent.v1/Google.Apis.Libraryagent.v1.csproj index 93c12e30c9..0a728a3c6b 100644 --- a/Src/Generated/Google.Apis.Libraryagent.v1/Google.Apis.Libraryagent.v1.csproj +++ b/Src/Generated/Google.Apis.Libraryagent.v1/Google.Apis.Libraryagent.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Libraryagent.v1 Client Library - 1.65.0.2413 + 1.66.0.2413 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Libraryagent v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Licensing.v1/Google.Apis.Licensing.v1.csproj b/Src/Generated/Google.Apis.Licensing.v1/Google.Apis.Licensing.v1.csproj index bc47cbf621..f86bedf0c2 100644 --- a/Src/Generated/Google.Apis.Licensing.v1/Google.Apis.Licensing.v1.csproj +++ b/Src/Generated/Google.Apis.Licensing.v1/Google.Apis.Licensing.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Licensing.v1 Client Library - 1.65.0.2678 + 1.66.0.2678 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Licensing v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Localservices.v1/Google.Apis.Localservices.v1.csproj b/Src/Generated/Google.Apis.Localservices.v1/Google.Apis.Localservices.v1.csproj index 79901f41e0..a29e853ffa 100644 --- a/Src/Generated/Google.Apis.Localservices.v1/Google.Apis.Localservices.v1.csproj +++ b/Src/Generated/Google.Apis.Localservices.v1/Google.Apis.Localservices.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Localservices.v1 Client Library - 1.65.0.2721 + 1.66.0.2721 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Localservices v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Logging.v2/Google.Apis.Logging.v2.csproj b/Src/Generated/Google.Apis.Logging.v2/Google.Apis.Logging.v2.csproj index 19eac8bc90..e213449392 100644 --- a/Src/Generated/Google.Apis.Logging.v2/Google.Apis.Logging.v2.csproj +++ b/Src/Generated/Google.Apis.Logging.v2/Google.Apis.Logging.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Logging.v2 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Logging v2 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Looker.v1/Google.Apis.Looker.v1.csproj b/Src/Generated/Google.Apis.Looker.v1/Google.Apis.Looker.v1.csproj index c58d6bec4d..df86f9b5a0 100644 --- a/Src/Generated/Google.Apis.Looker.v1/Google.Apis.Looker.v1.csproj +++ b/Src/Generated/Google.Apis.Looker.v1/Google.Apis.Looker.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Looker.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Looker v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.cs b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.cs index 33c88e3453..c35d457367 100644 --- a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.cs +++ b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.cs @@ -3641,9 +3641,25 @@ public class Binding : Google.Apis.Requests.IDirectResponseSchema /// example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that /// represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain /// (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * - /// `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that - /// has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is - /// recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * + /// `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: + /// A single identity in a workforce identity pool. * + /// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All + /// workforce identities in a group. * + /// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: + /// All workforce identities with a specific attribute value. * + /// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a + /// workforce identity pool. * + /// `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: + /// A single identity in a workload identity pool. * + /// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: + /// A workload identity pool group. * + /// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: + /// All identities in a workload identity pool with a certain attribute. * + /// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: + /// All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address + /// (plus unique identifier) representing a user that has been recently deleted. For example, + /// `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to + /// `user:{emailid}` and the recovered user retains the role in the binding. * /// `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a /// service account that has been recently deleted. For example, /// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, @@ -3651,7 +3667,10 @@ public class Binding : Google.Apis.Requests.IDirectResponseSchema /// binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing /// a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. /// If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role - /// in the binding. + /// in the binding. * + /// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: + /// Deleted single identity in a workforce identity pool. For example, + /// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`. /// [Newtonsoft.Json.JsonPropertyAttribute("members")] public virtual System.Collections.Generic.IList Members { get; set; } @@ -4517,7 +4536,7 @@ public virtual System.DateTimeOffset? CreateTimeDateTimeOffset /// /// Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name /// of the oneof policy name defined in MaintenancePolicy, and the referenced policy must define the same policy - /// type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if + /// type. For details, please refer to go/mr-user-guide. Should not be set if /// maintenance_settings.maintenance_policies is set. /// [Newtonsoft.Json.JsonPropertyAttribute("maintenancePolicyNames")] @@ -4799,8 +4818,8 @@ public class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings /// /// Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name /// of the oneof policy name defined in MaintenancePolicy, and the embedded policy must define the same policy - /// type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_policy_names is - /// set. If only the name is needed, then only populate MaintenancePolicy.name. + /// type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_policy_names is set. + /// If only the name is needed, then only populate MaintenancePolicy.name. /// [Newtonsoft.Json.JsonPropertyAttribute("maintenancePolicies")] public virtual System.Collections.Generic.IDictionary MaintenancePolicies { get; set; } diff --git a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.csproj b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.csproj index 0a44fce514..33b2bb626f 100644 --- a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.csproj +++ b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1 Client Library - 1.65.0.3204 + 1.66.0.3298 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Managedidentities v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1.csproj b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1.csproj index a847c4d115..5b4cb205e8 100644 --- a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1alpha1 Client Library - 1.65.0.3204 + 1.66.0.3204 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Managedidentities v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.cs b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.cs index d946143624..ea0511bb52 100644 --- a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.cs +++ b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.cs @@ -3640,9 +3640,25 @@ public class Binding : Google.Apis.Requests.IDirectResponseSchema /// example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that /// represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain /// (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * - /// `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that - /// has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is - /// recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * + /// `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: + /// A single identity in a workforce identity pool. * + /// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All + /// workforce identities in a group. * + /// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: + /// All workforce identities with a specific attribute value. * + /// `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a + /// workforce identity pool. * + /// `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: + /// A single identity in a workload identity pool. * + /// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: + /// A workload identity pool group. * + /// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: + /// All identities in a workload identity pool with a certain attribute. * + /// `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: + /// All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address + /// (plus unique identifier) representing a user that has been recently deleted. For example, + /// `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to + /// `user:{emailid}` and the recovered user retains the role in the binding. * /// `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a /// service account that has been recently deleted. For example, /// `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, @@ -3650,7 +3666,10 @@ public class Binding : Google.Apis.Requests.IDirectResponseSchema /// binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing /// a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. /// If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role - /// in the binding. + /// in the binding. * + /// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: + /// Deleted single identity in a workforce identity pool. For example, + /// `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`. /// [Newtonsoft.Json.JsonPropertyAttribute("members")] public virtual System.Collections.Generic.IList Members { get; set; } @@ -4533,7 +4552,7 @@ public virtual System.DateTimeOffset? CreateTimeDateTimeOffset /// /// Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name /// of the oneof policy name defined in MaintenancePolicy, and the referenced policy must define the same policy - /// type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if + /// type. For details, please refer to go/mr-user-guide. Should not be set if /// maintenance_settings.maintenance_policies is set. /// [Newtonsoft.Json.JsonPropertyAttribute("maintenancePolicyNames")] @@ -4815,8 +4834,8 @@ public class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings /// /// Optional. The MaintenancePolicies that have been attached to the instance. The key must be of the type name /// of the oneof policy name defined in MaintenancePolicy, and the embedded policy must define the same policy - /// type. For details, please refer to go/cloud-saas-mw-ug. Should not be set if maintenance_policy_names is - /// set. If only the name is needed, then only populate MaintenancePolicy.name. + /// type. For details, please refer to go/mr-user-guide. Should not be set if maintenance_policy_names is set. + /// If only the name is needed, then only populate MaintenancePolicy.name. /// [Newtonsoft.Json.JsonPropertyAttribute("maintenancePolicies")] public virtual System.Collections.Generic.IDictionary MaintenancePolicies { get; set; } diff --git a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.csproj b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.csproj index a18571ecc7..0fa82291df 100644 --- a/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.csproj +++ b/Src/Generated/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1/Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.ManagedServiceforMicrosoftActiveDirectoryConsumerAPI.v1beta1 Client Library - 1.65.0.3204 + 1.66.0.3298 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Managedidentities v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.csproj b/Src/Generated/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.csproj index ff7241ea17..aa085dc39c 100644 --- a/Src/Generated/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.csproj +++ b/Src/Generated/Google.Apis.ManufacturerCenter.v1/Google.Apis.ManufacturerCenter.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ManufacturerCenter.v1 Client Library - 1.65.0.3234 + 1.66.0.3234 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Manufacturers v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.cs b/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.cs index a24c48634a..8138eed4ad 100644 --- a/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.cs +++ b/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.cs @@ -429,17 +429,18 @@ protected override void InitParameters() } } - /// Get place details with a place id (in a name) string. - /// - /// Required. A place ID returned in a Place (with "places/" prefix), or equivalently the name in the same - /// Place. Format: `places/{place_id}`. - /// + /// + /// Get the details of a place based on its resource name, which is a string in the `places/{place_id}` format. + /// + /// Required. The resource name of a place, in the `places/{place_id}` format. public virtual GetRequest Get(string name) { return new GetRequest(this.service, name); } - /// Get place details with a place id (in a name) string. + /// + /// Get the details of a place based on its resource name, which is a string in the `places/{place_id}` format. + /// public class GetRequest : MapsPlacesBaseServiceRequest { /// Constructs a new Get request. @@ -449,10 +450,7 @@ public GetRequest(Google.Apis.Services.IClientService service, string name) : ba InitParameters(); } - /// - /// Required. A place ID returned in a Place (with "places/" prefix), or equivalently the name in the same - /// Place. Format: `places/{place_id}`. - /// + /// Required. The resource name of a place, in the `places/{place_id}` format. [Google.Apis.Util.RequestParameterAttribute("name", Google.Apis.Util.RequestParameterType.Path)] public virtual string Name { get; private set; } @@ -1010,8 +1008,7 @@ public class GoogleMapsPlacesV1Place : Google.Apis.Requests.IDirectResponseSchem public virtual System.Nullable MenuForChildren { get; set; } /// - /// An ID representing this place which may be used to look up this place again (a.k.a. the API "resource" name: - /// places/place_id). + /// This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place. /// [Newtonsoft.Json.JsonPropertyAttribute("name")] public virtual string Name { get; set; } diff --git a/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.csproj b/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.csproj index 15b53af630..d3e1e9cae8 100644 --- a/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.csproj +++ b/Src/Generated/Google.Apis.MapsPlaces.v1/Google.Apis.MapsPlaces.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MapsPlaces.v1 Client Library - 1.65.0.3260 + 1.66.0.3301 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Places v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.MigrationCenterAPI.v1/Google.Apis.MigrationCenterAPI.v1.csproj b/Src/Generated/Google.Apis.MigrationCenterAPI.v1/Google.Apis.MigrationCenterAPI.v1.csproj index 33aed0ab12..a2d9fb2e1a 100644 --- a/Src/Generated/Google.Apis.MigrationCenterAPI.v1/Google.Apis.MigrationCenterAPI.v1.csproj +++ b/Src/Generated/Google.Apis.MigrationCenterAPI.v1/Google.Apis.MigrationCenterAPI.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MigrationCenterAPI.v1 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Migrationcenter v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.MigrationCenterAPI.v1alpha1/Google.Apis.MigrationCenterAPI.v1alpha1.csproj b/Src/Generated/Google.Apis.MigrationCenterAPI.v1alpha1/Google.Apis.MigrationCenterAPI.v1alpha1.csproj index a6a812ad31..0e7c467946 100644 --- a/Src/Generated/Google.Apis.MigrationCenterAPI.v1alpha1/Google.Apis.MigrationCenterAPI.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.MigrationCenterAPI.v1alpha1/Google.Apis.MigrationCenterAPI.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.MigrationCenterAPI.v1alpha1 Client Library - 1.65.0.3290 + 1.66.0.3290 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Migrationcenter v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.cs b/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.cs index 836373850f..51b8da87dd 100644 --- a/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.cs +++ b/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.cs @@ -2144,26 +2144,29 @@ public class DataSet : Google.Apis.Requests.IDirectResponseSchema } /// - /// A chart dimension. Dimensions are a structured labewl, class, or category for a set of measurements in your - /// data. + /// Preview: A chart dimension for an SQL query. This is applied over the x-axis. This is a preview feature and may + /// be subject to change before final release. /// public class Dimension : Google.Apis.Requests.IDirectResponseSchema { - /// The name of the column in the source SQL query that is used to chart the dimension. + /// + /// Required. The name of the column in the source SQL query that is used to chart the dimension. + /// [Newtonsoft.Json.JsonPropertyAttribute("column")] public virtual string Column { get; set; } /// - /// The type of the dimension column. This is relevant only if one of the bin_size fields is set. If it is - /// empty, the type TIMESTAMP or INT64 will be assumed based on which bin_size field is set. If populated, this - /// should be set to one of the following types: DATE, TIME, DATETIME, TIMESTAMP, BIGNUMERIC, INT64, NUMERIC, - /// FLOAT64. + /// Optional. The type of the dimension column. This is relevant only if one of the bin_size fields is set. If + /// it is empty, the type TIMESTAMP or INT64 will be assumed based on which bin_size field is set. If populated, + /// this should be set to one of the following types: DATE, TIME, DATETIME, TIMESTAMP, BIGNUMERIC, INT64, + /// NUMERIC, FLOAT64. /// [Newtonsoft.Json.JsonPropertyAttribute("columnType")] public virtual string ColumnType { get; set; } /// - /// float_bin_size is used when the column type used for a dimension is a floating point numeric column. + /// Optional. float_bin_size is used when the column type used for a dimension is a floating point numeric + /// column. /// [Newtonsoft.Json.JsonPropertyAttribute("floatBinSize")] public virtual System.Nullable FloatBinSize { get; set; } @@ -2191,7 +2194,8 @@ public class Dimension : Google.Apis.Requests.IDirectResponseSchema /// /// time_bin_size is used when the data type specified by column is a time type and the bin size is determined - /// by a time duration. + /// by a time duration. If column_type is DATE, this must be a whole value multiple of 1 day. If column_type is + /// TIME, this must be less than or equal to 24 hours. /// [Newtonsoft.Json.JsonPropertyAttribute("timeBinSize")] public virtual object TimeBinSize { get; set; } @@ -2557,19 +2561,20 @@ public class LogsPanel : Google.Apis.Requests.IDirectResponseSchema } /// - /// A chart measure. Measures represent a measured property in your chart data such as rainfall in inches, number of - /// units sold, revenue gained, etc. + /// Preview: A chart measure for an SQL query. This is applied over the y-axis. This is a preview feature and may be + /// subject to change before final release. /// public class Measure : Google.Apis.Requests.IDirectResponseSchema { /// - /// The aggregation function applied to the input column. This must not be set to "none" unless binning is - /// disabled on the dimension. The aggregation function is used to group points on the dimension bins. + /// Required. The aggregation function applied to the input column. This must not be set to "none" unless + /// binning is disabled on the dimension. The aggregation function is used to group points on the dimension + /// bins. /// [Newtonsoft.Json.JsonPropertyAttribute("aggregationFunction")] public virtual AggregationFunction AggregationFunction { get; set; } - /// The column name within the dataset used for the measure. + /// Required. The column name within in the dataset used for the measure. [Newtonsoft.Json.JsonPropertyAttribute("column")] public virtual string Column { get; set; } @@ -3015,19 +3020,6 @@ public class PieChart : Google.Apis.Requests.IDirectResponseSchema /// Groups a time series query definition. public class PieChartDataSet : Google.Apis.Requests.IDirectResponseSchema { - /// - /// A dimension is a structured label, class, or category for a set of measurements in your data. - /// - [Newtonsoft.Json.JsonPropertyAttribute("dimensions")] - public virtual System.Collections.Generic.IList Dimensions { get; set; } - - /// - /// A measure is a measured value of a property in your data. For example, rainfall in inches, number of units - /// sold, revenue gained, etc. - /// - [Newtonsoft.Json.JsonPropertyAttribute("measures")] - public virtual System.Collections.Generic.IList Measures { get; set; } - /// /// Optional. The lower bound on data point frequency for this data set, implemented by specifying the minimum /// alignment period to use in a time series query. For example, if the data is published once every 10 minutes, diff --git a/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.csproj b/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.csproj index dd45158df0..c9d6880fb6 100644 --- a/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.csproj +++ b/Src/Generated/Google.Apis.Monitoring.v1/Google.Apis.Monitoring.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Monitoring.v1 Client Library - 1.65.0.3295 + 1.66.0.3301 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Monitoring v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Monitoring.v3/Google.Apis.Monitoring.v3.csproj b/Src/Generated/Google.Apis.Monitoring.v3/Google.Apis.Monitoring.v3.csproj index 19746b6323..ef4c890866 100644 --- a/Src/Generated/Google.Apis.Monitoring.v3/Google.Apis.Monitoring.v3.csproj +++ b/Src/Generated/Google.Apis.Monitoring.v3/Google.Apis.Monitoring.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Monitoring.v3 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Monitoring v3 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.MyBusinessAccountManagement.v1/Google.Apis.MyBusinessAccountManagement.v1.csproj b/Src/Generated/Google.Apis.MyBusinessAccountManagement.v1/Google.Apis.MyBusinessAccountManagement.v1.csproj index e7d036bda7..f1871f38a4 100644 --- a/Src/Generated/Google.Apis.MyBusinessAccountManagement.v1/Google.Apis.MyBusinessAccountManagement.v1.csproj +++ b/Src/Generated/Google.Apis.MyBusinessAccountManagement.v1/Google.Apis.MyBusinessAccountManagement.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MyBusinessAccountManagement.v1 Client Library - 1.65.0.2939 + 1.66.0.2939 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Mybusinessaccountmanagement v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.MyBusinessBusinessInformation.v1/Google.Apis.MyBusinessBusinessInformation.v1.csproj b/Src/Generated/Google.Apis.MyBusinessBusinessInformation.v1/Google.Apis.MyBusinessBusinessInformation.v1.csproj index 2bafae9b73..dda0b7b58b 100644 --- a/Src/Generated/Google.Apis.MyBusinessBusinessInformation.v1/Google.Apis.MyBusinessBusinessInformation.v1.csproj +++ b/Src/Generated/Google.Apis.MyBusinessBusinessInformation.v1/Google.Apis.MyBusinessBusinessInformation.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MyBusinessBusinessInformation.v1 Client Library - 1.65.0.3254 + 1.66.0.3254 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Mybusinessbusinessinformation v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.MyBusinessLodging.v1/Google.Apis.MyBusinessLodging.v1.csproj b/Src/Generated/Google.Apis.MyBusinessLodging.v1/Google.Apis.MyBusinessLodging.v1.csproj index f207951172..619d0252e0 100644 --- a/Src/Generated/Google.Apis.MyBusinessLodging.v1/Google.Apis.MyBusinessLodging.v1.csproj +++ b/Src/Generated/Google.Apis.MyBusinessLodging.v1/Google.Apis.MyBusinessLodging.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MyBusinessLodging.v1 Client Library - 1.65.0.3225 + 1.66.0.3225 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Mybusinesslodging v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.MyBusinessNotificationSettings.v1/Google.Apis.MyBusinessNotificationSettings.v1.csproj b/Src/Generated/Google.Apis.MyBusinessNotificationSettings.v1/Google.Apis.MyBusinessNotificationSettings.v1.csproj index 6f9af260ef..920a8ec4d6 100644 --- a/Src/Generated/Google.Apis.MyBusinessNotificationSettings.v1/Google.Apis.MyBusinessNotificationSettings.v1.csproj +++ b/Src/Generated/Google.Apis.MyBusinessNotificationSettings.v1/Google.Apis.MyBusinessNotificationSettings.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MyBusinessNotificationSettings.v1 Client Library - 1.65.0.3106 + 1.66.0.3106 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Mybusinessnotifications v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.MyBusinessPlaceActions.v1/Google.Apis.MyBusinessPlaceActions.v1.csproj b/Src/Generated/Google.Apis.MyBusinessPlaceActions.v1/Google.Apis.MyBusinessPlaceActions.v1.csproj index b6c80c770e..e6cb929f72 100644 --- a/Src/Generated/Google.Apis.MyBusinessPlaceActions.v1/Google.Apis.MyBusinessPlaceActions.v1.csproj +++ b/Src/Generated/Google.Apis.MyBusinessPlaceActions.v1/Google.Apis.MyBusinessPlaceActions.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MyBusinessPlaceActions.v1 Client Library - 1.65.0.2890 + 1.66.0.2890 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Mybusinessplaceactions v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.MyBusinessQA.v1/Google.Apis.MyBusinessQA.v1.csproj b/Src/Generated/Google.Apis.MyBusinessQA.v1/Google.Apis.MyBusinessQA.v1.csproj index 3036908fe2..8eaba0cab9 100644 --- a/Src/Generated/Google.Apis.MyBusinessQA.v1/Google.Apis.MyBusinessQA.v1.csproj +++ b/Src/Generated/Google.Apis.MyBusinessQA.v1/Google.Apis.MyBusinessQA.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MyBusinessQA.v1 Client Library - 1.65.0.2890 + 1.66.0.2890 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Mybusinessqanda v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.MyBusinessVerifications.v1/Google.Apis.MyBusinessVerifications.v1.csproj b/Src/Generated/Google.Apis.MyBusinessVerifications.v1/Google.Apis.MyBusinessVerifications.v1.csproj index 59ad6907d3..666c52811e 100644 --- a/Src/Generated/Google.Apis.MyBusinessVerifications.v1/Google.Apis.MyBusinessVerifications.v1.csproj +++ b/Src/Generated/Google.Apis.MyBusinessVerifications.v1/Google.Apis.MyBusinessVerifications.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.MyBusinessVerifications.v1 Client Library - 1.65.0.3178 + 1.66.0.3178 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Mybusinessverifications v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.NetworkManagement.v1/Google.Apis.NetworkManagement.v1.csproj b/Src/Generated/Google.Apis.NetworkManagement.v1/Google.Apis.NetworkManagement.v1.csproj index 94c7f2e05f..b58af4fb35 100644 --- a/Src/Generated/Google.Apis.NetworkManagement.v1/Google.Apis.NetworkManagement.v1.csproj +++ b/Src/Generated/Google.Apis.NetworkManagement.v1/Google.Apis.NetworkManagement.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.NetworkManagement.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networkmanagement v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.NetworkManagement.v1beta1/Google.Apis.NetworkManagement.v1beta1.csproj b/Src/Generated/Google.Apis.NetworkManagement.v1beta1/Google.Apis.NetworkManagement.v1beta1.csproj index 416c2c6d0c..efc0b85cf7 100644 --- a/Src/Generated/Google.Apis.NetworkManagement.v1beta1/Google.Apis.NetworkManagement.v1beta1.csproj +++ b/Src/Generated/Google.Apis.NetworkManagement.v1beta1/Google.Apis.NetworkManagement.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.NetworkManagement.v1beta1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networkmanagement v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.NetworkSecurity.v1/Google.Apis.NetworkSecurity.v1.csproj b/Src/Generated/Google.Apis.NetworkSecurity.v1/Google.Apis.NetworkSecurity.v1.csproj index d14569924b..cdd44df5ef 100644 --- a/Src/Generated/Google.Apis.NetworkSecurity.v1/Google.Apis.NetworkSecurity.v1.csproj +++ b/Src/Generated/Google.Apis.NetworkSecurity.v1/Google.Apis.NetworkSecurity.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.NetworkSecurity.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networksecurity v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.NetworkSecurity.v1beta1/Google.Apis.NetworkSecurity.v1beta1.csproj b/Src/Generated/Google.Apis.NetworkSecurity.v1beta1/Google.Apis.NetworkSecurity.v1beta1.csproj index e76788acd4..c37ee36ef2 100644 --- a/Src/Generated/Google.Apis.NetworkSecurity.v1beta1/Google.Apis.NetworkSecurity.v1beta1.csproj +++ b/Src/Generated/Google.Apis.NetworkSecurity.v1beta1/Google.Apis.NetworkSecurity.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.NetworkSecurity.v1beta1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networksecurity v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.NetworkServices.v1/Google.Apis.NetworkServices.v1.csproj b/Src/Generated/Google.Apis.NetworkServices.v1/Google.Apis.NetworkServices.v1.csproj index 499e1e2cd1..b6fba7a46d 100644 --- a/Src/Generated/Google.Apis.NetworkServices.v1/Google.Apis.NetworkServices.v1.csproj +++ b/Src/Generated/Google.Apis.NetworkServices.v1/Google.Apis.NetworkServices.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.NetworkServices.v1 Client Library - 1.65.0.3282 + 1.66.0.3282 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networkservices v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.NetworkServices.v1beta1/Google.Apis.NetworkServices.v1beta1.csproj b/Src/Generated/Google.Apis.NetworkServices.v1beta1/Google.Apis.NetworkServices.v1beta1.csproj index 0ec0749e37..979b86225f 100644 --- a/Src/Generated/Google.Apis.NetworkServices.v1beta1/Google.Apis.NetworkServices.v1beta1.csproj +++ b/Src/Generated/Google.Apis.NetworkServices.v1beta1/Google.Apis.NetworkServices.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.NetworkServices.v1beta1 Client Library - 1.65.0.3282 + 1.66.0.3282 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networkservices v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Networkconnectivity.v1/Google.Apis.Networkconnectivity.v1.csproj b/Src/Generated/Google.Apis.Networkconnectivity.v1/Google.Apis.Networkconnectivity.v1.csproj index 26b5d1f3f3..f20d598af5 100644 --- a/Src/Generated/Google.Apis.Networkconnectivity.v1/Google.Apis.Networkconnectivity.v1.csproj +++ b/Src/Generated/Google.Apis.Networkconnectivity.v1/Google.Apis.Networkconnectivity.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Networkconnectivity.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networkconnectivity v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Networkconnectivity.v1alpha1/Google.Apis.Networkconnectivity.v1alpha1.csproj b/Src/Generated/Google.Apis.Networkconnectivity.v1alpha1/Google.Apis.Networkconnectivity.v1alpha1.csproj index 96c9118cb4..7ed0d8b00b 100644 --- a/Src/Generated/Google.Apis.Networkconnectivity.v1alpha1/Google.Apis.Networkconnectivity.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.Networkconnectivity.v1alpha1/Google.Apis.Networkconnectivity.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.Networkconnectivity.v1alpha1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Networkconnectivity v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.OSConfig.v1/Google.Apis.OSConfig.v1.csproj b/Src/Generated/Google.Apis.OSConfig.v1/Google.Apis.OSConfig.v1.csproj index d2a7f580f0..c3eb3c8cf8 100644 --- a/Src/Generated/Google.Apis.OSConfig.v1/Google.Apis.OSConfig.v1.csproj +++ b/Src/Generated/Google.Apis.OSConfig.v1/Google.Apis.OSConfig.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.OSConfig.v1 Client Library - 1.65.0.3160 + 1.66.0.3160 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Osconfig v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.OSConfig.v1alpha/Google.Apis.OSConfig.v1alpha.csproj b/Src/Generated/Google.Apis.OSConfig.v1alpha/Google.Apis.OSConfig.v1alpha.csproj index 28467bea5e..75d74c8a7b 100644 --- a/Src/Generated/Google.Apis.OSConfig.v1alpha/Google.Apis.OSConfig.v1alpha.csproj +++ b/Src/Generated/Google.Apis.OSConfig.v1alpha/Google.Apis.OSConfig.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.OSConfig.v1alpha Client Library - 1.65.0.3139 + 1.66.0.3139 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Osconfig v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.OSConfig.v1beta/Google.Apis.OSConfig.v1beta.csproj b/Src/Generated/Google.Apis.OSConfig.v1beta/Google.Apis.OSConfig.v1beta.csproj index aa227409cf..babeb7b8dd 100644 --- a/Src/Generated/Google.Apis.OSConfig.v1beta/Google.Apis.OSConfig.v1beta.csproj +++ b/Src/Generated/Google.Apis.OSConfig.v1beta/Google.Apis.OSConfig.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.OSConfig.v1beta Client Library - 1.65.0.2634 + 1.66.0.2634 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Osconfig v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Oauth2.v2/Google.Apis.Oauth2.v2.csproj b/Src/Generated/Google.Apis.Oauth2.v2/Google.Apis.Oauth2.v2.csproj index c8bf6172e8..cf461185e1 100644 --- a/Src/Generated/Google.Apis.Oauth2.v2/Google.Apis.Oauth2.v2.csproj +++ b/Src/Generated/Google.Apis.Oauth2.v2/Google.Apis.Oauth2.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Oauth2.v2 Client Library - 1.65.0.1869 + 1.66.0.1869 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Oauth2 v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.OnDemandScanning.v1/Google.Apis.OnDemandScanning.v1.csproj b/Src/Generated/Google.Apis.OnDemandScanning.v1/Google.Apis.OnDemandScanning.v1.csproj index 5632e9b655..bcd395336d 100644 --- a/Src/Generated/Google.Apis.OnDemandScanning.v1/Google.Apis.OnDemandScanning.v1.csproj +++ b/Src/Generated/Google.Apis.OnDemandScanning.v1/Google.Apis.OnDemandScanning.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.OnDemandScanning.v1 Client Library - 1.65.0.3259 + 1.66.0.3259 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Ondemandscanning v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.OnDemandScanning.v1beta1/Google.Apis.OnDemandScanning.v1beta1.csproj b/Src/Generated/Google.Apis.OnDemandScanning.v1beta1/Google.Apis.OnDemandScanning.v1beta1.csproj index c5dd91cd23..6debd4c4b3 100644 --- a/Src/Generated/Google.Apis.OnDemandScanning.v1beta1/Google.Apis.OnDemandScanning.v1beta1.csproj +++ b/Src/Generated/Google.Apis.OnDemandScanning.v1beta1/Google.Apis.OnDemandScanning.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.OnDemandScanning.v1beta1 Client Library - 1.65.0.3259 + 1.66.0.3259 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Ondemandscanning v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.OrgPolicyAPI.v2/Google.Apis.OrgPolicyAPI.v2.csproj b/Src/Generated/Google.Apis.OrgPolicyAPI.v2/Google.Apis.OrgPolicyAPI.v2.csproj index 6f3e44271b..4dd56c66fb 100644 --- a/Src/Generated/Google.Apis.OrgPolicyAPI.v2/Google.Apis.OrgPolicyAPI.v2.csproj +++ b/Src/Generated/Google.Apis.OrgPolicyAPI.v2/Google.Apis.OrgPolicyAPI.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.OrgPolicyAPI.v2 Client Library - 1.65.0.3264 + 1.66.0.3264 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Orgpolicy v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PagespeedInsights.v5/Google.Apis.PagespeedInsights.v5.csproj b/Src/Generated/Google.Apis.PagespeedInsights.v5/Google.Apis.PagespeedInsights.v5.csproj index 03191e858c..11768dde11 100644 --- a/Src/Generated/Google.Apis.PagespeedInsights.v5/Google.Apis.PagespeedInsights.v5.csproj +++ b/Src/Generated/Google.Apis.PagespeedInsights.v5/Google.Apis.PagespeedInsights.v5.csproj @@ -3,7 +3,7 @@ Google.Apis.PagespeedInsights.v5 Client Library - 1.65.0.3107 + 1.66.0.3107 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Pagespeedonline v5. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PaymentsResellerSubscription.v1/Google.Apis.PaymentsResellerSubscription.v1.csproj b/Src/Generated/Google.Apis.PaymentsResellerSubscription.v1/Google.Apis.PaymentsResellerSubscription.v1.csproj index e79a49c3c2..106adac22b 100644 --- a/Src/Generated/Google.Apis.PaymentsResellerSubscription.v1/Google.Apis.PaymentsResellerSubscription.v1.csproj +++ b/Src/Generated/Google.Apis.PaymentsResellerSubscription.v1/Google.Apis.PaymentsResellerSubscription.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PaymentsResellerSubscription.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Paymentsresellersubscription v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PeopleService.v1/Google.Apis.PeopleService.v1.csproj b/Src/Generated/Google.Apis.PeopleService.v1/Google.Apis.PeopleService.v1.csproj index c7f3eb5614..bfe23975de 100644 --- a/Src/Generated/Google.Apis.PeopleService.v1/Google.Apis.PeopleService.v1.csproj +++ b/Src/Generated/Google.Apis.PeopleService.v1/Google.Apis.PeopleService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PeopleService.v1 Client Library - 1.65.0.3093 + 1.66.0.3093 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with People v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PlayGrouping.v1alpha1/Google.Apis.PlayGrouping.v1alpha1.csproj b/Src/Generated/Google.Apis.PlayGrouping.v1alpha1/Google.Apis.PlayGrouping.v1alpha1.csproj index 874835c2eb..8ceaee008e 100644 --- a/Src/Generated/Google.Apis.PlayGrouping.v1alpha1/Google.Apis.PlayGrouping.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.PlayGrouping.v1alpha1/Google.Apis.PlayGrouping.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.PlayGrouping.v1alpha1 Client Library - 1.65.0.3164 + 1.66.0.3164 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Playgrouping v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.PlayIntegrity.v1/Google.Apis.PlayIntegrity.v1.csproj b/Src/Generated/Google.Apis.PlayIntegrity.v1/Google.Apis.PlayIntegrity.v1.csproj index c0f55a0f69..12f68764b0 100644 --- a/Src/Generated/Google.Apis.PlayIntegrity.v1/Google.Apis.PlayIntegrity.v1.csproj +++ b/Src/Generated/Google.Apis.PlayIntegrity.v1/Google.Apis.PlayIntegrity.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PlayIntegrity.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Playintegrity v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Playcustomapp.v1/Google.Apis.Playcustomapp.v1.csproj b/Src/Generated/Google.Apis.Playcustomapp.v1/Google.Apis.Playcustomapp.v1.csproj index 8b59c775ee..34e03cf521 100644 --- a/Src/Generated/Google.Apis.Playcustomapp.v1/Google.Apis.Playcustomapp.v1.csproj +++ b/Src/Generated/Google.Apis.Playcustomapp.v1/Google.Apis.Playcustomapp.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Playcustomapp.v1 Client Library - 1.65.0.2490 + 1.66.0.2490 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Playcustomapp v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Playdeveloperreporting.v1alpha1/Google.Apis.Playdeveloperreporting.v1alpha1.csproj b/Src/Generated/Google.Apis.Playdeveloperreporting.v1alpha1/Google.Apis.Playdeveloperreporting.v1alpha1.csproj index 94128fc3ed..f27c2e275c 100644 --- a/Src/Generated/Google.Apis.Playdeveloperreporting.v1alpha1/Google.Apis.Playdeveloperreporting.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.Playdeveloperreporting.v1alpha1/Google.Apis.Playdeveloperreporting.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.Playdeveloperreporting.v1alpha1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Playdeveloperreporting v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Playdeveloperreporting.v1beta1/Google.Apis.Playdeveloperreporting.v1beta1.csproj b/Src/Generated/Google.Apis.Playdeveloperreporting.v1beta1/Google.Apis.Playdeveloperreporting.v1beta1.csproj index d8e667e5fe..994bc4b6e0 100644 --- a/Src/Generated/Google.Apis.Playdeveloperreporting.v1beta1/Google.Apis.Playdeveloperreporting.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Playdeveloperreporting.v1beta1/Google.Apis.Playdeveloperreporting.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Playdeveloperreporting.v1beta1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Playdeveloperreporting v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PolicyAnalyzer.v1/Google.Apis.PolicyAnalyzer.v1.csproj b/Src/Generated/Google.Apis.PolicyAnalyzer.v1/Google.Apis.PolicyAnalyzer.v1.csproj index c4aeb27da4..c0bc52c42f 100644 --- a/Src/Generated/Google.Apis.PolicyAnalyzer.v1/Google.Apis.PolicyAnalyzer.v1.csproj +++ b/Src/Generated/Google.Apis.PolicyAnalyzer.v1/Google.Apis.PolicyAnalyzer.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PolicyAnalyzer.v1 Client Library - 1.65.0.2452 + 1.66.0.2452 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Policyanalyzer v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PolicyAnalyzer.v1beta1/Google.Apis.PolicyAnalyzer.v1beta1.csproj b/Src/Generated/Google.Apis.PolicyAnalyzer.v1beta1/Google.Apis.PolicyAnalyzer.v1beta1.csproj index 2269f7ff77..38751859d2 100644 --- a/Src/Generated/Google.Apis.PolicyAnalyzer.v1beta1/Google.Apis.PolicyAnalyzer.v1beta1.csproj +++ b/Src/Generated/Google.Apis.PolicyAnalyzer.v1beta1/Google.Apis.PolicyAnalyzer.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.PolicyAnalyzer.v1beta1 Client Library - 1.65.0.2409 + 1.66.0.2409 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Policyanalyzer v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PolicySimulator.v1/Google.Apis.PolicySimulator.v1.csproj b/Src/Generated/Google.Apis.PolicySimulator.v1/Google.Apis.PolicySimulator.v1.csproj index 9c36cf981d..cc6b543c72 100644 --- a/Src/Generated/Google.Apis.PolicySimulator.v1/Google.Apis.PolicySimulator.v1.csproj +++ b/Src/Generated/Google.Apis.PolicySimulator.v1/Google.Apis.PolicySimulator.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PolicySimulator.v1 Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Policysimulator v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PolicyTroubleshooter.v1/Google.Apis.PolicyTroubleshooter.v1.csproj b/Src/Generated/Google.Apis.PolicyTroubleshooter.v1/Google.Apis.PolicyTroubleshooter.v1.csproj index 3376e8f6c9..121a9ab638 100644 --- a/Src/Generated/Google.Apis.PolicyTroubleshooter.v1/Google.Apis.PolicyTroubleshooter.v1.csproj +++ b/Src/Generated/Google.Apis.PolicyTroubleshooter.v1/Google.Apis.PolicyTroubleshooter.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PolicyTroubleshooter.v1 Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Policytroubleshooter v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PolicyTroubleshooter.v1beta/Google.Apis.PolicyTroubleshooter.v1beta.csproj b/Src/Generated/Google.Apis.PolicyTroubleshooter.v1beta/Google.Apis.PolicyTroubleshooter.v1beta.csproj index e71754b2dc..7b42d8b0cf 100644 --- a/Src/Generated/Google.Apis.PolicyTroubleshooter.v1beta/Google.Apis.PolicyTroubleshooter.v1beta.csproj +++ b/Src/Generated/Google.Apis.PolicyTroubleshooter.v1beta/Google.Apis.PolicyTroubleshooter.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.PolicyTroubleshooter.v1beta Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Policytroubleshooter v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PolyService.v1/Google.Apis.PolyService.v1.csproj b/Src/Generated/Google.Apis.PolyService.v1/Google.Apis.PolyService.v1.csproj index 1d49729c0a..431fe7f6f9 100644 --- a/Src/Generated/Google.Apis.PolyService.v1/Google.Apis.PolyService.v1.csproj +++ b/Src/Generated/Google.Apis.PolyService.v1/Google.Apis.PolyService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PolyService.v1 Client Library - 1.65.0.2168 + 1.66.0.2168 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Poly v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.PostmasterTools.v1/Google.Apis.PostmasterTools.v1.csproj b/Src/Generated/Google.Apis.PostmasterTools.v1/Google.Apis.PostmasterTools.v1.csproj index 74f712ba68..8cf642c9df 100644 --- a/Src/Generated/Google.Apis.PostmasterTools.v1/Google.Apis.PostmasterTools.v1.csproj +++ b/Src/Generated/Google.Apis.PostmasterTools.v1/Google.Apis.PostmasterTools.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PostmasterTools.v1 Client Library - 1.65.0.3171 + 1.66.0.3171 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gmailpostmastertools v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PostmasterTools.v1beta1/Google.Apis.PostmasterTools.v1beta1.csproj b/Src/Generated/Google.Apis.PostmasterTools.v1beta1/Google.Apis.PostmasterTools.v1beta1.csproj index cd4863f875..8c9a77579a 100644 --- a/Src/Generated/Google.Apis.PostmasterTools.v1beta1/Google.Apis.PostmasterTools.v1beta1.csproj +++ b/Src/Generated/Google.Apis.PostmasterTools.v1beta1/Google.Apis.PostmasterTools.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.PostmasterTools.v1beta1 Client Library - 1.65.0.3171 + 1.66.0.3171 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Gmailpostmastertools v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PublicCertificateAuthority.v1/Google.Apis.PublicCertificateAuthority.v1.csproj b/Src/Generated/Google.Apis.PublicCertificateAuthority.v1/Google.Apis.PublicCertificateAuthority.v1.csproj index 1d49bc2898..e6b99e93de 100644 --- a/Src/Generated/Google.Apis.PublicCertificateAuthority.v1/Google.Apis.PublicCertificateAuthority.v1.csproj +++ b/Src/Generated/Google.Apis.PublicCertificateAuthority.v1/Google.Apis.PublicCertificateAuthority.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PublicCertificateAuthority.v1 Client Library - 1.65.0.3036 + 1.66.0.3036 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Publicca v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PublicCertificateAuthority.v1alpha1/Google.Apis.PublicCertificateAuthority.v1alpha1.csproj b/Src/Generated/Google.Apis.PublicCertificateAuthority.v1alpha1/Google.Apis.PublicCertificateAuthority.v1alpha1.csproj index d0b682d3cb..3f92f1517c 100644 --- a/Src/Generated/Google.Apis.PublicCertificateAuthority.v1alpha1/Google.Apis.PublicCertificateAuthority.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.PublicCertificateAuthority.v1alpha1/Google.Apis.PublicCertificateAuthority.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.PublicCertificateAuthority.v1alpha1 Client Library - 1.65.0.2979 + 1.66.0.2979 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Publicca v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PublicCertificateAuthority.v1beta1/Google.Apis.PublicCertificateAuthority.v1beta1.csproj b/Src/Generated/Google.Apis.PublicCertificateAuthority.v1beta1/Google.Apis.PublicCertificateAuthority.v1beta1.csproj index 88fd6435af..93261d467a 100644 --- a/Src/Generated/Google.Apis.PublicCertificateAuthority.v1beta1/Google.Apis.PublicCertificateAuthority.v1beta1.csproj +++ b/Src/Generated/Google.Apis.PublicCertificateAuthority.v1beta1/Google.Apis.PublicCertificateAuthority.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.PublicCertificateAuthority.v1beta1 Client Library - 1.65.0.2979 + 1.66.0.2979 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Publicca v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Pubsub.v1/Google.Apis.Pubsub.v1.csproj b/Src/Generated/Google.Apis.Pubsub.v1/Google.Apis.Pubsub.v1.csproj index 3b32db9aea..7869b6b661 100644 --- a/Src/Generated/Google.Apis.Pubsub.v1/Google.Apis.Pubsub.v1.csproj +++ b/Src/Generated/Google.Apis.Pubsub.v1/Google.Apis.Pubsub.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Pubsub.v1 Client Library - 1.65.0.3281 + 1.66.0.3281 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Pubsub v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Pubsub.v1beta1a/Google.Apis.Pubsub.v1beta1a.csproj b/Src/Generated/Google.Apis.Pubsub.v1beta1a/Google.Apis.Pubsub.v1beta1a.csproj index 355223c331..285f843e64 100644 --- a/Src/Generated/Google.Apis.Pubsub.v1beta1a/Google.Apis.Pubsub.v1beta1a.csproj +++ b/Src/Generated/Google.Apis.Pubsub.v1beta1a/Google.Apis.Pubsub.v1beta1a.csproj @@ -3,7 +3,7 @@ Google.Apis.Pubsub.v1beta1a Client Library - 1.65.0.3163 + 1.66.0.3163 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Pubsub v1beta1a. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Pubsub.v1beta2/Google.Apis.Pubsub.v1beta2.csproj b/Src/Generated/Google.Apis.Pubsub.v1beta2/Google.Apis.Pubsub.v1beta2.csproj index 94d179ddf9..b0087c8d71 100644 --- a/Src/Generated/Google.Apis.Pubsub.v1beta2/Google.Apis.Pubsub.v1beta2.csproj +++ b/Src/Generated/Google.Apis.Pubsub.v1beta2/Google.Apis.Pubsub.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.Pubsub.v1beta2 Client Library - 1.65.0.3281 + 1.66.0.3281 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Pubsub v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.PubsubLite.v1/Google.Apis.PubsubLite.v1.csproj b/Src/Generated/Google.Apis.PubsubLite.v1/Google.Apis.PubsubLite.v1.csproj index b26fbedd12..8bcee7dc08 100644 --- a/Src/Generated/Google.Apis.PubsubLite.v1/Google.Apis.PubsubLite.v1.csproj +++ b/Src/Generated/Google.Apis.PubsubLite.v1/Google.Apis.PubsubLite.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.PubsubLite.v1 Client Library - 1.65.0.3137 + 1.66.0.3137 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Pubsublite v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.RapidMigrationAssessment.v1/Google.Apis.RapidMigrationAssessment.v1.csproj b/Src/Generated/Google.Apis.RapidMigrationAssessment.v1/Google.Apis.RapidMigrationAssessment.v1.csproj index 7320d609f9..6a4452d9ae 100644 --- a/Src/Generated/Google.Apis.RapidMigrationAssessment.v1/Google.Apis.RapidMigrationAssessment.v1.csproj +++ b/Src/Generated/Google.Apis.RapidMigrationAssessment.v1/Google.Apis.RapidMigrationAssessment.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.RapidMigrationAssessment.v1 Client Library - 1.65.0.3157 + 1.66.0.3157 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Rapidmigrationassessment v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.RealTimeBidding.v1/Google.Apis.RealTimeBidding.v1.csproj b/Src/Generated/Google.Apis.RealTimeBidding.v1/Google.Apis.RealTimeBidding.v1.csproj index 5ff4c290c4..60ed3ccb14 100644 --- a/Src/Generated/Google.Apis.RealTimeBidding.v1/Google.Apis.RealTimeBidding.v1.csproj +++ b/Src/Generated/Google.Apis.RealTimeBidding.v1/Google.Apis.RealTimeBidding.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.RealTimeBidding.v1 Client Library - 1.65.0.3233 + 1.66.0.3233 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Realtimebidding v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.RecaptchaEnterprise.v1/Google.Apis.RecaptchaEnterprise.v1.csproj b/Src/Generated/Google.Apis.RecaptchaEnterprise.v1/Google.Apis.RecaptchaEnterprise.v1.csproj index e804ab0881..a1f8543ec2 100644 --- a/Src/Generated/Google.Apis.RecaptchaEnterprise.v1/Google.Apis.RecaptchaEnterprise.v1.csproj +++ b/Src/Generated/Google.Apis.RecaptchaEnterprise.v1/Google.Apis.RecaptchaEnterprise.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.RecaptchaEnterprise.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Recaptchaenterprise v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.RecommendationsAI.v1beta1/Google.Apis.RecommendationsAI.v1beta1.csproj b/Src/Generated/Google.Apis.RecommendationsAI.v1beta1/Google.Apis.RecommendationsAI.v1beta1.csproj index 28643f5e1d..d6acaeb09b 100644 --- a/Src/Generated/Google.Apis.RecommendationsAI.v1beta1/Google.Apis.RecommendationsAI.v1beta1.csproj +++ b/Src/Generated/Google.Apis.RecommendationsAI.v1beta1/Google.Apis.RecommendationsAI.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.RecommendationsAI.v1beta1 Client Library - 1.65.0.3143 + 1.66.0.3143 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Recommendationengine v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Recommender.v1/Google.Apis.Recommender.v1.csproj b/Src/Generated/Google.Apis.Recommender.v1/Google.Apis.Recommender.v1.csproj index 15673237f1..e75ac4948a 100644 --- a/Src/Generated/Google.Apis.Recommender.v1/Google.Apis.Recommender.v1.csproj +++ b/Src/Generated/Google.Apis.Recommender.v1/Google.Apis.Recommender.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Recommender.v1 Client Library - 1.65.0.3258 + 1.66.0.3258 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Recommender v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Recommender.v1beta1/Google.Apis.Recommender.v1beta1.csproj b/Src/Generated/Google.Apis.Recommender.v1beta1/Google.Apis.Recommender.v1beta1.csproj index aed833e39f..a2d24c15f0 100644 --- a/Src/Generated/Google.Apis.Recommender.v1beta1/Google.Apis.Recommender.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Recommender.v1beta1/Google.Apis.Recommender.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Recommender.v1beta1 Client Library - 1.65.0.3293 + 1.66.0.3293 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Recommender v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Reseller.v1/Google.Apis.Reseller.v1.csproj b/Src/Generated/Google.Apis.Reseller.v1/Google.Apis.Reseller.v1.csproj index 6e37019384..897c219e47 100644 --- a/Src/Generated/Google.Apis.Reseller.v1/Google.Apis.Reseller.v1.csproj +++ b/Src/Generated/Google.Apis.Reseller.v1/Google.Apis.Reseller.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Reseller.v1 Client Library - 1.65.0.3085 + 1.66.0.3085 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Reseller v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ResourceSettings.v1/Google.Apis.ResourceSettings.v1.csproj b/Src/Generated/Google.Apis.ResourceSettings.v1/Google.Apis.ResourceSettings.v1.csproj index 8e36caa86b..9ab1a7bda6 100644 --- a/Src/Generated/Google.Apis.ResourceSettings.v1/Google.Apis.ResourceSettings.v1.csproj +++ b/Src/Generated/Google.Apis.ResourceSettings.v1/Google.Apis.ResourceSettings.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ResourceSettings.v1 Client Library - 1.65.0.2413 + 1.66.0.2413 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Resourcesettings v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SA360.v0/Google.Apis.SA360.v0.csproj b/Src/Generated/Google.Apis.SA360.v0/Google.Apis.SA360.v0.csproj index 1c241dd375..9aa9e07bee 100644 --- a/Src/Generated/Google.Apis.SA360.v0/Google.Apis.SA360.v0.csproj +++ b/Src/Generated/Google.Apis.SA360.v0/Google.Apis.SA360.v0.csproj @@ -3,7 +3,7 @@ Google.Apis.SA360.v0 Client Library - 1.65.0.3231 + 1.66.0.3231 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Searchads360 v0. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SQLAdmin.v1/Google.Apis.SQLAdmin.v1.csproj b/Src/Generated/Google.Apis.SQLAdmin.v1/Google.Apis.SQLAdmin.v1.csproj index e7c233e356..279b19a463 100644 --- a/Src/Generated/Google.Apis.SQLAdmin.v1/Google.Apis.SQLAdmin.v1.csproj +++ b/Src/Generated/Google.Apis.SQLAdmin.v1/Google.Apis.SQLAdmin.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.SQLAdmin.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Sqladmin v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SQLAdmin.v1beta4/Google.Apis.SQLAdmin.v1beta4.csproj b/Src/Generated/Google.Apis.SQLAdmin.v1beta4/Google.Apis.SQLAdmin.v1beta4.csproj index 5e3f9f0f6f..10c51b62a7 100644 --- a/Src/Generated/Google.Apis.SQLAdmin.v1beta4/Google.Apis.SQLAdmin.v1beta4.csproj +++ b/Src/Generated/Google.Apis.SQLAdmin.v1beta4/Google.Apis.SQLAdmin.v1beta4.csproj @@ -3,7 +3,7 @@ Google.Apis.SQLAdmin.v1beta4 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Sqladmin v1beta4. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Safebrowsing.v4/Google.Apis.Safebrowsing.v4.csproj b/Src/Generated/Google.Apis.Safebrowsing.v4/Google.Apis.Safebrowsing.v4.csproj index d14d647e19..659aeef4a8 100644 --- a/Src/Generated/Google.Apis.Safebrowsing.v4/Google.Apis.Safebrowsing.v4.csproj +++ b/Src/Generated/Google.Apis.Safebrowsing.v4/Google.Apis.Safebrowsing.v4.csproj @@ -3,7 +3,7 @@ Google.Apis.Safebrowsing.v4 Client Library - 1.65.0.2968 + 1.66.0.2968 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Safebrowsing v4. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.Safebrowsing.v5/Google.Apis.Safebrowsing.v5.csproj b/Src/Generated/Google.Apis.Safebrowsing.v5/Google.Apis.Safebrowsing.v5.csproj index c23159eaec..9b09fc294d 100644 --- a/Src/Generated/Google.Apis.Safebrowsing.v5/Google.Apis.Safebrowsing.v5.csproj +++ b/Src/Generated/Google.Apis.Safebrowsing.v5/Google.Apis.Safebrowsing.v5.csproj @@ -3,7 +3,7 @@ Google.Apis.Safebrowsing.v5 Client Library - 1.65.0.3195 + 1.66.0.3195 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Safebrowsing v5. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.Script.v1/Google.Apis.Script.v1.csproj b/Src/Generated/Google.Apis.Script.v1/Google.Apis.Script.v1.csproj index a0423b7916..0a85f963a0 100644 --- a/Src/Generated/Google.Apis.Script.v1/Google.Apis.Script.v1.csproj +++ b/Src/Generated/Google.Apis.Script.v1/Google.Apis.Script.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Script.v1 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Script v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SearchConsole.v1/Google.Apis.SearchConsole.v1.csproj b/Src/Generated/Google.Apis.SearchConsole.v1/Google.Apis.SearchConsole.v1.csproj index 53a3eea052..72fe7a7d59 100644 --- a/Src/Generated/Google.Apis.SearchConsole.v1/Google.Apis.SearchConsole.v1.csproj +++ b/Src/Generated/Google.Apis.SearchConsole.v1/Google.Apis.SearchConsole.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.SearchConsole.v1 Client Library - 1.65.0.3184 + 1.66.0.3184 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Searchconsole v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SecretManager.v1/Google.Apis.SecretManager.v1.csproj b/Src/Generated/Google.Apis.SecretManager.v1/Google.Apis.SecretManager.v1.csproj index c16ecefb05..2cd40d6d9a 100644 --- a/Src/Generated/Google.Apis.SecretManager.v1/Google.Apis.SecretManager.v1.csproj +++ b/Src/Generated/Google.Apis.SecretManager.v1/Google.Apis.SecretManager.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.SecretManager.v1 Client Library - 1.65.0.3270 + 1.66.0.3270 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Secretmanager v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SecretManager.v1beta1/Google.Apis.SecretManager.v1beta1.csproj b/Src/Generated/Google.Apis.SecretManager.v1beta1/Google.Apis.SecretManager.v1beta1.csproj index 4218371e45..fe50267f40 100644 --- a/Src/Generated/Google.Apis.SecretManager.v1beta1/Google.Apis.SecretManager.v1beta1.csproj +++ b/Src/Generated/Google.Apis.SecretManager.v1beta1/Google.Apis.SecretManager.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.SecretManager.v1beta1 Client Library - 1.65.0.3270 + 1.66.0.3270 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Secretmanager v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SecurityCommandCenter.v1/Google.Apis.SecurityCommandCenter.v1.csproj b/Src/Generated/Google.Apis.SecurityCommandCenter.v1/Google.Apis.SecurityCommandCenter.v1.csproj index b1b8b2abee..0695db4c13 100644 --- a/Src/Generated/Google.Apis.SecurityCommandCenter.v1/Google.Apis.SecurityCommandCenter.v1.csproj +++ b/Src/Generated/Google.Apis.SecurityCommandCenter.v1/Google.Apis.SecurityCommandCenter.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.SecurityCommandCenter.v1 Client Library - 1.65.0.3296 + 1.66.0.3296 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Securitycenter v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta1/Google.Apis.SecurityCommandCenter.v1beta1.csproj b/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta1/Google.Apis.SecurityCommandCenter.v1beta1.csproj index 55291e563d..7e398998e4 100644 --- a/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta1/Google.Apis.SecurityCommandCenter.v1beta1.csproj +++ b/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta1/Google.Apis.SecurityCommandCenter.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.SecurityCommandCenter.v1beta1 Client Library - 1.65.0.3296 + 1.66.0.3296 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Securitycenter v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta2/Google.Apis.SecurityCommandCenter.v1beta2.csproj b/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta2/Google.Apis.SecurityCommandCenter.v1beta2.csproj index e07d0ce3c8..c66fae219a 100644 --- a/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta2/Google.Apis.SecurityCommandCenter.v1beta2.csproj +++ b/Src/Generated/Google.Apis.SecurityCommandCenter.v1beta2/Google.Apis.SecurityCommandCenter.v1beta2.csproj @@ -3,7 +3,7 @@ Google.Apis.SecurityCommandCenter.v1beta2 Client Library - 1.65.0.3296 + 1.66.0.3296 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Securitycenter v1beta2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServerlessVPCAccess.v1/Google.Apis.ServerlessVPCAccess.v1.csproj b/Src/Generated/Google.Apis.ServerlessVPCAccess.v1/Google.Apis.ServerlessVPCAccess.v1.csproj index cdb887497c..159f3a8774 100644 --- a/Src/Generated/Google.Apis.ServerlessVPCAccess.v1/Google.Apis.ServerlessVPCAccess.v1.csproj +++ b/Src/Generated/Google.Apis.ServerlessVPCAccess.v1/Google.Apis.ServerlessVPCAccess.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServerlessVPCAccess.v1 Client Library - 1.65.0.3235 + 1.66.0.3235 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vpcaccess v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServerlessVPCAccess.v1beta1/Google.Apis.ServerlessVPCAccess.v1beta1.csproj b/Src/Generated/Google.Apis.ServerlessVPCAccess.v1beta1/Google.Apis.ServerlessVPCAccess.v1beta1.csproj index 351a9811ca..a7bcebff0e 100644 --- a/Src/Generated/Google.Apis.ServerlessVPCAccess.v1beta1/Google.Apis.ServerlessVPCAccess.v1beta1.csproj +++ b/Src/Generated/Google.Apis.ServerlessVPCAccess.v1beta1/Google.Apis.ServerlessVPCAccess.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServerlessVPCAccess.v1beta1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vpcaccess v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceConsumerManagement.v1/Google.Apis.ServiceConsumerManagement.v1.csproj b/Src/Generated/Google.Apis.ServiceConsumerManagement.v1/Google.Apis.ServiceConsumerManagement.v1.csproj index 6a3b622da2..acdba9183c 100644 --- a/Src/Generated/Google.Apis.ServiceConsumerManagement.v1/Google.Apis.ServiceConsumerManagement.v1.csproj +++ b/Src/Generated/Google.Apis.ServiceConsumerManagement.v1/Google.Apis.ServiceConsumerManagement.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceConsumerManagement.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Serviceconsumermanagement v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceConsumerManagement.v1beta1/Google.Apis.ServiceConsumerManagement.v1beta1.csproj b/Src/Generated/Google.Apis.ServiceConsumerManagement.v1beta1/Google.Apis.ServiceConsumerManagement.v1beta1.csproj index de79f6d26a..b9f72d345f 100644 --- a/Src/Generated/Google.Apis.ServiceConsumerManagement.v1beta1/Google.Apis.ServiceConsumerManagement.v1beta1.csproj +++ b/Src/Generated/Google.Apis.ServiceConsumerManagement.v1beta1/Google.Apis.ServiceConsumerManagement.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceConsumerManagement.v1beta1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Serviceconsumermanagement v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceControl.v1/Google.Apis.ServiceControl.v1.csproj b/Src/Generated/Google.Apis.ServiceControl.v1/Google.Apis.ServiceControl.v1.csproj index 50708130ae..fc20d42716 100644 --- a/Src/Generated/Google.Apis.ServiceControl.v1/Google.Apis.ServiceControl.v1.csproj +++ b/Src/Generated/Google.Apis.ServiceControl.v1/Google.Apis.ServiceControl.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceControl.v1 Client Library - 1.65.0.3130 + 1.66.0.3130 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Servicecontrol v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceControl.v2/Google.Apis.ServiceControl.v2.csproj b/Src/Generated/Google.Apis.ServiceControl.v2/Google.Apis.ServiceControl.v2.csproj index 75ecfb65b6..b12cfd448a 100644 --- a/Src/Generated/Google.Apis.ServiceControl.v2/Google.Apis.ServiceControl.v2.csproj +++ b/Src/Generated/Google.Apis.ServiceControl.v2/Google.Apis.ServiceControl.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceControl.v2 Client Library - 1.65.0.3138 + 1.66.0.3138 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Servicecontrol v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceDirectory.v1/Google.Apis.ServiceDirectory.v1.csproj b/Src/Generated/Google.Apis.ServiceDirectory.v1/Google.Apis.ServiceDirectory.v1.csproj index 345e31f82c..690e45bff7 100644 --- a/Src/Generated/Google.Apis.ServiceDirectory.v1/Google.Apis.ServiceDirectory.v1.csproj +++ b/Src/Generated/Google.Apis.ServiceDirectory.v1/Google.Apis.ServiceDirectory.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceDirectory.v1 Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Servicedirectory v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceDirectory.v1beta1/Google.Apis.ServiceDirectory.v1beta1.csproj b/Src/Generated/Google.Apis.ServiceDirectory.v1beta1/Google.Apis.ServiceDirectory.v1beta1.csproj index 910cbc0d27..439cefeb7f 100644 --- a/Src/Generated/Google.Apis.ServiceDirectory.v1beta1/Google.Apis.ServiceDirectory.v1beta1.csproj +++ b/Src/Generated/Google.Apis.ServiceDirectory.v1beta1/Google.Apis.ServiceDirectory.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceDirectory.v1beta1 Client Library - 1.65.0.3272 + 1.66.0.3272 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Servicedirectory v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceManagement.v1/Google.Apis.ServiceManagement.v1.csproj b/Src/Generated/Google.Apis.ServiceManagement.v1/Google.Apis.ServiceManagement.v1.csproj index aa14677a95..196774ebb6 100644 --- a/Src/Generated/Google.Apis.ServiceManagement.v1/Google.Apis.ServiceManagement.v1.csproj +++ b/Src/Generated/Google.Apis.ServiceManagement.v1/Google.Apis.ServiceManagement.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceManagement.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Servicemanagement v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceNetworking.v1/Google.Apis.ServiceNetworking.v1.csproj b/Src/Generated/Google.Apis.ServiceNetworking.v1/Google.Apis.ServiceNetworking.v1.csproj index a8609a05d0..2306b20a0c 100644 --- a/Src/Generated/Google.Apis.ServiceNetworking.v1/Google.Apis.ServiceNetworking.v1.csproj +++ b/Src/Generated/Google.Apis.ServiceNetworking.v1/Google.Apis.ServiceNetworking.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceNetworking.v1 Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Servicenetworking v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceNetworking.v1beta/Google.Apis.ServiceNetworking.v1beta.csproj b/Src/Generated/Google.Apis.ServiceNetworking.v1beta/Google.Apis.ServiceNetworking.v1beta.csproj index 55e1c58f16..b8b21c0fcd 100644 --- a/Src/Generated/Google.Apis.ServiceNetworking.v1beta/Google.Apis.ServiceNetworking.v1beta.csproj +++ b/Src/Generated/Google.Apis.ServiceNetworking.v1beta/Google.Apis.ServiceNetworking.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceNetworking.v1beta Client Library - 1.65.0.3287 + 1.66.0.3287 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Servicenetworking v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceUsage.v1/Google.Apis.ServiceUsage.v1.csproj b/Src/Generated/Google.Apis.ServiceUsage.v1/Google.Apis.ServiceUsage.v1.csproj index 82c9a5ed74..0373bde937 100644 --- a/Src/Generated/Google.Apis.ServiceUsage.v1/Google.Apis.ServiceUsage.v1.csproj +++ b/Src/Generated/Google.Apis.ServiceUsage.v1/Google.Apis.ServiceUsage.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceUsage.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Serviceusage v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ServiceUsage.v1beta1/Google.Apis.ServiceUsage.v1beta1.csproj b/Src/Generated/Google.Apis.ServiceUsage.v1beta1/Google.Apis.ServiceUsage.v1beta1.csproj index 933cfd8373..ec002dea9c 100644 --- a/Src/Generated/Google.Apis.ServiceUsage.v1beta1/Google.Apis.ServiceUsage.v1beta1.csproj +++ b/Src/Generated/Google.Apis.ServiceUsage.v1beta1/Google.Apis.ServiceUsage.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.ServiceUsage.v1beta1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Serviceusage v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Sheets.v4/Google.Apis.Sheets.v4.csproj b/Src/Generated/Google.Apis.Sheets.v4/Google.Apis.Sheets.v4.csproj index 5868d35463..76eef054ce 100644 --- a/Src/Generated/Google.Apis.Sheets.v4/Google.Apis.Sheets.v4.csproj +++ b/Src/Generated/Google.Apis.Sheets.v4/Google.Apis.Sheets.v4.csproj @@ -3,7 +3,7 @@ Google.Apis.Sheets.v4 Client Library - 1.65.0.3148 + 1.66.0.3148 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Sheets v4. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.cs b/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.cs index 830132ef50..d9159baaf9 100644 --- a/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.cs +++ b/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.cs @@ -11916,7 +11916,7 @@ public ReportsResource(Google.Apis.Services.IClientService service) } /// - /// Retrieves merchant performance mertrics matching the search query and optionally segmented by selected + /// Retrieves merchant performance metrics matching the search query and optionally segmented by selected /// dimensions. /// /// The body of the request. @@ -11929,7 +11929,7 @@ public virtual SearchRequest Search(Google.Apis.ShoppingContent.v2_1.Data.Search } /// - /// Retrieves merchant performance mertrics matching the search query and optionally segmented by selected + /// Retrieves merchant performance metrics matching the search query and optionally segmented by selected /// dimensions. /// public class SearchRequest : ShoppingContentBaseServiceRequest @@ -23726,8 +23726,8 @@ public class Promotion : Google.Apis.Requests.IDirectResponseSchema public virtual System.Nullable GetThisQuantityDiscounted { get; set; } /// - /// Required. Output only. The REST promotion ID to uniquely identify the promotion. Content API methods that - /// operate on promotions take this as their `promotionId` parameter. The REST ID for a promotion is of the form + /// Output only. The REST promotion ID to uniquely identify the promotion. Content API methods that operate on + /// promotions take this as their `promotionId` parameter. The REST ID for a promotion is of the form /// channel:contentLanguage:targetCountry:promotionId The `channel` field has a value of `"online"`, /// `"in_store"`, or `"online_in_store"`. /// diff --git a/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.csproj b/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.csproj index fd9e49afc4..dd2b750ef8 100644 --- a/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.csproj +++ b/Src/Generated/Google.Apis.ShoppingContent.v2_1/Google.Apis.ShoppingContent.v2_1.csproj @@ -3,7 +3,7 @@ Google.Apis.ShoppingContent.v2_1 Client Library - 1.65.0.3296 + 1.66.0.3300 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Content v2.1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SiteVerification.v1/Google.Apis.SiteVerification.v1.csproj b/Src/Generated/Google.Apis.SiteVerification.v1/Google.Apis.SiteVerification.v1.csproj index b9cce70e8f..532423aca1 100644 --- a/Src/Generated/Google.Apis.SiteVerification.v1/Google.Apis.SiteVerification.v1.csproj +++ b/Src/Generated/Google.Apis.SiteVerification.v1/Google.Apis.SiteVerification.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.SiteVerification.v1 Client Library - 1.65.0.1783 + 1.66.0.1783 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with SiteVerification v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Slides.v1/Google.Apis.Slides.v1.csproj b/Src/Generated/Google.Apis.Slides.v1/Google.Apis.Slides.v1.csproj index 10a0ec4fa1..bf3a8cd9ee 100644 --- a/Src/Generated/Google.Apis.Slides.v1/Google.Apis.Slides.v1.csproj +++ b/Src/Generated/Google.Apis.Slides.v1/Google.Apis.Slides.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Slides.v1 Client Library - 1.65.0.3107 + 1.66.0.3107 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Slides v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SmartDeviceManagement.v1/Google.Apis.SmartDeviceManagement.v1.csproj b/Src/Generated/Google.Apis.SmartDeviceManagement.v1/Google.Apis.SmartDeviceManagement.v1.csproj index c306495654..13bd9c4ff6 100644 --- a/Src/Generated/Google.Apis.SmartDeviceManagement.v1/Google.Apis.SmartDeviceManagement.v1.csproj +++ b/Src/Generated/Google.Apis.SmartDeviceManagement.v1/Google.Apis.SmartDeviceManagement.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.SmartDeviceManagement.v1 Client Library - 1.65.0.3244 + 1.66.0.3244 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Smartdevicemanagement v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Spanner.v1/Google.Apis.Spanner.v1.csproj b/Src/Generated/Google.Apis.Spanner.v1/Google.Apis.Spanner.v1.csproj index 23ebf2c04e..5e98727e39 100644 --- a/Src/Generated/Google.Apis.Spanner.v1/Google.Apis.Spanner.v1.csproj +++ b/Src/Generated/Google.Apis.Spanner.v1/Google.Apis.Spanner.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Spanner.v1 Client Library - 1.65.0.3292 + 1.66.0.3292 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Spanner v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Speech.v1/Google.Apis.Speech.v1.csproj b/Src/Generated/Google.Apis.Speech.v1/Google.Apis.Speech.v1.csproj index 5c865ac577..38c4954d85 100644 --- a/Src/Generated/Google.Apis.Speech.v1/Google.Apis.Speech.v1.csproj +++ b/Src/Generated/Google.Apis.Speech.v1/Google.Apis.Speech.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Speech.v1 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Speech v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Speech.v1p1beta1/Google.Apis.Speech.v1p1beta1.csproj b/Src/Generated/Google.Apis.Speech.v1p1beta1/Google.Apis.Speech.v1p1beta1.csproj index cb4c85c7d2..db038b0074 100644 --- a/Src/Generated/Google.Apis.Speech.v1p1beta1/Google.Apis.Speech.v1p1beta1.csproj +++ b/Src/Generated/Google.Apis.Speech.v1p1beta1/Google.Apis.Speech.v1p1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Speech.v1p1beta1 Client Library - 1.65.0.3294 + 1.66.0.3294 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Speech v1p1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Storage.v1/Google.Apis.Storage.v1.csproj b/Src/Generated/Google.Apis.Storage.v1/Google.Apis.Storage.v1.csproj index 4c05628f1f..a2be182c32 100644 --- a/Src/Generated/Google.Apis.Storage.v1/Google.Apis.Storage.v1.csproj +++ b/Src/Generated/Google.Apis.Storage.v1/Google.Apis.Storage.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Storage.v1 Client Library - 1.65.0.3291 + 1.66.0.3291 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Storage v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Storagetransfer.v1/Google.Apis.Storagetransfer.v1.csproj b/Src/Generated/Google.Apis.Storagetransfer.v1/Google.Apis.Storagetransfer.v1.csproj index c68cd156a2..564a8f2f8b 100644 --- a/Src/Generated/Google.Apis.Storagetransfer.v1/Google.Apis.Storagetransfer.v1.csproj +++ b/Src/Generated/Google.Apis.Storagetransfer.v1/Google.Apis.Storagetransfer.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Storagetransfer.v1 Client Library - 1.65.0.3255 + 1.66.0.3255 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Storagetransfer v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.StreetViewPublish.v1/Google.Apis.StreetViewPublish.v1.csproj b/Src/Generated/Google.Apis.StreetViewPublish.v1/Google.Apis.StreetViewPublish.v1.csproj index 999fa65aa7..77305495e5 100644 --- a/Src/Generated/Google.Apis.StreetViewPublish.v1/Google.Apis.StreetViewPublish.v1.csproj +++ b/Src/Generated/Google.Apis.StreetViewPublish.v1/Google.Apis.StreetViewPublish.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.StreetViewPublish.v1 Client Library - 1.65.0.3258 + 1.66.0.3258 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Streetviewpublish v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.SubscriptionLinking.v1/Google.Apis.SubscriptionLinking.v1.csproj b/Src/Generated/Google.Apis.SubscriptionLinking.v1/Google.Apis.SubscriptionLinking.v1.csproj index f2ec5251f9..a8f9ca144a 100644 --- a/Src/Generated/Google.Apis.SubscriptionLinking.v1/Google.Apis.SubscriptionLinking.v1.csproj +++ b/Src/Generated/Google.Apis.SubscriptionLinking.v1/Google.Apis.SubscriptionLinking.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.SubscriptionLinking.v1 Client Library - 1.65.0.2974 + 1.66.0.2974 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Readerrevenuesubscriptionlinking v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.TPU.v1/Google.Apis.TPU.v1.csproj b/Src/Generated/Google.Apis.TPU.v1/Google.Apis.TPU.v1.csproj index 9795fedade..e4d0812688 100644 --- a/Src/Generated/Google.Apis.TPU.v1/Google.Apis.TPU.v1.csproj +++ b/Src/Generated/Google.Apis.TPU.v1/Google.Apis.TPU.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.TPU.v1 Client Library - 1.65.0.3136 + 1.66.0.3136 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Tpu v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TPU.v1alpha1/Google.Apis.TPU.v1alpha1.csproj b/Src/Generated/Google.Apis.TPU.v1alpha1/Google.Apis.TPU.v1alpha1.csproj index aa53b45dad..5e8890cfb4 100644 --- a/Src/Generated/Google.Apis.TPU.v1alpha1/Google.Apis.TPU.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.TPU.v1alpha1/Google.Apis.TPU.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.TPU.v1alpha1 Client Library - 1.65.0.3136 + 1.66.0.3136 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Tpu v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TPU.v2/Google.Apis.TPU.v2.csproj b/Src/Generated/Google.Apis.TPU.v2/Google.Apis.TPU.v2.csproj index e1543b2021..45fa8d77b2 100644 --- a/Src/Generated/Google.Apis.TPU.v2/Google.Apis.TPU.v2.csproj +++ b/Src/Generated/Google.Apis.TPU.v2/Google.Apis.TPU.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.TPU.v2 Client Library - 1.65.0.3136 + 1.66.0.3136 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Tpu v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TPU.v2alpha1/Google.Apis.TPU.v2alpha1.csproj b/Src/Generated/Google.Apis.TPU.v2alpha1/Google.Apis.TPU.v2alpha1.csproj index 16d8e17a18..b83e2fb84c 100644 --- a/Src/Generated/Google.Apis.TPU.v2alpha1/Google.Apis.TPU.v2alpha1.csproj +++ b/Src/Generated/Google.Apis.TPU.v2alpha1/Google.Apis.TPU.v2alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.TPU.v2alpha1 Client Library - 1.65.0.3273 + 1.66.0.3273 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Tpu v2alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TagManager.v1/Google.Apis.TagManager.v1.csproj b/Src/Generated/Google.Apis.TagManager.v1/Google.Apis.TagManager.v1.csproj index 7147f2bfdb..5a2667bdc5 100644 --- a/Src/Generated/Google.Apis.TagManager.v1/Google.Apis.TagManager.v1.csproj +++ b/Src/Generated/Google.Apis.TagManager.v1/Google.Apis.TagManager.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.TagManager.v1 Client Library - 1.65.0.3107 + 1.66.0.3107 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Tagmanager v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TagManager.v2/Google.Apis.TagManager.v2.csproj b/Src/Generated/Google.Apis.TagManager.v2/Google.Apis.TagManager.v2.csproj index 65f77f7350..ac5f5b5f76 100644 --- a/Src/Generated/Google.Apis.TagManager.v2/Google.Apis.TagManager.v2.csproj +++ b/Src/Generated/Google.Apis.TagManager.v2/Google.Apis.TagManager.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.TagManager.v2 Client Library - 1.65.0.3190 + 1.66.0.3190 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Tagmanager v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Tasks.v1/Google.Apis.Tasks.v1.csproj b/Src/Generated/Google.Apis.Tasks.v1/Google.Apis.Tasks.v1.csproj index 1f831d17a2..cd45c34820 100644 --- a/Src/Generated/Google.Apis.Tasks.v1/Google.Apis.Tasks.v1.csproj +++ b/Src/Generated/Google.Apis.Tasks.v1/Google.Apis.Tasks.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Tasks.v1 Client Library - 1.65.0.3015 + 1.66.0.3015 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Tasks v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Testing.v1/Google.Apis.Testing.v1.csproj b/Src/Generated/Google.Apis.Testing.v1/Google.Apis.Testing.v1.csproj index dc14943775..1fa9302fd0 100644 --- a/Src/Generated/Google.Apis.Testing.v1/Google.Apis.Testing.v1.csproj +++ b/Src/Generated/Google.Apis.Testing.v1/Google.Apis.Testing.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Testing.v1 Client Library - 1.65.0.3221 + 1.66.0.3221 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Testing v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Texttospeech.v1/Google.Apis.Texttospeech.v1.csproj b/Src/Generated/Google.Apis.Texttospeech.v1/Google.Apis.Texttospeech.v1.csproj index b63ed30d0e..9011f3f59a 100644 --- a/Src/Generated/Google.Apis.Texttospeech.v1/Google.Apis.Texttospeech.v1.csproj +++ b/Src/Generated/Google.Apis.Texttospeech.v1/Google.Apis.Texttospeech.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Texttospeech.v1 Client Library - 1.65.0.3295 + 1.66.0.3295 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Texttospeech v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Texttospeech.v1beta1/Google.Apis.Texttospeech.v1beta1.csproj b/Src/Generated/Google.Apis.Texttospeech.v1beta1/Google.Apis.Texttospeech.v1beta1.csproj index 6cf4f0e345..c057a24749 100644 --- a/Src/Generated/Google.Apis.Texttospeech.v1beta1/Google.Apis.Texttospeech.v1beta1.csproj +++ b/Src/Generated/Google.Apis.Texttospeech.v1beta1/Google.Apis.Texttospeech.v1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Texttospeech.v1beta1 Client Library - 1.65.0.3295 + 1.66.0.3295 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Texttospeech v1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.ToolResults.v1beta3/Google.Apis.ToolResults.v1beta3.csproj b/Src/Generated/Google.Apis.ToolResults.v1beta3/Google.Apis.ToolResults.v1beta3.csproj index 972f95fb56..6fbd790c1c 100644 --- a/Src/Generated/Google.Apis.ToolResults.v1beta3/Google.Apis.ToolResults.v1beta3.csproj +++ b/Src/Generated/Google.Apis.ToolResults.v1beta3/Google.Apis.ToolResults.v1beta3.csproj @@ -3,7 +3,7 @@ Google.Apis.ToolResults.v1beta3 Client Library - 1.65.0.3296 + 1.66.0.3296 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Toolresults v1beta3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TrafficDirectorService.v2/Google.Apis.TrafficDirectorService.v2.csproj b/Src/Generated/Google.Apis.TrafficDirectorService.v2/Google.Apis.TrafficDirectorService.v2.csproj index f646d1d68f..d87a632546 100644 --- a/Src/Generated/Google.Apis.TrafficDirectorService.v2/Google.Apis.TrafficDirectorService.v2.csproj +++ b/Src/Generated/Google.Apis.TrafficDirectorService.v2/Google.Apis.TrafficDirectorService.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.TrafficDirectorService.v2 Client Library - 1.65.0.3113 + 1.66.0.3113 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Trafficdirector v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TrafficDirectorService.v3/Google.Apis.TrafficDirectorService.v3.csproj b/Src/Generated/Google.Apis.TrafficDirectorService.v3/Google.Apis.TrafficDirectorService.v3.csproj index 9ca8cc623a..676a7ae692 100644 --- a/Src/Generated/Google.Apis.TrafficDirectorService.v3/Google.Apis.TrafficDirectorService.v3.csproj +++ b/Src/Generated/Google.Apis.TrafficDirectorService.v3/Google.Apis.TrafficDirectorService.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.TrafficDirectorService.v3 Client Library - 1.65.0.3226 + 1.66.0.3226 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Trafficdirector v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Transcoder.v1/Google.Apis.Transcoder.v1.csproj b/Src/Generated/Google.Apis.Transcoder.v1/Google.Apis.Transcoder.v1.csproj index 2b4da0be90..92198aa141 100644 --- a/Src/Generated/Google.Apis.Transcoder.v1/Google.Apis.Transcoder.v1.csproj +++ b/Src/Generated/Google.Apis.Transcoder.v1/Google.Apis.Transcoder.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Transcoder.v1 Client Library - 1.65.0.3170 + 1.66.0.3170 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Transcoder v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Translate.v2/Google.Apis.Translate.v2.csproj b/Src/Generated/Google.Apis.Translate.v2/Google.Apis.Translate.v2.csproj index dc46b45dc9..04b82a61d9 100644 --- a/Src/Generated/Google.Apis.Translate.v2/Google.Apis.Translate.v2.csproj +++ b/Src/Generated/Google.Apis.Translate.v2/Google.Apis.Translate.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Translate.v2 Client Library - 1.65.0.875 + 1.66.0.875 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Translate v2 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Translate.v3/Google.Apis.Translate.v3.csproj b/Src/Generated/Google.Apis.Translate.v3/Google.Apis.Translate.v3.csproj index 479b340365..1e8ce92ffa 100644 --- a/Src/Generated/Google.Apis.Translate.v3/Google.Apis.Translate.v3.csproj +++ b/Src/Generated/Google.Apis.Translate.v3/Google.Apis.Translate.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.Translate.v3 Client Library - 1.65.0.3256 + 1.66.0.3256 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Translate v3 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Translate.v3beta1/Google.Apis.Translate.v3beta1.csproj b/Src/Generated/Google.Apis.Translate.v3beta1/Google.Apis.Translate.v3beta1.csproj index c2db752df3..3d6534dcbb 100644 --- a/Src/Generated/Google.Apis.Translate.v3beta1/Google.Apis.Translate.v3beta1.csproj +++ b/Src/Generated/Google.Apis.Translate.v3beta1/Google.Apis.Translate.v3beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Translate.v3beta1 Client Library - 1.65.0.3186 + 1.66.0.3186 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Translate v3beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.TravelImpactModel.v1/Google.Apis.TravelImpactModel.v1.csproj b/Src/Generated/Google.Apis.TravelImpactModel.v1/Google.Apis.TravelImpactModel.v1.csproj index 9558d5dba3..8c83755c66 100644 --- a/Src/Generated/Google.Apis.TravelImpactModel.v1/Google.Apis.TravelImpactModel.v1.csproj +++ b/Src/Generated/Google.Apis.TravelImpactModel.v1/Google.Apis.TravelImpactModel.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.TravelImpactModel.v1 Client Library - 1.65.0.3206 + 1.66.0.3206 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Travelimpactmodel v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.VMMigrationService.v1/Google.Apis.VMMigrationService.v1.csproj b/Src/Generated/Google.Apis.VMMigrationService.v1/Google.Apis.VMMigrationService.v1.csproj index 7419c09b2a..040f348583 100644 --- a/Src/Generated/Google.Apis.VMMigrationService.v1/Google.Apis.VMMigrationService.v1.csproj +++ b/Src/Generated/Google.Apis.VMMigrationService.v1/Google.Apis.VMMigrationService.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.VMMigrationService.v1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vmmigration v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.VMMigrationService.v1alpha1/Google.Apis.VMMigrationService.v1alpha1.csproj b/Src/Generated/Google.Apis.VMMigrationService.v1alpha1/Google.Apis.VMMigrationService.v1alpha1.csproj index e8c54f7580..164df8019a 100644 --- a/Src/Generated/Google.Apis.VMMigrationService.v1alpha1/Google.Apis.VMMigrationService.v1alpha1.csproj +++ b/Src/Generated/Google.Apis.VMMigrationService.v1alpha1/Google.Apis.VMMigrationService.v1alpha1.csproj @@ -3,7 +3,7 @@ Google.Apis.VMMigrationService.v1alpha1 Client Library - 1.65.0.3269 + 1.66.0.3269 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vmmigration v1alpha1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.VMwareEngine.v1/Google.Apis.VMwareEngine.v1.csproj b/Src/Generated/Google.Apis.VMwareEngine.v1/Google.Apis.VMwareEngine.v1.csproj index 0e50c0f67e..1ed8691246 100644 --- a/Src/Generated/Google.Apis.VMwareEngine.v1/Google.Apis.VMwareEngine.v1.csproj +++ b/Src/Generated/Google.Apis.VMwareEngine.v1/Google.Apis.VMwareEngine.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.VMwareEngine.v1 Client Library - 1.65.0.3288 + 1.66.0.3288 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vmwareengine v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Vault.v1/Google.Apis.Vault.v1.csproj b/Src/Generated/Google.Apis.Vault.v1/Google.Apis.Vault.v1.csproj index b056efc903..a58a8387ad 100644 --- a/Src/Generated/Google.Apis.Vault.v1/Google.Apis.Vault.v1.csproj +++ b/Src/Generated/Google.Apis.Vault.v1/Google.Apis.Vault.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Vault.v1 Client Library - 1.65.0.3268 + 1.66.0.3268 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vault v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Verifiedaccess.v1/Google.Apis.Verifiedaccess.v1.csproj b/Src/Generated/Google.Apis.Verifiedaccess.v1/Google.Apis.Verifiedaccess.v1.csproj index 561db1ab29..d2829d8211 100644 --- a/Src/Generated/Google.Apis.Verifiedaccess.v1/Google.Apis.Verifiedaccess.v1.csproj +++ b/Src/Generated/Google.Apis.Verifiedaccess.v1/Google.Apis.Verifiedaccess.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Verifiedaccess.v1 Client Library - 1.65.0.3148 + 1.66.0.3148 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Verifiedaccess v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Verifiedaccess.v2/Google.Apis.Verifiedaccess.v2.csproj b/Src/Generated/Google.Apis.Verifiedaccess.v2/Google.Apis.Verifiedaccess.v2.csproj index 27cf912ba2..14a851a501 100644 --- a/Src/Generated/Google.Apis.Verifiedaccess.v2/Google.Apis.Verifiedaccess.v2.csproj +++ b/Src/Generated/Google.Apis.Verifiedaccess.v2/Google.Apis.Verifiedaccess.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.Verifiedaccess.v2 Client Library - 1.65.0.3134 + 1.66.0.3134 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Verifiedaccess v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.VersionHistory.v1/Google.Apis.VersionHistory.v1.csproj b/Src/Generated/Google.Apis.VersionHistory.v1/Google.Apis.VersionHistory.v1.csproj index 54236f06de..dc7827f9d7 100644 --- a/Src/Generated/Google.Apis.VersionHistory.v1/Google.Apis.VersionHistory.v1.csproj +++ b/Src/Generated/Google.Apis.VersionHistory.v1/Google.Apis.VersionHistory.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.VersionHistory.v1 Client Library - 1.65.0.2861 + 1.66.0.2861 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Versionhistory v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.Vision.v1/Google.Apis.Vision.v1.csproj b/Src/Generated/Google.Apis.Vision.v1/Google.Apis.Vision.v1.csproj index 872e9a4c4d..b33fe8f6a1 100644 --- a/Src/Generated/Google.Apis.Vision.v1/Google.Apis.Vision.v1.csproj +++ b/Src/Generated/Google.Apis.Vision.v1/Google.Apis.Vision.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Vision.v1 Client Library - 1.65.0.3274 + 1.66.0.3274 Google LLC Copyright 2024 Google LLC Google @@ -18,14 +18,15 @@ This Google APIs Client Library for working with Vision v1 uses older code generation, and is harder to use. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -45,7 +46,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -58,8 +59,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Vision.v1p1beta1/Google.Apis.Vision.v1p1beta1.csproj b/Src/Generated/Google.Apis.Vision.v1p1beta1/Google.Apis.Vision.v1p1beta1.csproj index b8b507f164..c553763788 100644 --- a/Src/Generated/Google.Apis.Vision.v1p1beta1/Google.Apis.Vision.v1p1beta1.csproj +++ b/Src/Generated/Google.Apis.Vision.v1p1beta1/Google.Apis.Vision.v1p1beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Vision.v1p1beta1 Client Library - 1.65.0.3274 + 1.66.0.3274 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vision v1p1beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Vision.v1p2beta1/Google.Apis.Vision.v1p2beta1.csproj b/Src/Generated/Google.Apis.Vision.v1p2beta1/Google.Apis.Vision.v1p2beta1.csproj index e53acf9958..dcba949f4f 100644 --- a/Src/Generated/Google.Apis.Vision.v1p2beta1/Google.Apis.Vision.v1p2beta1.csproj +++ b/Src/Generated/Google.Apis.Vision.v1p2beta1/Google.Apis.Vision.v1p2beta1.csproj @@ -3,7 +3,7 @@ Google.Apis.Vision.v1p2beta1 Client Library - 1.65.0.3274 + 1.66.0.3274 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Vision v1p2beta1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Walletobjects.v1/Google.Apis.Walletobjects.v1.csproj b/Src/Generated/Google.Apis.Walletobjects.v1/Google.Apis.Walletobjects.v1.csproj index bdfe9a98b3..7d29131938 100644 --- a/Src/Generated/Google.Apis.Walletobjects.v1/Google.Apis.Walletobjects.v1.csproj +++ b/Src/Generated/Google.Apis.Walletobjects.v1/Google.Apis.Walletobjects.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Walletobjects.v1 Client Library - 1.65.0.3296 + 1.66.0.3296 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Walletobjects v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.WebRisk.v1/Google.Apis.WebRisk.v1.csproj b/Src/Generated/Google.Apis.WebRisk.v1/Google.Apis.WebRisk.v1.csproj index 4dcb57dbc1..2769918d3c 100644 --- a/Src/Generated/Google.Apis.WebRisk.v1/Google.Apis.WebRisk.v1.csproj +++ b/Src/Generated/Google.Apis.WebRisk.v1/Google.Apis.WebRisk.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.WebRisk.v1 Client Library - 1.65.0.3139 + 1.66.0.3139 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Webrisk v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.WebSecurityScanner.v1/Google.Apis.WebSecurityScanner.v1.csproj b/Src/Generated/Google.Apis.WebSecurityScanner.v1/Google.Apis.WebSecurityScanner.v1.csproj index 4f00ba967c..4dcace07fb 100644 --- a/Src/Generated/Google.Apis.WebSecurityScanner.v1/Google.Apis.WebSecurityScanner.v1.csproj +++ b/Src/Generated/Google.Apis.WebSecurityScanner.v1/Google.Apis.WebSecurityScanner.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.WebSecurityScanner.v1 Client Library - 1.65.0.3215 + 1.66.0.3215 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Websecurityscanner v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.WebSecurityScanner.v1alpha/Google.Apis.WebSecurityScanner.v1alpha.csproj b/Src/Generated/Google.Apis.WebSecurityScanner.v1alpha/Google.Apis.WebSecurityScanner.v1alpha.csproj index 513e5b6c8b..adfe5db53f 100644 --- a/Src/Generated/Google.Apis.WebSecurityScanner.v1alpha/Google.Apis.WebSecurityScanner.v1alpha.csproj +++ b/Src/Generated/Google.Apis.WebSecurityScanner.v1alpha/Google.Apis.WebSecurityScanner.v1alpha.csproj @@ -3,7 +3,7 @@ Google.Apis.WebSecurityScanner.v1alpha Client Library - 1.65.0.3215 + 1.66.0.3215 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Websecurityscanner v1alpha. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.WebSecurityScanner.v1beta/Google.Apis.WebSecurityScanner.v1beta.csproj b/Src/Generated/Google.Apis.WebSecurityScanner.v1beta/Google.Apis.WebSecurityScanner.v1beta.csproj index d693a698ba..749c15479d 100644 --- a/Src/Generated/Google.Apis.WebSecurityScanner.v1beta/Google.Apis.WebSecurityScanner.v1beta.csproj +++ b/Src/Generated/Google.Apis.WebSecurityScanner.v1beta/Google.Apis.WebSecurityScanner.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.WebSecurityScanner.v1beta Client Library - 1.65.0.3215 + 1.66.0.3215 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Websecurityscanner v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.csproj b/Src/Generated/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.csproj index 46b63687fe..62f29634d2 100644 --- a/Src/Generated/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.csproj +++ b/Src/Generated/Google.Apis.Webfonts.v1/Google.Apis.Webfonts.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Webfonts.v1 Client Library - 1.65.0.3030 + 1.66.0.3030 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Webfonts v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,7 +58,7 @@ - + diff --git a/Src/Generated/Google.Apis.WorkflowExecutions.v1/Google.Apis.WorkflowExecutions.v1.csproj b/Src/Generated/Google.Apis.WorkflowExecutions.v1/Google.Apis.WorkflowExecutions.v1.csproj index a1f39b7d9c..5c8c5cf71b 100644 --- a/Src/Generated/Google.Apis.WorkflowExecutions.v1/Google.Apis.WorkflowExecutions.v1.csproj +++ b/Src/Generated/Google.Apis.WorkflowExecutions.v1/Google.Apis.WorkflowExecutions.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.WorkflowExecutions.v1 Client Library - 1.65.0.3253 + 1.66.0.3253 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Workflowexecutions v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.WorkflowExecutions.v1beta/Google.Apis.WorkflowExecutions.v1beta.csproj b/Src/Generated/Google.Apis.WorkflowExecutions.v1beta/Google.Apis.WorkflowExecutions.v1beta.csproj index a0de2ee028..ee3108148c 100644 --- a/Src/Generated/Google.Apis.WorkflowExecutions.v1beta/Google.Apis.WorkflowExecutions.v1beta.csproj +++ b/Src/Generated/Google.Apis.WorkflowExecutions.v1beta/Google.Apis.WorkflowExecutions.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.WorkflowExecutions.v1beta Client Library - 1.65.0.3121 + 1.66.0.3121 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Workflowexecutions v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Workflows.v1/Google.Apis.Workflows.v1.csproj b/Src/Generated/Google.Apis.Workflows.v1/Google.Apis.Workflows.v1.csproj index 8afe47a3dc..c158612e7d 100644 --- a/Src/Generated/Google.Apis.Workflows.v1/Google.Apis.Workflows.v1.csproj +++ b/Src/Generated/Google.Apis.Workflows.v1/Google.Apis.Workflows.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.Workflows.v1 Client Library - 1.65.0.3205 + 1.66.0.3205 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Workflows v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.Workflows.v1beta/Google.Apis.Workflows.v1beta.csproj b/Src/Generated/Google.Apis.Workflows.v1beta/Google.Apis.Workflows.v1beta.csproj index d8c7d195a2..e13cb3f7fb 100644 --- a/Src/Generated/Google.Apis.Workflows.v1beta/Google.Apis.Workflows.v1beta.csproj +++ b/Src/Generated/Google.Apis.Workflows.v1beta/Google.Apis.Workflows.v1beta.csproj @@ -3,7 +3,7 @@ Google.Apis.Workflows.v1beta Client Library - 1.65.0.3135 + 1.66.0.3135 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Workflows v1beta. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.WorkloadManager.v1/Google.Apis.WorkloadManager.v1.csproj b/Src/Generated/Google.Apis.WorkloadManager.v1/Google.Apis.WorkloadManager.v1.csproj index 777036f777..5a121e2e17 100644 --- a/Src/Generated/Google.Apis.WorkloadManager.v1/Google.Apis.WorkloadManager.v1.csproj +++ b/Src/Generated/Google.Apis.WorkloadManager.v1/Google.Apis.WorkloadManager.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.WorkloadManager.v1 Client Library - 1.65.0.3289 + 1.66.0.3289 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Workloadmanager v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.YouTube.v3/Google.Apis.YouTube.v3.csproj b/Src/Generated/Google.Apis.YouTube.v3/Google.Apis.YouTube.v3.csproj index 688d512e3c..f8b8544ffb 100644 --- a/Src/Generated/Google.Apis.YouTube.v3/Google.Apis.YouTube.v3.csproj +++ b/Src/Generated/Google.Apis.YouTube.v3/Google.Apis.YouTube.v3.csproj @@ -3,7 +3,7 @@ Google.Apis.YouTube.v3 Client Library - 1.65.0.3205 + 1.66.0.3205 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Youtube v3. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.YouTubeAnalytics.v2/Google.Apis.YouTubeAnalytics.v2.csproj b/Src/Generated/Google.Apis.YouTubeAnalytics.v2/Google.Apis.YouTubeAnalytics.v2.csproj index 1d5d7db540..de0fa6508c 100644 --- a/Src/Generated/Google.Apis.YouTubeAnalytics.v2/Google.Apis.YouTubeAnalytics.v2.csproj +++ b/Src/Generated/Google.Apis.YouTubeAnalytics.v2/Google.Apis.YouTubeAnalytics.v2.csproj @@ -3,7 +3,7 @@ Google.Apis.YouTubeAnalytics.v2 Client Library - 1.65.0.3106 + 1.66.0.3106 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with YoutubeAnalytics v2. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + + diff --git a/Src/Generated/Google.Apis.YouTubeReporting.v1/Google.Apis.YouTubeReporting.v1.csproj b/Src/Generated/Google.Apis.YouTubeReporting.v1/Google.Apis.YouTubeReporting.v1.csproj index 32fb32a068..8dd06189bb 100644 --- a/Src/Generated/Google.Apis.YouTubeReporting.v1/Google.Apis.YouTubeReporting.v1.csproj +++ b/Src/Generated/Google.Apis.YouTubeReporting.v1/Google.Apis.YouTubeReporting.v1.csproj @@ -3,7 +3,7 @@ Google.Apis.YouTubeReporting.v1 Client Library - 1.65.0.3106 + 1.66.0.3106 Google LLC Copyright 2024 Google LLC Google @@ -17,14 +17,15 @@ Google APIs Client Library for working with Youtubereporting v1. Supported Platforms: - - .NET Framework 4.5+ - - .NET Standard 1.3 and .NET Standard 2.0; providing .NET Core support. + - .NET Framework 4.6.2+ + - .NET Standard 2.0 + - .NET 6.0+ Incompatible platforms: - - .NET Framework < 4.5 + - .NET Framework < 4.6.2 - Silverlight - UWP (will build, but is known not to work at runtime) - - Xamarin + - Xamarin/MAUI - Windows 8 Apps - Windows Phone 8.1 - Windows Phone Silverlight 8.0 @@ -44,7 +45,7 @@ - netstandard2.0;netstandard1.3;net45 + netstandard2.0;net462;net6.0 true ..\..\..\google.apis.snk portable @@ -57,8 +58,8 @@ - - + +