diff --git a/Cargo.toml b/Cargo.toml index 4adfb8460..a811bc38b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,4 +13,5 @@ members = [ "examples/id-token", "examples/iam-client", "examples/artifact-registry-client", + "examples/servicecontrol-client", ] diff --git a/examples/servicecontrol-client/Cargo.toml b/examples/servicecontrol-client/Cargo.toml new file mode 100644 index 000000000..2ef0d8509 --- /dev/null +++ b/examples/servicecontrol-client/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "servicecontrol-client" +version = "0.1.0" +edition = "2021" + +[dependencies] +chrono = "0.4.39" +gcloud-sdk = { path = "./../../gcloud-sdk", default-features = false, features = ["google-rest-servicecontrol-v1", "tls-webpki-roots"] } +serde_json = "1.0.138" +thiserror = "2.0.11" +tokio = { version = "1.20", features = ["full"] } +uuid = { version = "1.8", default-features = false, features = ["v4"] } + + diff --git a/examples/servicecontrol-client/src/main.rs b/examples/servicecontrol-client/src/main.rs new file mode 100644 index 000000000..10fa10124 --- /dev/null +++ b/examples/servicecontrol-client/src/main.rs @@ -0,0 +1,77 @@ +use gcloud_sdk::{google_rest_apis::servicecontrol_v1, GoogleEnvironment, GoogleRestApi}; + +#[derive(thiserror::Error, Debug)] +enum Error { + #[error(transparent)] + Gcloud(#[from] gcloud_sdk::error::Error), + #[error(transparent)] + ServiceCheck( + #[from] + servicecontrol_v1::Error< + servicecontrol_v1::services_api::ServicecontrolPeriodServicesPeriodCheckError, + >, + ), + #[error("{}", format_check_errors(.0))] + ServiceCheckErrors(Vec), +} + +fn format_check_errors(errs: &[servicecontrol_v1::CheckError]) -> String { + errs.iter() + .filter_map(|e| { + if let Some(ref code) = e.code { + let c = serde_json::to_string(code) + .unwrap_or_else(|_| "ERROR_CODE_UNSPECIFIED".to_string()); + if let Some(ref detail) = e.detail { + Some(format!("{c}: {detail}")) + } else { + Some(c) + } + } else { + None + } + }) + .collect::>() + .join(", ") +} + +async fn services_check( + client: GoogleRestApi, + service_name: impl ToString, +) -> Result<(), Error> { + let cfg = client.create_google_servicecontrol_v1_config().await?; + + let response = servicecontrol_v1::services_api::servicecontrol_services_check( + &cfg, + servicecontrol_v1::services_api::ServicecontrolPeriodServicesPeriodCheckParams { + service_name: service_name.to_string(), + check_request: Some(servicecontrol_v1::CheckRequest { + operation: Some(Box::new(servicecontrol_v1::Operation { + start_time: Some(chrono::Utc::now().to_rfc3339()), + operation_id: Some(uuid::Uuid::new_v4().to_string()), + operation_name: Some("Whatever".to_string()), + consumer_id: GoogleEnvironment::detect_google_project_id() + .await + .map(|id| format!("project:{id}")), + ..Default::default() + })), + ..Default::default() + }), + ..Default::default() + }, + ) + .await?; + + if let Some(errs) = response.check_errors { + Err(Error::ServiceCheckErrors(errs)) + } else { + Ok(()) + } +} + +#[tokio::main] +async fn main() -> Result<(), Error> { + let client = GoogleRestApi::new().await?; + services_check(client, "sandbox-lustre.sandbox.googleapis.com").await?; + + Ok(()) +} diff --git a/gcloud-protos-generator/openapi/google/servicecontrol-v1/openapi.yaml b/gcloud-protos-generator/openapi/google/servicecontrol-v1/openapi.yaml new file mode 100644 index 000000000..e5f126559 --- /dev/null +++ b/gcloud-protos-generator/openapi/google/servicecontrol-v1/openapi.yaml @@ -0,0 +1,1605 @@ +openapi: 3.0.0 +servers: + - url: https://servicecontrol.googleapis.com/ +info: + contact: + name: Google + url: https://google.com + x-twitter: youtube + description: "Provides admission control and telemetry reporting for services integrated with Service Infrastructure. " + license: + name: Creative Commons Attribution 3.0 + url: http://creativecommons.org/licenses/by/3.0/ + termsOfService: https://developers.google.com/terms/ + title: Service Control API + version: v1 + x-apiClientRegistration: + url: https://console.developers.google.com + x-apisguru-categories: + - analytics + - media + x-logo: + url: https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png + x-origin: + - format: google + url: https://servicecontrol.googleapis.com/$discovery/rest?version=v1 + version: v1 + x-preferred: false + x-providerName: googleapis.com + x-serviceName: servicecontrol +externalDocs: + url: https://cloud.google.com/service-control/ +tags: + - name: services +paths: + /v1/services/{serviceName}:allocateQuota: + parameters: + - $ref: "#/components/parameters/_.xgafv" + - $ref: "#/components/parameters/access_token" + - $ref: "#/components/parameters/alt" + - $ref: "#/components/parameters/callback" + - $ref: "#/components/parameters/fields" + - $ref: "#/components/parameters/key" + - $ref: "#/components/parameters/oauth_token" + - $ref: "#/components/parameters/prettyPrint" + - $ref: "#/components/parameters/quotaUser" + - $ref: "#/components/parameters/upload_protocol" + - $ref: "#/components/parameters/uploadType" + post: + description: Attempts to allocate quota for the specified consumer. It should be called before the operation is executed. This method requires the `servicemanagement.services.quota` permission on the specified service. For more information, see [Cloud IAM](https://cloud.google.com/iam). **NOTE:** The client **must** fail-open on server errors `INTERNAL`, `UNKNOWN`, `DEADLINE_EXCEEDED`, and `UNAVAILABLE`. To ensure system reliability, the server may inject these errors to prohibit any hard dependency on the quota functionality. + operationId: servicecontrol.services.allocateQuota + parameters: + - description: Name of the service as specified in the service configuration. For example, `"pubsub.googleapis.com"`. See google.api.Service for the definition of a service name. + in: path + name: serviceName + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/AllocateQuotaRequest" + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/AllocateQuotaResponse" + description: Successful response + security: + - Oauth2: + - https://www.googleapis.com/auth/cloud-platform + Oauth2c: + - https://www.googleapis.com/auth/cloud-platform + - Oauth2: + - https://www.googleapis.com/auth/servicecontrol + Oauth2c: + - https://www.googleapis.com/auth/servicecontrol + tags: + - services + /v1/services/{serviceName}:check: + parameters: + - $ref: "#/components/parameters/_.xgafv" + - $ref: "#/components/parameters/access_token" + - $ref: "#/components/parameters/alt" + - $ref: "#/components/parameters/callback" + - $ref: "#/components/parameters/fields" + - $ref: "#/components/parameters/key" + - $ref: "#/components/parameters/oauth_token" + - $ref: "#/components/parameters/prettyPrint" + - $ref: "#/components/parameters/quotaUser" + - $ref: "#/components/parameters/upload_protocol" + - $ref: "#/components/parameters/uploadType" + post: + description: "Checks whether an operation on a service should be allowed to proceed based on the configuration of the service and related policies. It must be called before the operation is executed. If feasible, the client should cache the check results and reuse them for 60 seconds. In case of any server errors, the client should rely on the cached results for much longer time to avoid outage. WARNING: There is general 60s delay for the configuration and policy propagation, therefore callers MUST NOT depend on the `Check` method having the latest policy information. NOTE: the CheckRequest has the size limit (wire-format byte size) of 1MB. This method requires the `servicemanagement.services.check` permission on the specified service. For more information, see [Cloud IAM](https://cloud.google.com/iam)." + operationId: servicecontrol.services.check + parameters: + - description: The service name as specified in its service configuration. For example, `"pubsub.googleapis.com"`. See [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) for the definition of a service name. + in: path + name: serviceName + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/CheckRequest" + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/CheckResponse" + description: Successful response + security: + - Oauth2: + - https://www.googleapis.com/auth/cloud-platform + Oauth2c: + - https://www.googleapis.com/auth/cloud-platform + - Oauth2: + - https://www.googleapis.com/auth/servicecontrol + Oauth2c: + - https://www.googleapis.com/auth/servicecontrol + tags: + - services + /v1/services/{serviceName}:report: + parameters: + - $ref: "#/components/parameters/_.xgafv" + - $ref: "#/components/parameters/access_token" + - $ref: "#/components/parameters/alt" + - $ref: "#/components/parameters/callback" + - $ref: "#/components/parameters/fields" + - $ref: "#/components/parameters/key" + - $ref: "#/components/parameters/oauth_token" + - $ref: "#/components/parameters/prettyPrint" + - $ref: "#/components/parameters/quotaUser" + - $ref: "#/components/parameters/upload_protocol" + - $ref: "#/components/parameters/uploadType" + post: + description: "Reports operation results to Google Service Control, such as logs and metrics. It should be called after an operation is completed. If feasible, the client should aggregate reporting data for up to 5 seconds to reduce API traffic. Limiting aggregation to 5 seconds is to reduce data loss during client crashes. Clients should carefully choose the aggregation time window to avoid data loss risk more than 0.01% for business and compliance reasons. NOTE: the ReportRequest has the size limit (wire-format byte size) of 1MB. This method requires the `servicemanagement.services.report` permission on the specified service. For more information, see [Google Cloud IAM](https://cloud.google.com/iam)." + operationId: servicecontrol.services.report + parameters: + - description: The service name as specified in its service configuration. For example, `"pubsub.googleapis.com"`. See [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) for the definition of a service name. + in: path + name: serviceName + required: true + schema: + type: string + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/ReportRequest" + responses: + "200": + content: + application/json: + schema: + $ref: "#/components/schemas/ReportResponse" + description: Successful response + security: + - Oauth2: + - https://www.googleapis.com/auth/cloud-platform + Oauth2c: + - https://www.googleapis.com/auth/cloud-platform + - Oauth2: + - https://www.googleapis.com/auth/servicecontrol + Oauth2c: + - https://www.googleapis.com/auth/servicecontrol + tags: + - services +components: + parameters: + _.xgafv: + description: V1 error format. + in: query + name: $.xgafv + schema: + enum: + - "1" + - "2" + type: string + access_token: + description: OAuth access token. + in: query + name: access_token + schema: + type: string + alt: + description: Data format for response. + in: query + name: alt + schema: + enum: + - json + - media + - proto + type: string + callback: + description: JSONP + in: query + name: callback + schema: + type: string + fields: + description: Selector specifying which fields to include in a partial response. + in: query + name: fields + schema: + type: string + key: + description: API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. + in: query + name: key + schema: + type: string + oauth_token: + description: OAuth 2.0 token for the current user. + in: query + name: oauth_token + schema: + type: string + prettyPrint: + description: Returns response with indentations and line breaks. + in: query + name: prettyPrint + schema: + type: boolean + quotaUser: + description: Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. + in: query + name: quotaUser + schema: + type: string + uploadType: + description: Legacy upload protocol for media (e.g. "media", "multipart"). + in: query + name: uploadType + schema: + type: string + upload_protocol: + description: Upload protocol for media (e.g. "raw", "multipart"). + in: query + name: upload_protocol + schema: + type: string + schemas: + AllocateInfo: + properties: + unusedArguments: + description: A list of label keys that were unused by the server in processing the request. Thus, for similar requests repeated in a certain future time window, the caller can choose to ignore these labels in the requests to achieve better client-side cache hits and quota aggregation for rate quota. This field is not populated for allocation quota checks. + items: + type: string + type: array + type: object + AllocateQuotaRequest: + description: Request message for the AllocateQuota method. + properties: + allocateOperation: + $ref: "#/components/schemas/QuotaOperation" + description: Operation that describes the quota allocation. + serviceConfigId: + description: Specifies which version of service configuration should be used to process the request. If unspecified or no matching version can be found, the latest one will be used. + type: string + type: object + AllocateQuotaResponse: + description: Response message for the AllocateQuota method. + properties: + allocateErrors: + description: Indicates the decision of the allocate. + items: + $ref: "#/components/schemas/QuotaError" + type: array + allocateInfo: + $ref: "#/components/schemas/AllocateInfo" + description: "WARNING: DO NOT use this field until this warning message is removed." + operationId: + description: The same operation_id value used in the AllocateQuotaRequest. Used for logging and diagnostics purposes. + type: string + quotaMetrics: + description: 'Quota metrics to indicate the result of allocation. Depending on the request, one or more of the following metrics will be included: 1. Per quota group or per quota metric incremental usage will be specified using the following delta metric : "serviceruntime.googleapis.com/api/consumer/quota_used_count" 2. The quota limit reached condition will be specified using the following boolean metric : "serviceruntime.googleapis.com/quota/exceeded"' + items: + $ref: "#/components/schemas/MetricValueSet" + type: array + serviceConfigId: + description: ID of the actual config used to process the request. + type: string + type: object + AttributeValue: + description: The allowed types for [VALUE] in a `[KEY]:[VALUE]` attribute. + properties: + boolValue: + description: A Boolean value represented by `true` or `false`. + type: boolean + intValue: + description: A 64-bit signed integer. + format: int64 + type: string + stringValue: + $ref: "#/components/schemas/TruncatableString" + description: A string up to 256 bytes long. + type: object + Attributes: + description: A set of attributes, each in the format `[KEY]:[VALUE]`. + properties: + attributeMap: + additionalProperties: + $ref: "#/components/schemas/AttributeValue" + description: "The set of attributes. Each attribute's key can be up to 128 bytes long. The value can be a string up to 256 bytes, a signed 64-bit integer, or the Boolean values `true` and `false`. For example: \"/instance_id\": \"my-instance\" \"/http/user_agent\": \"\" \"/http/request_bytes\": 300 \"abc.com/myattribute\": true" + type: object + droppedAttributesCount: + description: The number of attributes that were discarded. Attributes can be discarded because their keys are too long or because there are too many attributes. If this value is 0 then all attributes are valid. + format: int32 + type: integer + type: object + AuditLog: + description: "Common audit log format for Google Cloud Platform API operations. " + properties: + authenticationInfo: + $ref: "#/components/schemas/AuthenticationInfo" + description: Authentication information. + authorizationInfo: + description: Authorization information. If there are multiple resources or permissions involved, then there is one AuthorizationInfo element for each {resource, permission} tuple. + items: + $ref: "#/components/schemas/AuthorizationInfo" + type: array + metadata: + additionalProperties: + description: Properties of the object. + description: Other service-specific data about the request, response, and other information associated with the current audited event. + type: object + methodName: + description: The name of the service method or operation. For API calls, this should be the name of the API method. For example, "google.cloud.bigquery.v2.TableService.InsertTable" "google.logging.v2.ConfigServiceV2.CreateSink" + type: string + numResponseItems: + description: The number of items returned from a List or Query API method, if applicable. + format: int64 + type: string + policyViolationInfo: + $ref: "#/components/schemas/PolicyViolationInfo" + description: Indicates the policy violations for this request. If the request is denied by the policy, violation information will be logged here. + request: + additionalProperties: + description: Properties of the object. + description: The operation request. This may not include all request parameters, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + type: object + requestMetadata: + $ref: "#/components/schemas/RequestMetadata" + description: Metadata about the operation. + resourceLocation: + $ref: "#/components/schemas/ResourceLocation" + description: The resource location information. + resourceName: + description: 'The resource or collection that is the target of the operation. The name is a scheme-less URI, not including the API service name. For example: "projects/PROJECT_ID/zones/us-central1-a/instances" "projects/PROJECT_ID/datasets/DATASET_ID"' + type: string + resourceOriginalState: + additionalProperties: + description: Properties of the object. + description: The resource's original state before mutation. Present only for operations which have successfully modified the targeted resource(s). In general, this field should contain all changed fields, except those that are already been included in `request`, `response`, `metadata` or `service_data` fields. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + type: object + response: + additionalProperties: + description: Properties of the object. + description: The operation response. This may not include all response elements, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + type: object + serviceData: + additionalProperties: + description: Properties of the object. Contains field @type with type URL. + deprecated: true + description: Deprecated. Use the `metadata` field instead. Other service-specific data about the request, response, and other activities. + type: object + serviceName: + description: The name of the API service performing the operation. For example, `"compute.googleapis.com"`. + type: string + status: + $ref: "#/components/schemas/Status" + description: The status of the overall operation. + type: object + Auth: + description: This message defines request authentication attributes. Terminology is based on the JSON Web Token (JWT) standard, but the terms also correlate to concepts in other standards. + properties: + accessLevels: + description: 'A list of access level resource names that allow resources to be accessed by authenticated requester. It is part of Secure GCP processing for the incoming request. An access level string has the format: "//{api_service_name}/accessPolicies/{policy_id}/accessLevels/{short_name}" Example: "//accesscontextmanager.googleapis.com/accessPolicies/MY_POLICY_ID/accessLevels/MY_LEVEL"' + items: + type: string + type: array + audiences: + description: 'The intended audience(s) for this authentication information. Reflects the audience (`aud`) claim within a JWT. The audience value(s) depends on the `issuer`, but typically include one or more of the following pieces of information: * The services intended to receive the credential. For example, ["https://pubsub.googleapis.com/", "https://storage.googleapis.com/"]. * A set of service-based scopes. For example, ["https://www.googleapis.com/auth/cloud-platform"]. * The client id of an app, such as the Firebase project id for JWTs from Firebase Auth. Consult the documentation for the credential issuer to determine the information provided.' + items: + type: string + type: array + claims: + additionalProperties: + description: Properties of the object. + description: "Structured claims presented with the credential. JWTs include `{key: value}` pairs for standard and private claims. The following is a subset of the standard required and optional claims that would typically be presented for a Google-based JWT: {'iss': 'accounts.google.com', 'sub': '113289723416554971153', 'aud': ['123456789012', 'pubsub.googleapis.com'], 'azp': '123456789012.apps.googleusercontent.com', 'email': 'jsmith@example.com', 'iat': 1353601026, 'exp': 1353604926} SAML assertions are similarly specified, but with an identity provider dependent structure." + type: object + presenter: + description: 'The authorized presenter of the credential. Reflects the optional Authorized Presenter (`azp`) claim within a JWT or the OAuth client id. For example, a Google Cloud Platform client id looks as follows: "123456789012.apps.googleusercontent.com".' + type: string + principal: + description: 'The authenticated principal. Reflects the issuer (`iss`) and subject (`sub`) claims within a JWT. The issuer and subject should be `/` delimited, with `/` percent-encoded within the subject fragment. For Google accounts, the principal format is: "https://accounts.google.com/{id}"' + type: string + type: object + AuthenticationInfo: + description: Authentication information for the operation. + properties: + authoritySelector: + description: The authority selector specified by the requestor, if any. It is not guaranteed that the principal was allowed to use this authority. + type: string + principalEmail: + description: The email address of the authenticated user (or service account on behalf of third party principal) making the request. For third party identity callers, the `principal_subject` field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see [Caller identities in audit logs](https://cloud.google.com/logging/docs/audit#user-id). + type: string + principalSubject: + description: String representation of identity of requesting party. Populated for both first and third party identities. + type: string + serviceAccountDelegationInfo: + description: Identity delegation history of an authenticated service account that makes the request. It contains information on the real authorities that try to access GCP resources by delegating on a service account. When multiple authorities present, they are guaranteed to be sorted based on the original ordering of the identity delegation events. + items: + $ref: "#/components/schemas/ServiceAccountDelegationInfo" + type: array + serviceAccountKeyName: + description: 'The name of the service account key used to create or exchange credentials for authenticating the service account making the request. This is a scheme-less URI full resource name. For example: "//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}"' + type: string + serviceDelegationHistory: + $ref: "#/components/schemas/ServiceDelegationHistory" + description: Records the history of delegated resource access across Google services. + thirdPartyPrincipal: + additionalProperties: + description: Properties of the object. + description: The third party identification (if any) of the authenticated user making the request. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + type: object + type: object + AuthorizationInfo: + description: Authorization information for the operation. + properties: + granted: + description: Whether or not authorization for `resource` and `permission` was granted. + type: boolean + permission: + description: The required IAM permission. + type: string + resource: + description: "The resource being accessed, as a REST-style or cloud resource string. For example: bigquery.googleapis.com/projects/PROJECTID/datasets/DATASETID or projects/PROJECTID/datasets/DATASETID" + type: string + resourceAttributes: + $ref: "#/components/schemas/Resource" + description: Resource attributes used in IAM condition evaluation. This field contains resource attributes like resource type and resource name. To get the whole view of the attributes used in IAM condition evaluation, the user must also look into `AuditLog.request_metadata.request_attributes`. + type: object + CheckError: + description: Defines the errors to be returned in google.api.servicecontrol.v1.CheckResponse.check_errors. + properties: + code: + description: The error code. + enum: + - ERROR_CODE_UNSPECIFIED + - NOT_FOUND + - PERMISSION_DENIED + - RESOURCE_EXHAUSTED + - BUDGET_EXCEEDED + - DENIAL_OF_SERVICE_DETECTED + - LOAD_SHEDDING + - ABUSER_DETECTED + - SERVICE_NOT_ACTIVATED + - VISIBILITY_DENIED + - BILLING_DISABLED + - PROJECT_DELETED + - PROJECT_INVALID + - CONSUMER_INVALID + - IP_ADDRESS_BLOCKED + - REFERER_BLOCKED + - CLIENT_APP_BLOCKED + - API_TARGET_BLOCKED + - API_KEY_INVALID + - API_KEY_EXPIRED + - API_KEY_NOT_FOUND + - SPATULA_HEADER_INVALID + - LOAS_ROLE_INVALID + - NO_LOAS_PROJECT + - LOAS_PROJECT_DISABLED + - SECURITY_POLICY_VIOLATED + - INVALID_CREDENTIAL + - LOCATION_POLICY_VIOLATED + - NAMESPACE_LOOKUP_UNAVAILABLE + - SERVICE_STATUS_UNAVAILABLE + - BILLING_STATUS_UNAVAILABLE + - QUOTA_CHECK_UNAVAILABLE + - LOAS_PROJECT_LOOKUP_UNAVAILABLE + - CLOUD_RESOURCE_MANAGER_BACKEND_UNAVAILABLE + - SECURITY_POLICY_BACKEND_UNAVAILABLE + - LOCATION_POLICY_BACKEND_UNAVAILABLE + - INJECTED_ERROR + type: string + detail: + description: Free-form text providing details on the error cause of the error. + type: string + status: + $ref: "#/components/schemas/Status" + description: Contains public information about the check error. If available, `status.code` will be non zero and client can propagate it out as public error. + subject: + description: 'Subject to whom this error applies. See the specific code enum for more details on this field. For example: - "project:" - "folder:" - "organization:"' + type: string + type: object + CheckInfo: + description: Contains additional information about the check operation. + properties: + apiKeyUid: + description: The unique id of the api key in the format of "apikey:". This field will be populated when the consumer passed to Chemist is an API key and all the API key related validations are successful. + type: string + consumerInfo: + $ref: "#/components/schemas/ConsumerInfo" + description: Consumer info of this check. + unusedArguments: + description: A list of fields and label keys that are ignored by the server. The client doesn't need to send them for following requests to improve performance and allow better aggregation. + items: + type: string + type: array + type: object + CheckRequest: + description: Request message for the Check method. + properties: + operation: + $ref: "#/components/schemas/Operation" + description: The operation to be checked. + requestProjectSettings: + description: Requests the project settings to be returned as part of the check response. + type: boolean + serviceConfigId: + description: Specifies which version of service configuration should be used to process the request. If unspecified or no matching version can be found, the latest one will be used. + type: string + skipActivationCheck: + description: 'Indicates if service activation check should be skipped for this request. Default behavior is to perform the check and apply relevant quota. WARNING: Setting this flag to "true" will disable quota enforcement.' + type: boolean + type: object + CheckResponse: + description: Response message for the Check method. + properties: + checkErrors: + description: Indicate the decision of the check. If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action. + items: + $ref: "#/components/schemas/CheckError" + type: array + checkInfo: + $ref: "#/components/schemas/CheckInfo" + description: Feedback data returned from the server during processing a Check request. + operationId: + description: The same operation_id value used in the CheckRequest. Used for logging and diagnostics purposes. + type: string + quotaInfo: + $ref: "#/components/schemas/QuotaInfo" + description: "Quota information for the check request associated with this response. " + serviceConfigId: + description: The actual config id used to process the request. + type: string + serviceRolloutId: + description: The current service rollout id used to process the request. + type: string + type: object + ConsumerInfo: + description: "`ConsumerInfo` provides information about the consumer." + properties: + consumerNumber: + description: The consumer identity number, can be Google cloud project number, folder number or organization number e.g. 1234567890. A value of 0 indicates no consumer number is found. + format: int64 + type: string + projectNumber: + description: "The Google cloud project number, e.g. 1234567890. A value of 0 indicates no project number is found. NOTE: This field is deprecated after Chemist support flexible consumer id. New code should not depend on this field anymore." + format: int64 + type: string + type: + description: The type of the consumer which should have been defined in [Google Resource Manager](https://cloud.google.com/resource-manager/). + enum: + - CONSUMER_TYPE_UNSPECIFIED + - PROJECT + - FOLDER + - ORGANIZATION + - SERVICE_SPECIFIC + type: string + type: object + Distribution: + description: "Distribution represents a frequency distribution of double-valued sample points. It contains the size of the population of sample points plus additional optional information: * the arithmetic mean of the samples * the minimum and maximum of the samples * the sum-squared-deviation of the samples, used to compute variance * a histogram of the values of the sample points" + properties: + bucketCounts: + description: The number of samples in each histogram bucket. `bucket_counts` are optional. If present, they must sum to the `count` value. The buckets are defined below in `bucket_option`. There are N buckets. `bucket_counts[0]` is the number of samples in the underflow bucket. `bucket_counts[1]` to `bucket_counts[N-1]` are the numbers of samples in each of the finite buckets. And `bucket_counts[N] is the number of samples in the overflow bucket. See the comments of `bucket_option` below for more details. Any suffix of trailing zeros may be omitted. + items: + format: int64 + type: string + type: array + count: + description: The total number of samples in the distribution. Must be >= 0. + format: int64 + type: string + exemplars: + description: Example points. Must be in increasing order of `value` field. + items: + $ref: "#/components/schemas/Exemplar" + type: array + explicitBuckets: + $ref: "#/components/schemas/ExplicitBuckets" + description: Buckets with arbitrary user-provided width. + exponentialBuckets: + $ref: "#/components/schemas/ExponentialBuckets" + description: Buckets with exponentially growing width. + linearBuckets: + $ref: "#/components/schemas/LinearBuckets" + description: Buckets with constant width. + maximum: + description: The maximum of the population of values. Ignored if `count` is zero. + format: double + type: number + mean: + description: The arithmetic mean of the samples in the distribution. If `count` is zero then this field must be zero. + format: double + type: number + minimum: + description: The minimum of the population of values. Ignored if `count` is zero. + format: double + type: number + sumOfSquaredDeviation: + description: "The sum of squared deviations from the mean: Sum[i=1..count]((x_i - mean)^2) where each x_i is a sample values. If `count` is zero then this field must be zero, otherwise validation of the request fails." + format: double + type: number + type: object + Exemplar: + description: Exemplars are example points that may be used to annotate aggregated distribution values. They are metadata that gives information about a particular value added to a Distribution bucket, such as a trace ID that was active when a value was added. They may contain further information, such as a example values and timestamps, origin, etc. + properties: + attachments: + description: "Contextual information about the example value. Examples are: Trace: type.googleapis.com/google.monitoring.v3.SpanContext Literal string: type.googleapis.com/google.protobuf.StringValue Labels dropped during aggregation: type.googleapis.com/google.monitoring.v3.DroppedLabels There may be only a single attachment of any given message type in a single exemplar, and this is enforced by the system." + items: + additionalProperties: + description: Properties of the object. Contains field @type with type URL. + type: object + type: array + timestamp: + description: The observation (sampling) time of the above value. + format: google-datetime + type: string + value: + description: Value of the exemplar point. This value determines to which bucket the exemplar belongs. + format: double + type: number + type: object + ExplicitBuckets: + description: Describing buckets with arbitrary user-provided width. + properties: + bounds: + description: "'bound' is a list of strictly increasing boundaries between buckets. Note that a list of length N-1 defines N buckets because of fenceposting. See comments on `bucket_options` for details. The i'th finite bucket covers the interval [bound[i-1], bound[i]) where i ranges from 1 to bound_size() - 1. Note that there are no finite buckets at all if 'bound' only contains a single element; in that special case the single bound defines the boundary between the underflow and overflow buckets. bucket number lower bound upper bound i == 0 (underflow) -inf bound[i] 0 < i < bound_size() bound[i-1] bound[i] i == bound_size() (overflow) bound[i-1] +inf" + items: + format: double + type: number + type: array + type: object + ExponentialBuckets: + description: Describing buckets with exponentially growing width. + properties: + growthFactor: + description: The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be larger than 1.0. + format: double + type: number + numFiniteBuckets: + description: The number of finite buckets. With the underflow and overflow buckets, the total number of buckets is `num_finite_buckets` + 2. See comments on `bucket_options` for details. + format: int32 + type: integer + scale: + description: The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be > 0. + format: double + type: number + type: object + FirstPartyPrincipal: + description: First party identity principal. + properties: + principalEmail: + description: The email address of a Google account. . + type: string + serviceMetadata: + additionalProperties: + description: Properties of the object. + description: Metadata about the service that uses the service account. . + type: object + type: object + HttpRequest: + description: A common proto for logging HTTP requests. Only contains semantics defined by the HTTP specification. Product-specific logging information MUST be defined in a separate message. + properties: + cacheFillBytes: + description: The number of HTTP response bytes inserted into cache. Set only when a cache fill was attempted. + format: int64 + type: string + cacheHit: + description: Whether or not an entity was served from cache (with or without validation). + type: boolean + cacheLookup: + description: Whether or not a cache lookup was attempted. + type: boolean + cacheValidatedWithOriginServer: + description: Whether or not the response was validated with the origin server before being served from cache. This field is only meaningful if `cache_hit` is True. + type: boolean + latency: + description: The request processing latency on the server, from the time the request was received until the response was sent. + format: google-duration + type: string + protocol: + description: 'Protocol used for the request. Examples: "HTTP/1.1", "HTTP/2", "websocket"' + type: string + referer: + description: The referer URL of the request, as defined in [HTTP/1.1 Header Field Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). + type: string + remoteIp: + description: 'The IP address (IPv4 or IPv6) of the client that issued the HTTP request. Examples: `"192.168.1.1"`, `"FE80::0202:B3FF:FE1E:8329"`.' + type: string + requestMethod: + description: 'The request method. Examples: `"GET"`, `"HEAD"`, `"PUT"`, `"POST"`.' + type: string + requestSize: + description: The size of the HTTP request message in bytes, including the request headers and the request body. + format: int64 + type: string + requestUrl: + description: 'The scheme (http, https), the host name, the path, and the query portion of the URL that was requested. Example: `"http://example.com/some/info?color=red"`.' + type: string + responseSize: + description: The size of the HTTP response message sent back to the client, in bytes, including the response headers and the response body. + format: int64 + type: string + serverIp: + description: The IP address (IPv4 or IPv6) of the origin server that the request was sent to. + type: string + status: + description: "The response code indicating the status of the response. Examples: 200, 404." + format: int32 + type: integer + userAgent: + description: 'The user agent sent by the client. Example: `"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)"`.' + type: string + type: object + LinearBuckets: + description: Describing buckets with constant width. + properties: + numFiniteBuckets: + description: The number of finite buckets. With the underflow and overflow buckets, the total number of buckets is `num_finite_buckets` + 2. See comments on `bucket_options` for details. + format: int32 + type: integer + offset: + description: The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive. + format: double + type: number + width: + description: The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive. Must be strictly positive. + format: double + type: number + type: object + LogEntry: + description: An individual log entry. + properties: + httpRequest: + $ref: "#/components/schemas/HttpRequest" + description: Optional. Information about the HTTP request associated with this log entry, if applicable. + insertId: + description: A unique ID for the log entry used for deduplication. If omitted, the implementation will generate one based on operation_id. + type: string + labels: + additionalProperties: + type: string + description: A set of user-defined (key, value) data that provides additional information about the log entry. + type: object + name: + description: 'Required. The log to which this log entry belongs. Examples: `"syslog"`, `"book_log"`.' + type: string + operation: + $ref: "#/components/schemas/LogEntryOperation" + description: Optional. Information about an operation associated with the log entry, if applicable. + protoPayload: + additionalProperties: + description: Properties of the object. Contains field @type with type URL. + description: The log entry payload, represented as a protocol buffer that is expressed as a JSON object. The only accepted type currently is AuditLog. + type: object + severity: + description: The severity of the log entry. The default value is `LogSeverity.DEFAULT`. + enum: + - DEFAULT + - DEBUG + - INFO + - NOTICE + - WARNING + - ERROR + - CRITICAL + - ALERT + - EMERGENCY + type: string + sourceLocation: + $ref: "#/components/schemas/LogEntrySourceLocation" + description: Optional. Source code location information associated with the log entry, if any. + structPayload: + additionalProperties: + description: Properties of the object. + description: The log entry payload, represented as a structure that is expressed as a JSON object. + type: object + textPayload: + description: The log entry payload, represented as a Unicode string (UTF-8). + type: string + timestamp: + description: The time the event described by the log entry occurred. If omitted, defaults to operation start time. + format: google-datetime + type: string + trace: + description: "Optional. Resource name of the trace associated with the log entry, if any. If this field contains a relative resource name, you can assume the name is relative to `//tracing.googleapis.com`. Example: `projects/my-projectid/traces/06796866738c859f2f19b7cfb3214824`" + type: string + type: object + LogEntryOperation: + description: Additional information about a potentially long-running operation with which a log entry is associated. + properties: + first: + description: Optional. Set this to True if this is the first log entry in the operation. + type: boolean + id: + description: Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation. + type: string + last: + description: Optional. Set this to True if this is the last log entry in the operation. + type: boolean + producer: + description: 'Optional. An arbitrary producer identifier. The combination of `id` and `producer` must be globally unique. Examples for `producer`: `"MyDivision.MyBigCompany.com"`, `"github.com/MyProject/MyApplication"`.' + type: string + type: object + LogEntrySourceLocation: + description: Additional information about the source code location that produced the log entry. + properties: + file: + description: Optional. Source file name. Depending on the runtime environment, this might be a simple name or a fully-qualified name. + type: string + function: + description: "Optional. Human-readable name of the function or method being invoked, with optional context such as the class or package name. This information may be used in contexts such as the logs viewer, where a file and line number are less meaningful. The format can vary by language. For example: `qual.if.ied.Class.method` (Java), `dir/package.func` (Go), `function` (Python)." + type: string + line: + description: Optional. Line within the source file. 1-based; 0 indicates no line number available. + format: int64 + type: string + type: object + MetricValue: + description: Represents a single metric value. + properties: + boolValue: + description: A boolean value. + type: boolean + distributionValue: + $ref: "#/components/schemas/Distribution" + description: A distribution value. + doubleValue: + description: A double precision floating point value. + format: double + type: number + endTime: + description: The end of the time period over which this metric value's measurement applies. If not specified, google.api.servicecontrol.v1.Operation.end_time will be used. + format: google-datetime + type: string + int64Value: + description: A signed 64-bit integer value. + format: int64 + type: string + labels: + additionalProperties: + type: string + description: The labels describing the metric value. See comments on google.api.servicecontrol.v1.Operation.labels for the overriding relationship. Note that this map must not contain monitored resource labels. + type: object + moneyValue: + $ref: "#/components/schemas/Money" + description: A money value. + startTime: + description: The start of the time period over which this metric value's measurement applies. The time period has different semantics for different metric types (cumulative, delta, and gauge). See the metric definition documentation in the service configuration for details. If not specified, google.api.servicecontrol.v1.Operation.start_time will be used. + format: google-datetime + type: string + stringValue: + description: A text string value. + type: string + type: object + MetricValueSet: + description: Represents a set of metric values in the same metric. Each metric value in the set should have a unique combination of start time, end time, and label values. + properties: + metricName: + description: The metric name defined in the service configuration. + type: string + metricValues: + description: The values in this metric. + items: + $ref: "#/components/schemas/MetricValue" + type: array + type: object + Money: + description: Represents an amount of money with its currency type. + properties: + currencyCode: + description: The three-letter currency code defined in ISO 4217. + type: string + nanos: + description: Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos` must be positive or zero. If `units` is zero, `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` must be negative or zero. For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000. + format: int32 + type: integer + units: + description: The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar. + format: int64 + type: string + type: object + Operation: + description: Represents information regarding an operation. + properties: + consumerId: + description: "Identity of the consumer who is using the service. This field should be filled in for the operations initiated by a consumer, but not for service-initiated operations that are not related to a specific consumer. - This can be in one of the following formats: - project:PROJECT_ID, - project`_`number:PROJECT_NUMBER, - projects/PROJECT_ID or PROJECT_NUMBER, - folders/FOLDER_NUMBER, - organizations/ORGANIZATION_NUMBER, - api`_`key:API_KEY." + type: string + endTime: + description: End time of the operation. Required when the operation is used in ServiceController.Report, but optional when the operation is used in ServiceController.Check. + format: google-datetime + type: string + importance: + description: DO NOT USE. This is an experimental field. + enum: + - LOW + - HIGH + - DEBUG + - PROMOTED + type: string + labels: + additionalProperties: + type: string + description: "Labels describing the operation. Only the following labels are allowed: - Labels describing monitored resources as defined in the service configuration. - Default labels of metric values. When specified, labels defined in the metric value override these default. - The following labels defined by Google Cloud Platform: - `cloud.googleapis.com/location` describing the location where the operation happened, - `servicecontrol.googleapis.com/user_agent` describing the user agent of the API request, - `servicecontrol.googleapis.com/service_agent` describing the service used to handle the API request (e.g. ESP), - `servicecontrol.googleapis.com/platform` describing the platform where the API is served, such as App Engine, Compute Engine, or Kubernetes Engine." + type: object + logEntries: + description: Represents information to be logged. + items: + $ref: "#/components/schemas/LogEntry" + type: array + metricValueSets: + description: Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition. Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error. + items: + $ref: "#/components/schemas/MetricValueSet" + type: array + operationId: + description: Identity of the operation. This must be unique within the scope of the service that generated the operation. If the service calls Check() and Report() on the same operation, the two calls should carry the same id. UUID version 4 is recommended, though not required. In scenarios where an operation is computed from existing information and an idempotent id is desirable for deduplication purpose, UUID version 5 is recommended. See RFC 4122 for details. + type: string + operationName: + description: Fully qualified name of the operation. Reserved for future use. + type: string + quotaProperties: + $ref: "#/components/schemas/QuotaProperties" + description: Represents the properties needed for quota check. Applicable only if this operation is for a quota check request. If this is not specified, no quota check will be performed. + resources: + description: The resources that are involved in the operation. The maximum supported number of entries in this field is 100. + items: + $ref: "#/components/schemas/ResourceInfo" + type: array + startTime: + description: Required. Start time of the operation. + format: google-datetime + type: string + traceSpans: + description: Unimplemented. A list of Cloud Trace spans. The span names shall contain the id of the destination project which can be either the produce or the consumer project. + items: + $ref: "#/components/schemas/TraceSpan" + type: array + userLabels: + additionalProperties: + type: string + description: Private Preview. This feature is only available for approved services. User defined labels for the resource that this operation is associated with. + type: object + type: object + OrgPolicyViolationInfo: + description: Represents OrgPolicy Violation information. + properties: + payload: + additionalProperties: + description: Properties of the object. + description: Optional. Resource payload that is currently in scope and is subjected to orgpolicy conditions. This payload may be the subset of the actual Resource that may come in the request. This payload should not contain any core content. + type: object + resourceTags: + additionalProperties: + type: string + description: Optional. Tags referenced on the resource at the time of evaluation. These also include the federated tags, if they are supplied in the CheckOrgPolicy or CheckCustomConstraints Requests. Optional field as of now. These tags are the Cloud tags that are available on the resource during the policy evaluation and will be available as part of the OrgPolicy check response for logging purposes. + type: object + resourceType: + description: "Optional. Resource type that the orgpolicy is checked against. Example: compute.googleapis.com/Instance, store.googleapis.com/bucket" + type: string + violationInfo: + description: Optional. Policy violations + items: + $ref: "#/components/schemas/ViolationInfo" + type: array + type: object + Peer: + description: This message defines attributes for a node that handles a network request. The node can be either a service or an application that sends, forwards, or receives the request. Service peers should fill in `principal` and `labels` as appropriate. + properties: + ip: + description: The IP address of the peer. + type: string + labels: + additionalProperties: + type: string + description: The labels associated with the peer. + type: object + port: + description: The network port of the peer. + format: int64 + type: string + principal: + description: The identity of this peer. Similar to `Request.auth.principal`, but relative to the peer instead of the request. For example, the identity associated with a load balancer that forwarded the request. + type: string + regionCode: + description: The CLDR country/region code associated with the above IP address. If the IP address is private, the `region_code` should reflect the physical location where this peer is running. + type: string + type: object + PolicyViolationInfo: + description: Information related to policy violations for this request. + properties: + orgPolicyViolationInfo: + $ref: "#/components/schemas/OrgPolicyViolationInfo" + description: Indicates the orgpolicy violations for this resource. + type: object + QuotaError: + description: Represents error information for QuotaOperation. + properties: + code: + description: Error code. + enum: + - UNSPECIFIED + - RESOURCE_EXHAUSTED + - OUT_OF_RANGE + - BILLING_NOT_ACTIVE + - PROJECT_DELETED + - API_KEY_INVALID + - API_KEY_EXPIRED + - SPATULA_HEADER_INVALID + - LOAS_ROLE_INVALID + - NO_LOAS_PROJECT + - PROJECT_STATUS_UNAVAILABLE + - SERVICE_STATUS_UNAVAILABLE + - BILLING_STATUS_UNAVAILABLE + - QUOTA_SYSTEM_UNAVAILABLE + type: string + description: + description: Free-form text that provides details on the cause of the error. + type: string + status: + $ref: "#/components/schemas/Status" + description: Contains additional information about the quota error. If available, `status.code` will be non zero. + subject: + description: Subject to whom this error applies. See the specific enum for more details on this field. For example, "clientip:" or "project:". + type: string + type: object + QuotaInfo: + description: Contains the quota information for a quota check response. + properties: + limitExceeded: + deprecated: true + description: "Quota Metrics that have exceeded quota limits. For QuotaGroup-based quota, this is QuotaGroup.name For QuotaLimit-based quota, this is QuotaLimit.name See: google.api.Quota Deprecated: Use quota_metrics to get per quota group limit exceeded status." + items: + type: string + type: array + quotaConsumed: + additionalProperties: + format: int32 + type: integer + description: "Map of quota group name to the actual number of tokens consumed. If the quota check was not successful, then this will not be populated due to no quota consumption. We are not merging this field with 'quota_metrics' field because of the complexity of scaling in Chemist client code base. For simplicity, we will keep this field for Castor (that scales quota usage) and 'quota_metrics' for SuperQuota (that doesn't scale quota usage). " + type: object + quotaMetrics: + description: 'Quota metrics to indicate the usage. Depending on the check request, one or more of the following metrics will be included: 1. For rate quota, per quota group or per quota metric incremental usage will be specified using the following delta metric: "serviceruntime.googleapis.com/api/consumer/quota_used_count" 2. For allocation quota, per quota metric total usage will be specified using the following gauge metric: "serviceruntime.googleapis.com/allocation/consumer/quota_used_count" 3. For both rate quota and allocation quota, the quota limit reached condition will be specified using the following boolean metric: "serviceruntime.googleapis.com/quota/exceeded"' + items: + $ref: "#/components/schemas/MetricValueSet" + type: array + type: object + QuotaOperation: + description: Represents information regarding a quota operation. + properties: + consumerId: + description: "Identity of the consumer for whom this quota operation is being performed. This can be in one of the following formats: project:, project_number:, api_key:." + type: string + labels: + additionalProperties: + type: string + description: Labels describing the operation. + type: object + methodName: + description: "Fully qualified name of the API method for which this quota operation is requested. This name is used for matching quota rules or metric rules and billing status rules defined in service configuration. This field should not be set if any of the following is true: (1) the quota operation is performed on non-API resources. (2) quota_metrics is set because the caller is doing quota override. Example of an RPC method name: google.example.library.v1.LibraryService.CreateShelf" + type: string + operationId: + description: Identity of the operation. For Allocation Quota, this is expected to be unique within the scope of the service that generated the operation, and guarantees idempotency in case of retries. In order to ensure best performance and latency in the Quota backends, operation_ids are optimally associated with time, so that related operations can be accessed fast in storage. For this reason, the recommended token for services that intend to operate at a high QPS is Unix time in nanos + UUID + type: string + quotaMetrics: + description: Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition. Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error. This field is mutually exclusive with method_name. + items: + $ref: "#/components/schemas/MetricValueSet" + type: array + quotaMode: + description: Quota mode for this operation. + enum: + - UNSPECIFIED + - NORMAL + - BEST_EFFORT + - CHECK_ONLY + - ADJUST_ONLY + type: string + type: object + QuotaProperties: + description: Represents the properties needed for quota operations. + properties: + quotaMode: + description: Quota mode for this operation. + enum: + - ACQUIRE + - ACQUIRE_BEST_EFFORT + - CHECK + type: string + type: object + ReportError: + description: Represents the processing error of one Operation in the request. + properties: + operationId: + description: The Operation.operation_id value from the request. + type: string + status: + $ref: "#/components/schemas/Status" + description: Details of the error when processing the Operation. + type: object + ReportRequest: + description: Request message for the Report method. + properties: + operations: + description: Operations to be reported. Typically the service should report one operation per request. Putting multiple operations into a single request is allowed, but should be used only when multiple operations are natually available at the time of the report. There is no limit on the number of operations in the same ReportRequest, however the ReportRequest size should be no larger than 1MB. See ReportResponse.report_errors for partial failure behavior. + items: + $ref: "#/components/schemas/Operation" + type: array + serviceConfigId: + description: Specifies which version of service config should be used to process the request. If unspecified or no matching version can be found, the latest one will be used. + type: string + type: object + ReportResponse: + description: Response message for the Report method. + properties: + reportErrors: + description: "Partial failures, one for each `Operation` in the request that failed processing. There are three possible combinations of the RPC status: 1. The combination of a successful RPC status and an empty `report_errors` list indicates a complete success where all `Operations` in the request are processed successfully. 2. The combination of a successful RPC status and a non-empty `report_errors` list indicates a partial success where some `Operations` in the request succeeded. Each `Operation` that failed processing has a corresponding item in this list. 3. A failed RPC status indicates a general non-deterministic failure. When this happens, it's impossible to know which of the 'Operations' in the request succeeded or failed." + items: + $ref: "#/components/schemas/ReportError" + type: array + serviceConfigId: + description: The actual config id used to process the request. + type: string + serviceRolloutId: + description: The current service rollout id used to process the request. + type: string + type: object + Request: + description: This message defines attributes for an HTTP request. If the actual request is not an HTTP request, the runtime system should try to map the actual request to an equivalent HTTP request. + properties: + auth: + $ref: "#/components/schemas/Auth" + description: The request authentication. May be absent for unauthenticated requests. Derived from the HTTP request `Authorization` header or equivalent. + headers: + additionalProperties: + type: string + description: The HTTP request headers. If multiple headers share the same key, they must be merged according to the HTTP spec. All header keys must be lowercased, because HTTP header keys are case-insensitive. + type: object + host: + description: The HTTP request `Host` header value. + type: string + id: + description: The unique ID for a request, which can be propagated to downstream systems. The ID should have low probability of collision within a single day for a specific service. + type: string + method: + description: The HTTP request method, such as `GET`, `POST`. + type: string + path: + description: The HTTP URL path, excluding the query parameters. + type: string + protocol: + description: The network protocol used with the request, such as "http/1.1", "spdy/3", "h2", "h2c", "webrtc", "tcp", "udp", "quic". See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids for details. + type: string + query: + description: The HTTP URL query in the format of `name1=value1&name2=value2`, as it appears in the first line of the HTTP request. No decoding is performed. + type: string + reason: + description: A special parameter for request reason. It is used by security systems to associate auditing information with a request. + type: string + scheme: + description: The HTTP URL scheme, such as `http` and `https`. + type: string + size: + description: The HTTP request size in bytes. If unknown, it must be -1. + format: int64 + type: string + time: + description: The timestamp when the `destination` service receives the last byte of the request. + format: google-datetime + type: string + type: object + RequestMetadata: + description: Metadata about the request. + properties: + callerIp: + description: The IP address of the caller. For a caller from the internet, this will be the public IPv4 or IPv6 address. For calls made from inside Google's internal production network from one GCP service to another, `caller_ip` will be redacted to "private". For a caller from a Compute Engine VM with a external IP address, `caller_ip` will be the VM's external IP address. For a caller from a Compute Engine VM without a external IP address, if the VM is in the same organization (or project) as the accessed resource, `caller_ip` will be the VM's internal IPv4 address, otherwise `caller_ip` will be redacted to "gce-internal-ip". See https://cloud.google.com/compute/docs/vpc/ for more information. + type: string + callerNetwork: + description: 'The network of the caller. Set only if the network host project is part of the same GCP organization (or project) as the accessed resource. See https://cloud.google.com/compute/docs/vpc/ for more information. This is a scheme-less URI full resource name. For example: "//compute.googleapis.com/projects/PROJECT_ID/global/networks/NETWORK_ID"' + type: string + callerSuppliedUserAgent: + description: "The user agent of the caller. This information is not authenticated and should be treated accordingly. For example: + `google-api-python-client/1.4.0`: The request was made by the Google API client for Python. + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/appengine; appid: s~my-project`: The request was made from the `my-project` App Engine app." + type: string + destinationAttributes: + $ref: "#/components/schemas/Peer" + description: The destination of a network activity, such as accepting a TCP connection. In a multi hop network activity, the destination represents the receiver of the last hop. Only two fields are used in this message, Peer.port and Peer.ip. These fields are optionally populated by those services utilizing the IAM condition feature. + requestAttributes: + $ref: "#/components/schemas/Request" + description: Request attributes used in IAM condition evaluation. This field contains request attributes like request time and access levels associated with the request. To get the whole view of the attributes used in IAM condition evaluation, the user must also look into `AuditLog.authentication_info.resource_attributes`. + type: object + Resource: + description: This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service. + properties: + annotations: + additionalProperties: + type: string + description: "Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/" + type: object + createTime: + description: Output only. The timestamp when the resource was created. This may be either the time creation was initiated or when it was completed. + format: google-datetime + type: string + deleteTime: + description: Output only. The timestamp when the resource was deleted. If the resource is not deleted, this must be empty. + format: google-datetime + type: string + displayName: + description: Mutable. The display name set by clients. Must be <= 63 characters. + type: string + etag: + description: Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. + type: string + labels: + additionalProperties: + type: string + description: The labels or tags on the resource, such as AWS resource tags and Kubernetes resource labels. + type: object + location: + description: Immutable. The location of the resource. The location encoding is specific to the service provider, and new encoding may be introduced as the service evolves. For Google Cloud products, the encoding is what is used by Google Cloud APIs, such as `us-east1`, `aws-us-east-1`, and `azure-eastus2`. The semantics of `location` is identical to the `cloud.googleapis.com/location` label used by some Google Cloud APIs. + type: string + name: + description: 'The stable identifier (name) of a resource on the `service`. A resource can be logically identified as "//{resource.service}/{resource.name}". The differences between a resource name and a URI are: * Resource name is a logical identifier, independent of network protocol and API version. For example, `//pubsub.googleapis.com/projects/123/topics/news-feed`. * URI often includes protocol and version information, so it can be used directly by applications. For example, `https://pubsub.googleapis.com/v1/projects/123/topics/news-feed`. See https://cloud.google.com/apis/design/resource_names for details.' + type: string + service: + description: The name of the service that this resource belongs to, such as `pubsub.googleapis.com`. The service may be different from the DNS hostname that actually serves the request. + type: string + type: + description: The type of the resource. The syntax is platform-specific because different platforms define their resources differently. For Google APIs, the type format must be "{service}/{kind}", such as "pubsub.googleapis.com/Topic". + type: string + uid: + description: The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. + type: string + updateTime: + description: Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. + format: google-datetime + type: string + type: object + ResourceInfo: + description: Describes a resource associated with this operation. + properties: + permission: + description: The resource permission required for this request. + type: string + resourceContainer: + description: "The identifier of the parent of this resource instance. Must be in one of the following formats: - `projects/` - `folders/` - `organizations/`" + type: string + resourceLocation: + description: 'The location of the resource. If not empty, the resource will be checked against location policy. The value must be a valid zone, region or multiregion. For example: "europe-west4" or "northamerica-northeast1-a"' + type: string + resourceName: + description: Name of the resource. This is used for auditing purposes. + type: string + type: object + ResourceLocation: + description: Location information about a resource. + properties: + currentLocations: + description: "The locations of a resource after the execution of the operation. Requests to create or delete a location based resource must populate the 'current_locations' field and not the 'original_locations' field. For example: \"europe-west1-a\" \"us-east1\" \"nam3\"" + items: + type: string + type: array + originalLocations: + description: "The locations of a resource prior to the execution of the operation. Requests that mutate the resource's location must populate both the 'original_locations' as well as the 'current_locations' fields. For example: \"europe-west1-a\" \"us-east1\" \"nam3\"" + items: + type: string + type: array + type: object + ServiceAccountDelegationInfo: + description: Identity delegation history of an authenticated service account. + properties: + firstPartyPrincipal: + $ref: "#/components/schemas/FirstPartyPrincipal" + description: First party (Google) identity as the real authority. + principalSubject: + description: A string representing the principal_subject associated with the identity. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subject/{subject)` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]` + type: string + thirdPartyPrincipal: + $ref: "#/components/schemas/ThirdPartyPrincipal" + description: Third party identity as the real authority. + type: object + ServiceDelegationHistory: + description: The history of delegation across multiple services as the result of the original user's action. Such as "service A uses its own account to do something for user B". This differs from ServiceAccountDelegationInfo, which only tracks the history of direct token exchanges (impersonation). + properties: + originalPrincipal: + description: The original end user who initiated the request to GCP. + type: string + serviceMetadata: + description: Data identifying the service specific jobs or units of work that were involved in a chain of service calls. + items: + $ref: "#/components/schemas/ServiceMetadata" + type: array + type: object + ServiceMetadata: + description: Metadata describing the service and additional service specific information used to identify the job or unit of work at hand. + properties: + jobMetadata: + additionalProperties: + description: Properties of the object. + description: Additional metadata provided by service teams to describe service specific job information that was triggered by the original principal. + type: object + principalSubject: + description: "A string representing the principal_subject associated with the identity. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subject/{subject)` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]` If the identity is a Google account (e.g. workspace user account or service account), this will be the email of the prefixed by `serviceAccount:`. For example: `serviceAccount:my-service-account@project-1.iam.gserviceaccount.com`. If the identity is an individual user, the identity will be formatted as: `user:user_ABC@email.com`." + type: string + serviceDomain: + description: The service's fully qualified domain name, e.g. "dataproc.googleapis.com". + type: string + type: object + SpanContext: + description: "The context of a span. This is attached to an Exemplar in Distribution values during aggregation. It contains the name of a span with format: projects/[PROJECT_ID_OR_NUMBER]/traces/[TRACE_ID]/spans/[SPAN_ID]" + properties: + spanName: + description: "The resource name of the span. The format is: projects/[PROJECT_ID_OR_NUMBER]/traces/[TRACE_ID]/spans/[SPAN_ID] `[TRACE_ID]` is a unique identifier for a trace within a project; it is a 32-character hexadecimal encoding of a 16-byte array. `[SPAN_ID]` is a unique identifier for a span within a trace; it is a 16-character hexadecimal encoding of an 8-byte array." + type: string + type: object + Status: + description: "The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors)." + properties: + code: + description: The status code, which should be an enum value of google.rpc.Code. + format: int32 + type: integer + details: + description: A list of messages that carry the error details. There is a common set of message types for APIs to use. + items: + additionalProperties: + description: Properties of the object. Contains field @type with type URL. + type: object + type: array + message: + description: A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. + type: string + type: object + ThirdPartyPrincipal: + description: Third party identity principal. + properties: + thirdPartyClaims: + additionalProperties: + description: Properties of the object. + description: Metadata about third party identity. + type: object + type: object + TraceSpan: + description: A span represents a single operation within a trace. Spans can be nested to form a trace tree. Often, a trace contains a root span that describes the end-to-end latency, and one or more subspans for its sub-operations. A trace can also contain multiple root spans, or none at all. Spans do not need to be contiguous—there may be gaps or overlaps between spans in a trace. + properties: + attributes: + $ref: "#/components/schemas/Attributes" + description: A set of attributes on the span. You can have up to 32 attributes per span. + childSpanCount: + description: An optional number of child spans that were generated while this span was active. If set, allows implementation to detect missing child spans. + format: int32 + type: integer + displayName: + $ref: "#/components/schemas/TruncatableString" + description: A description of the span's operation (up to 128 bytes). Stackdriver Trace displays the description in the Google Cloud Platform Console. For example, the display name can be a qualified method name or a file name and a line number where the operation is called. A best practice is to use the same display name within an application and at the same call point. This makes it easier to correlate spans in different traces. + endTime: + description: The end time of the span. On the client side, this is the time kept by the local machine where the span execution ends. On the server side, this is the time when the server application handler stops running. + format: google-datetime + type: string + name: + description: "The resource name of the span in the following format: projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/SPAN_ID is a unique identifier for a trace within a project; it is a 32-character hexadecimal encoding of a 16-byte array. [SPAN_ID] is a unique identifier for a span within a trace; it is a 16-character hexadecimal encoding of an 8-byte array." + type: string + parentSpanId: + description: The [SPAN_ID] of this span's parent span. If this is a root span, then this field must be empty. + type: string + sameProcessAsParentSpan: + description: (Optional) Set this parameter to indicate whether this span is in the same process as its parent. If you do not set this parameter, Stackdriver Trace is unable to take advantage of this helpful information. + type: boolean + spanId: + description: The [SPAN_ID] portion of the span's resource name. + type: string + spanKind: + description: Distinguishes between spans generated in a particular context. For example, two spans with the same name may be distinguished using `CLIENT` (caller) and `SERVER` (callee) to identify an RPC call. + enum: + - SPAN_KIND_UNSPECIFIED + - INTERNAL + - SERVER + - CLIENT + - PRODUCER + - CONSUMER + type: string + startTime: + description: The start time of the span. On the client side, this is the time kept by the local machine where the span execution starts. On the server side, this is the time when the server's application handler starts running. + format: google-datetime + type: string + status: + $ref: "#/components/schemas/Status" + description: An optional final status for this span. + type: object + TruncatableString: + description: Represents a string that might be shortened to a specified length. + properties: + truncatedByteCount: + description: The number of bytes removed from the original string. If this value is 0, then the string was not shortened. + format: int32 + type: integer + value: + description: The shortened string. For example, if the original string is 500 bytes long and the limit of the string is 128 bytes, then `value` contains the first 128 bytes of the 500-byte string. Truncation always happens on a UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened string might be less than the size limit. + type: string + type: object + V1HttpRequest: + description: A common proto for logging HTTP requests. Only contains semantics defined by the HTTP specification. Product-specific logging information MUST be defined in a separate message. + properties: + cacheFillBytes: + description: The number of HTTP response bytes inserted into cache. Set only when a cache fill was attempted. + format: int64 + type: string + cacheHit: + description: Whether or not an entity was served from cache (with or without validation). + type: boolean + cacheLookup: + description: Whether or not a cache lookup was attempted. + type: boolean + cacheValidatedWithOriginServer: + description: Whether or not the response was validated with the origin server before being served from cache. This field is only meaningful if `cache_hit` is True. + type: boolean + latency: + description: The request processing latency on the server, from the time the request was received until the response was sent. + format: google-duration + type: string + protocol: + description: 'Protocol used for the request. Examples: "HTTP/1.1", "HTTP/2", "websocket"' + type: string + referer: + description: The referer URL of the request, as defined in [HTTP/1.1 Header Field Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). + type: string + remoteIp: + description: 'The IP address (IPv4 or IPv6) of the client that issued the HTTP request. Examples: `"192.168.1.1"`, `"FE80::0202:B3FF:FE1E:8329"`.' + type: string + requestMethod: + description: 'The request method. Examples: `"GET"`, `"HEAD"`, `"PUT"`, `"POST"`.' + type: string + requestSize: + description: The size of the HTTP request message in bytes, including the request headers and the request body. + format: int64 + type: string + requestUrl: + description: 'The scheme (http, https), the host name, the path, and the query portion of the URL that was requested. Example: `"http://example.com/some/info?color=red"`.' + type: string + responseSize: + description: The size of the HTTP response message sent back to the client, in bytes, including the response headers and the response body. + format: int64 + type: string + serverIp: + description: The IP address (IPv4 or IPv6) of the origin server that the request was sent to. + type: string + status: + description: "The response code indicating the status of the response. Examples: 200, 404." + format: int32 + type: integer + userAgent: + description: 'The user agent sent by the client. Example: `"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)"`.' + type: string + type: object + V1LogEntry: + description: An individual log entry. + properties: + httpRequest: + $ref: "#/components/schemas/V1HttpRequest" + description: Optional. Information about the HTTP request associated with this log entry, if applicable. + insertId: + description: A unique ID for the log entry used for deduplication. If omitted, the implementation will generate one based on operation_id. + type: string + labels: + additionalProperties: + type: string + description: A set of user-defined (key, value) data that provides additional information about the log entry. + type: object + monitoredResourceLabels: + additionalProperties: + type: string + description: A set of user-defined (key, value) data that provides additional information about the moniotored resource that the log entry belongs to. + type: object + name: + description: 'Required. The log to which this log entry belongs. Examples: `"syslog"`, `"book_log"`.' + type: string + operation: + $ref: "#/components/schemas/V1LogEntryOperation" + description: Optional. Information about an operation associated with the log entry, if applicable. + protoPayload: + additionalProperties: + description: Properties of the object. Contains field @type with type URL. + description: The log entry payload, represented as a protocol buffer that is expressed as a JSON object. The only accepted type currently is AuditLog. + type: object + severity: + description: The severity of the log entry. The default value is `LogSeverity.DEFAULT`. + enum: + - DEFAULT + - DEBUG + - INFO + - NOTICE + - WARNING + - ERROR + - CRITICAL + - ALERT + - EMERGENCY + type: string + sourceLocation: + $ref: "#/components/schemas/V1LogEntrySourceLocation" + description: Optional. Source code location information associated with the log entry, if any. + structPayload: + additionalProperties: + description: Properties of the object. + description: The log entry payload, represented as a structure that is expressed as a JSON object. + type: object + textPayload: + description: The log entry payload, represented as a Unicode string (UTF-8). + type: string + timestamp: + description: The time the event described by the log entry occurred. If omitted, defaults to operation start time. + format: google-datetime + type: string + trace: + description: "Optional. Resource name of the trace associated with the log entry, if any. If this field contains a relative resource name, you can assume the name is relative to `//tracing.googleapis.com`. Example: `projects/my-projectid/traces/06796866738c859f2f19b7cfb3214824`" + type: string + type: object + V1LogEntryOperation: + description: Additional information about a potentially long-running operation with which a log entry is associated. + properties: + first: + description: Optional. Set this to True if this is the first log entry in the operation. + type: boolean + id: + description: Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation. + type: string + last: + description: Optional. Set this to True if this is the last log entry in the operation. + type: boolean + producer: + description: 'Optional. An arbitrary producer identifier. The combination of `id` and `producer` must be globally unique. Examples for `producer`: `"MyDivision.MyBigCompany.com"`, `"github.com/MyProject/MyApplication"`.' + type: string + type: object + V1LogEntrySourceLocation: + description: Additional information about the source code location that produced the log entry. + properties: + file: + description: Optional. Source file name. Depending on the runtime environment, this might be a simple name or a fully-qualified name. + type: string + function: + description: "Optional. Human-readable name of the function or method being invoked, with optional context such as the class or package name. This information may be used in contexts such as the logs viewer, where a file and line number are less meaningful. The format can vary by language. For example: `qual.if.ied.Class.method` (Java), `dir/package.func` (Go), `function` (Python)." + type: string + line: + description: Optional. Line within the source file. 1-based; 0 indicates no line number available. + format: int64 + type: string + type: object + ViolationInfo: + description: Provides information about the Policy violation info for this request. + properties: + checkedValue: + description: Optional. Value that is being checked for the policy. This could be in encrypted form (if pii sensitive). This field will only be emitted in LIST_POLICY types + type: string + constraint: + description: Optional. Constraint name + type: string + errorMessage: + description: Optional. Error message that policy is indicating. + type: string + policyType: + description: Optional. Indicates the type of the policy. + enum: + - POLICY_TYPE_UNSPECIFIED + - BOOLEAN_CONSTRAINT + - LIST_CONSTRAINT + - CUSTOM_CONSTRAINT + type: string + type: object + securitySchemes: + Oauth2: + description: Oauth 2.0 implicit authentication + flows: + implicit: + authorizationUrl: https://accounts.google.com/o/oauth2/auth + scopes: + https://www.googleapis.com/auth/cloud-platform: See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. + https://www.googleapis.com/auth/servicecontrol: Manage your Google Service Control data + type: oauth2 + Oauth2c: + description: Oauth 2.0 authorizationCode authentication + flows: + authorizationCode: + authorizationUrl: https://accounts.google.com/o/oauth2/auth + scopes: + https://www.googleapis.com/auth/cloud-platform: See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. + https://www.googleapis.com/auth/servicecontrol: Manage your Google Service Control data + tokenUrl: https://accounts.google.com/o/oauth2/token + type: oauth2 diff --git a/gcloud-sdk/Cargo.toml b/gcloud-sdk/Cargo.toml index af3ca177f..5b34ca248 100644 --- a/gcloud-sdk/Cargo.toml +++ b/gcloud-sdk/Cargo.toml @@ -425,11 +425,12 @@ maps-fleetengine-v1 = [] # REST features google-rest-bigquery-v2 = ["rest"] -google-rest-storage-v1 = ["rest"] -google-rest-sqladmin-v1 = ["rest"] -google-rest-dns-v1 = ["rest"] google-rest-compute-v1 = ["rest"] +google-rest-dns-v1 = ["rest"] google-rest-identitytoolkit-v3 = ["rest"] +google-rest-servicecontrol-v1 = ["rest"] +google-rest-sqladmin-v1 = ["rest"] +google-rest-storage-v1 = ["rest"] [dependencies] tonic = { version = "0.12", features = ["tls"] } diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/mod.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/mod.rs index 14e94060d..d3cf6a563 100644 --- a/gcloud-sdk/src/rest_apis/google_rest_apis/mod.rs +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/mod.rs @@ -15,3 +15,7 @@ pub mod sqladmin_v1; #[cfg(any(feature = "google-rest-storage-v1"))] pub mod storage_v1; + +#[cfg(any(feature = "google-rest-servicecontrol-v1"))] +pub mod servicecontrol_v1; + diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/configuration.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/configuration.rs new file mode 100644 index 000000000..a37ce2db9 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/configuration.rs @@ -0,0 +1,49 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +#[derive(Debug, Clone)] +pub struct Configuration { + pub base_path: String, + pub user_agent: Option, + pub client: reqwest::Client, + pub basic_auth: Option, + pub oauth_access_token: Option, + pub bearer_access_token: Option, + pub api_key: Option, + // TODO: take an oauth2 token source, similar to the go one +} + +pub type BasicAuth = (String, Option); + +#[derive(Debug, Clone)] +pub struct ApiKey { + pub prefix: Option, + pub key: String, +} + +impl Configuration { + pub fn new() -> Configuration { + Configuration::default() + } +} + +impl Default for Configuration { + fn default() -> Self { + Configuration { + base_path: "https://servicecontrol.googleapis.com".to_owned(), + user_agent: Some("OpenAPI-Generator/v1/rust".to_owned()), + client: reqwest::Client::new(), + basic_auth: None, + oauth_access_token: None, + bearer_access_token: None, + api_key: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/mod.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/mod.rs new file mode 100644 index 000000000..0765ac599 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/mod.rs @@ -0,0 +1,98 @@ +use serde::{Deserialize, Serialize}; +use std::error; +use std::fmt; + +#[derive(Debug, Clone)] +pub struct ResponseContent { + pub status: reqwest::StatusCode, + pub content: String, + pub entity: Option, +} + +#[derive(Debug)] +pub enum Error { + Reqwest(reqwest::Error), + Serde(serde_json::Error), + Io(std::io::Error), + ResponseError(ResponseContent), +} + +impl fmt::Display for Error { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + let (module, e) = match self { + Error::Reqwest(e) => ("reqwest", e.to_string()), + Error::Serde(e) => ("serde", e.to_string()), + Error::Io(e) => ("IO", e.to_string()), + Error::ResponseError(e) => ("response", format!("status code {}", e.status)), + }; + write!(f, "error in {}: {}", module, e) + } +} + +impl error::Error for Error { + fn source(&self) -> Option<&(dyn error::Error + 'static)> { + Some(match self { + Error::Reqwest(e) => e, + Error::Serde(e) => e, + Error::Io(e) => e, + Error::ResponseError(_) => return None, + }) + } +} + +impl From for Error { + fn from(e: reqwest::Error) -> Self { + Error::Reqwest(e) + } +} + +impl From for Error { + fn from(e: serde_json::Error) -> Self { + Error::Serde(e) + } +} + +impl From for Error { + fn from(e: std::io::Error) -> Self { + Error::Io(e) + } +} + +pub fn urlencode>(s: T) -> String { + ::url::form_urlencoded::byte_serialize(s.as_ref().as_bytes()).collect() +} + +pub fn parse_deep_object(prefix: &str, value: &serde_json::Value) -> Vec<(String, String)> { + if let serde_json::Value::Object(object) = value { + let mut params = vec![]; + + for (key, value) in object { + match value { + serde_json::Value::Object(_) => params.append(&mut parse_deep_object( + &format!("{}[{}]", prefix, key), + value, + )), + serde_json::Value::Array(array) => { + for (i, value) in array.iter().enumerate() { + params.append(&mut parse_deep_object( + &format!("{}[{}][{}]", prefix, key, i), + value, + )); + } + } + serde_json::Value::String(s) => { + params.push((format!("{}[{}]", prefix, key), s.clone())) + } + _ => params.push((format!("{}[{}]", prefix, key), value.to_string())), + } + } + + return params; + } + + unimplemented!("Only objects are supported with style=deepObject") +} + +pub mod services_api; + +pub mod configuration; diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/services_api.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/services_api.rs new file mode 100644 index 000000000..fcb807264 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/apis/services_api.rs @@ -0,0 +1,455 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +use reqwest; + +use super::{configuration, Error}; +use crate::google_rest_apis::servicecontrol_v1::apis::ResponseContent; + +/// struct for passing parameters to the method [`servicecontrol_services_allocate_quota`] +#[derive(Clone, Debug, Default)] +pub struct ServicecontrolPeriodServicesPeriodAllocateQuotaParams { + /// Name of the service as specified in the service configuration. For example, `\"pubsub.googleapis.com\"`. See google.api.Service for the definition of a service name. + pub service_name: String, + /// V1 error format. + pub dollar_xgafv: Option, + /// OAuth access token. + pub access_token: Option, + /// Data format for response. + pub alt: Option, + /// JSONP + pub callback: Option, + /// Selector specifying which fields to include in a partial response. + pub fields: Option, + /// API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. + pub key: Option, + /// OAuth 2.0 token for the current user. + pub oauth_token: Option, + /// Returns response with indentations and line breaks. + pub pretty_print: Option, + /// Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. + pub quota_user: Option, + /// Upload protocol for media (e.g. \"raw\", \"multipart\"). + pub upload_protocol: Option, + /// Legacy upload protocol for media (e.g. \"media\", \"multipart\"). + pub upload_type: Option, + pub allocate_quota_request: + Option, +} + +/// struct for passing parameters to the method [`servicecontrol_services_check`] +#[derive(Clone, Debug, Default)] +pub struct ServicecontrolPeriodServicesPeriodCheckParams { + /// The service name as specified in its service configuration. For example, `\"pubsub.googleapis.com\"`. See [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) for the definition of a service name. + pub service_name: String, + /// V1 error format. + pub dollar_xgafv: Option, + /// OAuth access token. + pub access_token: Option, + /// Data format for response. + pub alt: Option, + /// JSONP + pub callback: Option, + /// Selector specifying which fields to include in a partial response. + pub fields: Option, + /// API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. + pub key: Option, + /// OAuth 2.0 token for the current user. + pub oauth_token: Option, + /// Returns response with indentations and line breaks. + pub pretty_print: Option, + /// Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. + pub quota_user: Option, + /// Upload protocol for media (e.g. \"raw\", \"multipart\"). + pub upload_protocol: Option, + /// Legacy upload protocol for media (e.g. \"media\", \"multipart\"). + pub upload_type: Option, + pub check_request: Option, +} + +/// struct for passing parameters to the method [`servicecontrol_services_report`] +#[derive(Clone, Debug, Default)] +pub struct ServicecontrolPeriodServicesPeriodReportParams { + /// The service name as specified in its service configuration. For example, `\"pubsub.googleapis.com\"`. See [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) for the definition of a service name. + pub service_name: String, + /// V1 error format. + pub dollar_xgafv: Option, + /// OAuth access token. + pub access_token: Option, + /// Data format for response. + pub alt: Option, + /// JSONP + pub callback: Option, + /// Selector specifying which fields to include in a partial response. + pub fields: Option, + /// API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. + pub key: Option, + /// OAuth 2.0 token for the current user. + pub oauth_token: Option, + /// Returns response with indentations and line breaks. + pub pretty_print: Option, + /// Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. + pub quota_user: Option, + /// Upload protocol for media (e.g. \"raw\", \"multipart\"). + pub upload_protocol: Option, + /// Legacy upload protocol for media (e.g. \"media\", \"multipart\"). + pub upload_type: Option, + pub report_request: Option, +} + +/// struct for typed errors of method [`servicecontrol_services_allocate_quota`] +#[derive(Debug, Clone, Serialize, Deserialize)] +#[serde(untagged)] +pub enum ServicecontrolPeriodServicesPeriodAllocateQuotaError { + UnknownValue(serde_json::Value), +} + +/// struct for typed errors of method [`servicecontrol_services_check`] +#[derive(Debug, Clone, Serialize, Deserialize)] +#[serde(untagged)] +pub enum ServicecontrolPeriodServicesPeriodCheckError { + UnknownValue(serde_json::Value), +} + +/// struct for typed errors of method [`servicecontrol_services_report`] +#[derive(Debug, Clone, Serialize, Deserialize)] +#[serde(untagged)] +pub enum ServicecontrolPeriodServicesPeriodReportError { + UnknownValue(serde_json::Value), +} + +/// Attempts to allocate quota for the specified consumer. It should be called before the operation is executed. This method requires the `servicemanagement.services.quota` permission on the specified service. For more information, see [Cloud IAM](https://cloud.google.com/iam). **NOTE:** The client **must** fail-open on server errors `INTERNAL`, `UNKNOWN`, `DEADLINE_EXCEEDED`, and `UNAVAILABLE`. To ensure system reliability, the server may inject these errors to prohibit any hard dependency on the quota functionality. +pub async fn servicecontrol_services_allocate_quota( + configuration: &configuration::Configuration, + params: ServicecontrolPeriodServicesPeriodAllocateQuotaParams, +) -> Result< + crate::google_rest_apis::servicecontrol_v1::models::AllocateQuotaResponse, + Error, +> { + let local_var_configuration = configuration; + + // unbox the parameters + let service_name = params.service_name; + let dollar_xgafv = params.dollar_xgafv; + let access_token = params.access_token; + let alt = params.alt; + let callback = params.callback; + let fields = params.fields; + let key = params.key; + let oauth_token = params.oauth_token; + let pretty_print = params.pretty_print; + let quota_user = params.quota_user; + let upload_protocol = params.upload_protocol; + let upload_type = params.upload_type; + let allocate_quota_request = params.allocate_quota_request; + + let local_var_client = &local_var_configuration.client; + + let local_var_uri_str = format!( + "{}/v1/services/{serviceName}:allocateQuota", + local_var_configuration.base_path, + serviceName = crate::google_rest_apis::servicecontrol_v1::apis::urlencode(service_name) + ); + let mut local_var_req_builder = + local_var_client.request(reqwest::Method::POST, local_var_uri_str.as_str()); + + if let Some(ref local_var_str) = dollar_xgafv { + local_var_req_builder = + local_var_req_builder.query(&[("$.xgafv", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = access_token { + local_var_req_builder = + local_var_req_builder.query(&[("access_token", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = alt { + local_var_req_builder = local_var_req_builder.query(&[("alt", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = callback { + local_var_req_builder = + local_var_req_builder.query(&[("callback", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = fields { + local_var_req_builder = + local_var_req_builder.query(&[("fields", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = key { + local_var_req_builder = local_var_req_builder.query(&[("key", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = oauth_token { + local_var_req_builder = + local_var_req_builder.query(&[("oauth_token", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = pretty_print { + local_var_req_builder = + local_var_req_builder.query(&[("prettyPrint", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = quota_user { + local_var_req_builder = + local_var_req_builder.query(&[("quotaUser", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = upload_protocol { + local_var_req_builder = + local_var_req_builder.query(&[("upload_protocol", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = upload_type { + local_var_req_builder = + local_var_req_builder.query(&[("uploadType", &local_var_str.to_string())]); + } + if let Some(ref local_var_user_agent) = local_var_configuration.user_agent { + local_var_req_builder = + local_var_req_builder.header(reqwest::header::USER_AGENT, local_var_user_agent.clone()); + } + if let Some(ref local_var_token) = local_var_configuration.oauth_access_token { + local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned()); + }; + if let Some(ref local_var_token) = local_var_configuration.oauth_access_token { + local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned()); + }; + local_var_req_builder = local_var_req_builder.json(&allocate_quota_request); + + let local_var_req = local_var_req_builder.build()?; + let local_var_resp = local_var_client.execute(local_var_req).await?; + + let local_var_status = local_var_resp.status(); + let local_var_content = local_var_resp.text().await?; + + if !local_var_status.is_client_error() && !local_var_status.is_server_error() { + serde_json::from_str(&local_var_content).map_err(Error::from) + } else { + let local_var_entity: Option = + serde_json::from_str(&local_var_content).ok(); + let local_var_error = ResponseContent { + status: local_var_status, + content: local_var_content, + entity: local_var_entity, + }; + Err(Error::ResponseError(local_var_error)) + } +} + +/// Checks whether an operation on a service should be allowed to proceed based on the configuration of the service and related policies. It must be called before the operation is executed. If feasible, the client should cache the check results and reuse them for 60 seconds. In case of any server errors, the client should rely on the cached results for much longer time to avoid outage. WARNING: There is general 60s delay for the configuration and policy propagation, therefore callers MUST NOT depend on the `Check` method having the latest policy information. NOTE: the CheckRequest has the size limit (wire-format byte size) of 1MB. This method requires the `servicemanagement.services.check` permission on the specified service. For more information, see [Cloud IAM](https://cloud.google.com/iam). +pub async fn servicecontrol_services_check( + configuration: &configuration::Configuration, + params: ServicecontrolPeriodServicesPeriodCheckParams, +) -> Result< + crate::google_rest_apis::servicecontrol_v1::models::CheckResponse, + Error, +> { + let local_var_configuration = configuration; + + // unbox the parameters + let service_name = params.service_name; + let dollar_xgafv = params.dollar_xgafv; + let access_token = params.access_token; + let alt = params.alt; + let callback = params.callback; + let fields = params.fields; + let key = params.key; + let oauth_token = params.oauth_token; + let pretty_print = params.pretty_print; + let quota_user = params.quota_user; + let upload_protocol = params.upload_protocol; + let upload_type = params.upload_type; + let check_request = params.check_request; + + let local_var_client = &local_var_configuration.client; + + let local_var_uri_str = format!( + "{}/v1/services/{serviceName}:check", + local_var_configuration.base_path, + serviceName = crate::google_rest_apis::servicecontrol_v1::apis::urlencode(service_name) + ); + let mut local_var_req_builder = + local_var_client.request(reqwest::Method::POST, local_var_uri_str.as_str()); + + if let Some(ref local_var_str) = dollar_xgafv { + local_var_req_builder = + local_var_req_builder.query(&[("$.xgafv", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = access_token { + local_var_req_builder = + local_var_req_builder.query(&[("access_token", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = alt { + local_var_req_builder = local_var_req_builder.query(&[("alt", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = callback { + local_var_req_builder = + local_var_req_builder.query(&[("callback", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = fields { + local_var_req_builder = + local_var_req_builder.query(&[("fields", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = key { + local_var_req_builder = local_var_req_builder.query(&[("key", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = oauth_token { + local_var_req_builder = + local_var_req_builder.query(&[("oauth_token", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = pretty_print { + local_var_req_builder = + local_var_req_builder.query(&[("prettyPrint", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = quota_user { + local_var_req_builder = + local_var_req_builder.query(&[("quotaUser", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = upload_protocol { + local_var_req_builder = + local_var_req_builder.query(&[("upload_protocol", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = upload_type { + local_var_req_builder = + local_var_req_builder.query(&[("uploadType", &local_var_str.to_string())]); + } + if let Some(ref local_var_user_agent) = local_var_configuration.user_agent { + local_var_req_builder = + local_var_req_builder.header(reqwest::header::USER_AGENT, local_var_user_agent.clone()); + } + if let Some(ref local_var_token) = local_var_configuration.oauth_access_token { + local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned()); + }; + if let Some(ref local_var_token) = local_var_configuration.oauth_access_token { + local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned()); + }; + local_var_req_builder = local_var_req_builder.json(&check_request); + + let local_var_req = local_var_req_builder.build()?; + eprintln!("{local_var_req:?}"); + eprintln!("{}\n\n", serde_json::to_string(&check_request).unwrap()); + let local_var_resp = local_var_client.execute(local_var_req).await?; + + let local_var_status = local_var_resp.status(); + let local_var_content = local_var_resp.text().await?; + + if !local_var_status.is_client_error() && !local_var_status.is_server_error() { + serde_json::from_str(&local_var_content).map_err(Error::from) + } else { + let local_var_entity: Option = + serde_json::from_str(&local_var_content).ok(); + let local_var_error = ResponseContent { + status: local_var_status, + content: local_var_content, + entity: local_var_entity, + }; + Err(Error::ResponseError(local_var_error)) + } +} + +/// Reports operation results to Google Service Control, such as logs and metrics. It should be called after an operation is completed. If feasible, the client should aggregate reporting data for up to 5 seconds to reduce API traffic. Limiting aggregation to 5 seconds is to reduce data loss during client crashes. Clients should carefully choose the aggregation time window to avoid data loss risk more than 0.01% for business and compliance reasons. NOTE: the ReportRequest has the size limit (wire-format byte size) of 1MB. This method requires the `servicemanagement.services.report` permission on the specified service. For more information, see [Google Cloud IAM](https://cloud.google.com/iam). +pub async fn servicecontrol_services_report( + configuration: &configuration::Configuration, + params: ServicecontrolPeriodServicesPeriodReportParams, +) -> Result< + crate::google_rest_apis::servicecontrol_v1::models::ReportResponse, + Error, +> { + let local_var_configuration = configuration; + + // unbox the parameters + let service_name = params.service_name; + let dollar_xgafv = params.dollar_xgafv; + let access_token = params.access_token; + let alt = params.alt; + let callback = params.callback; + let fields = params.fields; + let key = params.key; + let oauth_token = params.oauth_token; + let pretty_print = params.pretty_print; + let quota_user = params.quota_user; + let upload_protocol = params.upload_protocol; + let upload_type = params.upload_type; + let report_request = params.report_request; + + let local_var_client = &local_var_configuration.client; + + let local_var_uri_str = format!( + "{}/v1/services/{serviceName}:report", + local_var_configuration.base_path, + serviceName = crate::google_rest_apis::servicecontrol_v1::apis::urlencode(service_name) + ); + let mut local_var_req_builder = + local_var_client.request(reqwest::Method::POST, local_var_uri_str.as_str()); + + if let Some(ref local_var_str) = dollar_xgafv { + local_var_req_builder = + local_var_req_builder.query(&[("$.xgafv", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = access_token { + local_var_req_builder = + local_var_req_builder.query(&[("access_token", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = alt { + local_var_req_builder = local_var_req_builder.query(&[("alt", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = callback { + local_var_req_builder = + local_var_req_builder.query(&[("callback", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = fields { + local_var_req_builder = + local_var_req_builder.query(&[("fields", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = key { + local_var_req_builder = local_var_req_builder.query(&[("key", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = oauth_token { + local_var_req_builder = + local_var_req_builder.query(&[("oauth_token", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = pretty_print { + local_var_req_builder = + local_var_req_builder.query(&[("prettyPrint", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = quota_user { + local_var_req_builder = + local_var_req_builder.query(&[("quotaUser", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = upload_protocol { + local_var_req_builder = + local_var_req_builder.query(&[("upload_protocol", &local_var_str.to_string())]); + } + if let Some(ref local_var_str) = upload_type { + local_var_req_builder = + local_var_req_builder.query(&[("uploadType", &local_var_str.to_string())]); + } + if let Some(ref local_var_user_agent) = local_var_configuration.user_agent { + local_var_req_builder = + local_var_req_builder.header(reqwest::header::USER_AGENT, local_var_user_agent.clone()); + } + if let Some(ref local_var_token) = local_var_configuration.oauth_access_token { + local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned()); + }; + if let Some(ref local_var_token) = local_var_configuration.oauth_access_token { + local_var_req_builder = local_var_req_builder.bearer_auth(local_var_token.to_owned()); + }; + local_var_req_builder = local_var_req_builder.json(&report_request); + + let local_var_req = local_var_req_builder.build()?; + let local_var_resp = local_var_client.execute(local_var_req).await?; + + let local_var_status = local_var_resp.status(); + let local_var_content = local_var_resp.text().await?; + + if !local_var_status.is_client_error() && !local_var_status.is_server_error() { + serde_json::from_str(&local_var_content).map_err(Error::from) + } else { + let local_var_entity: Option = + serde_json::from_str(&local_var_content).ok(); + let local_var_error = ResponseContent { + status: local_var_status, + content: local_var_content, + entity: local_var_entity, + }; + Err(Error::ResponseError(local_var_error)) + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/mod.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/mod.rs new file mode 100644 index 000000000..77dc476d6 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/mod.rs @@ -0,0 +1,7 @@ +mod apis; +mod models; +mod rest_client_factory; + +pub use apis::*; +pub use models::*; +pub use rest_client_factory::*; diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_info.rs new file mode 100644 index 000000000..f84f01260 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_info.rs @@ -0,0 +1,24 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct AllocateInfo { + /// A list of label keys that were unused by the server in processing the request. Thus, for similar requests repeated in a certain future time window, the caller can choose to ignore these labels in the requests to achieve better client-side cache hits and quota aggregation for rate quota. This field is not populated for allocation quota checks. + #[serde(rename = "unusedArguments", skip_serializing_if = "Option::is_none")] + pub unused_arguments: Option>, +} + +impl AllocateInfo { + pub fn new() -> AllocateInfo { + AllocateInfo { + unused_arguments: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_quota_request.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_quota_request.rs new file mode 100644 index 000000000..5eec6b136 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_quota_request.rs @@ -0,0 +1,31 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// AllocateQuotaRequest : Request message for the AllocateQuota method. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct AllocateQuotaRequest { + #[serde(rename = "allocateOperation", skip_serializing_if = "Option::is_none")] + pub allocate_operation: + Option>, + /// Specifies which version of service configuration should be used to process the request. If unspecified or no matching version can be found, the latest one will be used. + #[serde(rename = "serviceConfigId", skip_serializing_if = "Option::is_none")] + pub service_config_id: Option, +} + +impl AllocateQuotaRequest { + /// Request message for the AllocateQuota method. + pub fn new() -> AllocateQuotaRequest { + AllocateQuotaRequest { + allocate_operation: None, + service_config_id: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_quota_response.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_quota_response.rs new file mode 100644 index 000000000..6b052abfc --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/allocate_quota_response.rs @@ -0,0 +1,45 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// AllocateQuotaResponse : Response message for the AllocateQuota method. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct AllocateQuotaResponse { + /// Indicates the decision of the allocate. + #[serde(rename = "allocateErrors", skip_serializing_if = "Option::is_none")] + pub allocate_errors: + Option>, + #[serde(rename = "allocateInfo", skip_serializing_if = "Option::is_none")] + pub allocate_info: + Option>, + /// The same operation_id value used in the AllocateQuotaRequest. Used for logging and diagnostics purposes. + #[serde(rename = "operationId", skip_serializing_if = "Option::is_none")] + pub operation_id: Option, + /// Quota metrics to indicate the result of allocation. Depending on the request, one or more of the following metrics will be included: 1. Per quota group or per quota metric incremental usage will be specified using the following delta metric : \"serviceruntime.googleapis.com/api/consumer/quota_used_count\" 2. The quota limit reached condition will be specified using the following boolean metric : \"serviceruntime.googleapis.com/quota/exceeded\" + #[serde(rename = "quotaMetrics", skip_serializing_if = "Option::is_none")] + pub quota_metrics: + Option>, + /// ID of the actual config used to process the request. + #[serde(rename = "serviceConfigId", skip_serializing_if = "Option::is_none")] + pub service_config_id: Option, +} + +impl AllocateQuotaResponse { + /// Response message for the AllocateQuota method. + pub fn new() -> AllocateQuotaResponse { + AllocateQuotaResponse { + allocate_errors: None, + allocate_info: None, + operation_id: None, + quota_metrics: None, + service_config_id: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/attribute_value.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/attribute_value.rs new file mode 100644 index 000000000..65d04521d --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/attribute_value.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// AttributeValue : The allowed types for [VALUE] in a `[KEY]:[VALUE]` attribute. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct AttributeValue { + /// A Boolean value represented by `true` or `false`. + #[serde(rename = "boolValue", skip_serializing_if = "Option::is_none")] + pub bool_value: Option, + /// A 64-bit signed integer. + #[serde(rename = "intValue", skip_serializing_if = "Option::is_none")] + pub int_value: Option, + #[serde(rename = "stringValue", skip_serializing_if = "Option::is_none")] + pub string_value: + Option>, +} + +impl AttributeValue { + /// The allowed types for [VALUE] in a `[KEY]:[VALUE]` attribute. + pub fn new() -> AttributeValue { + AttributeValue { + bool_value: None, + int_value: None, + string_value: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/attributes.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/attributes.rs new file mode 100644 index 000000000..27844e0e3 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/attributes.rs @@ -0,0 +1,39 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Attributes : A set of attributes, each in the format `[KEY]:[VALUE]`. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Attributes { + /// The set of attributes. Each attribute's key can be up to 128 bytes long. The value can be a string up to 256 bytes, a signed 64-bit integer, or the Boolean values `true` and `false`. For example: \"/instance_id\": \"my-instance\" \"/http/user_agent\": \"\" \"/http/request_bytes\": 300 \"abc.com/myattribute\": true + #[serde(rename = "attributeMap", skip_serializing_if = "Option::is_none")] + pub attribute_map: Option< + ::std::collections::HashMap< + String, + crate::google_rest_apis::servicecontrol_v1::models::AttributeValue, + >, + >, + /// The number of attributes that were discarded. Attributes can be discarded because their keys are too long or because there are too many attributes. If this value is 0 then all attributes are valid. + #[serde( + rename = "droppedAttributesCount", + skip_serializing_if = "Option::is_none" + )] + pub dropped_attributes_count: Option, +} + +impl Attributes { + /// A set of attributes, each in the format `[KEY]:[VALUE]`. + pub fn new() -> Attributes { + Attributes { + attribute_map: None, + dropped_attributes_count: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/audit_log.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/audit_log.rs new file mode 100644 index 000000000..2367d9913 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/audit_log.rs @@ -0,0 +1,89 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// AuditLog : Common audit log format for Google Cloud Platform API operations. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct AuditLog { + #[serde(rename = "authenticationInfo", skip_serializing_if = "Option::is_none")] + pub authentication_info: + Option>, + /// Authorization information. If there are multiple resources or permissions involved, then there is one AuthorizationInfo element for each {resource, permission} tuple. + #[serde(rename = "authorizationInfo", skip_serializing_if = "Option::is_none")] + pub authorization_info: + Option>, + /// Other service-specific data about the request, response, and other information associated with the current audited event. + #[serde(rename = "metadata", skip_serializing_if = "Option::is_none")] + pub metadata: Option<::std::collections::HashMap>, + /// The name of the service method or operation. For API calls, this should be the name of the API method. For example, \"google.cloud.bigquery.v2.TableService.InsertTable\" \"google.logging.v2.ConfigServiceV2.CreateSink\" + #[serde(rename = "methodName", skip_serializing_if = "Option::is_none")] + pub method_name: Option, + /// The number of items returned from a List or Query API method, if applicable. + #[serde(rename = "numResponseItems", skip_serializing_if = "Option::is_none")] + pub num_response_items: Option, + #[serde( + rename = "policyViolationInfo", + skip_serializing_if = "Option::is_none" + )] + pub policy_violation_info: + Option>, + /// The operation request. This may not include all request parameters, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + #[serde(rename = "request", skip_serializing_if = "Option::is_none")] + pub request: Option<::std::collections::HashMap>, + #[serde(rename = "requestMetadata", skip_serializing_if = "Option::is_none")] + pub request_metadata: + Option>, + #[serde(rename = "resourceLocation", skip_serializing_if = "Option::is_none")] + pub resource_location: + Option>, + /// The resource or collection that is the target of the operation. The name is a scheme-less URI, not including the API service name. For example: \"projects/PROJECT_ID/zones/us-central1-a/instances\" \"projects/PROJECT_ID/datasets/DATASET_ID\" + #[serde(rename = "resourceName", skip_serializing_if = "Option::is_none")] + pub resource_name: Option, + /// The resource's original state before mutation. Present only for operations which have successfully modified the targeted resource(s). In general, this field should contain all changed fields, except those that are already been included in `request`, `response`, `metadata` or `service_data` fields. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + #[serde( + rename = "resourceOriginalState", + skip_serializing_if = "Option::is_none" + )] + pub resource_original_state: Option<::std::collections::HashMap>, + /// The operation response. This may not include all response elements, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + #[serde(rename = "response", skip_serializing_if = "Option::is_none")] + pub response: Option<::std::collections::HashMap>, + /// Deprecated. Use the `metadata` field instead. Other service-specific data about the request, response, and other activities. + #[serde(rename = "serviceData", skip_serializing_if = "Option::is_none")] + pub service_data: Option<::std::collections::HashMap>, + /// The name of the API service performing the operation. For example, `\"compute.googleapis.com\"`. + #[serde(rename = "serviceName", skip_serializing_if = "Option::is_none")] + pub service_name: Option, + #[serde(rename = "status", skip_serializing_if = "Option::is_none")] + pub status: Option>, +} + +impl AuditLog { + /// Common audit log format for Google Cloud Platform API operations. + pub fn new() -> AuditLog { + AuditLog { + authentication_info: None, + authorization_info: None, + metadata: None, + method_name: None, + num_response_items: None, + policy_violation_info: None, + request: None, + request_metadata: None, + resource_location: None, + resource_name: None, + resource_original_state: None, + response: None, + service_data: None, + service_name: None, + status: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/auth.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/auth.rs new file mode 100644 index 000000000..0da941b57 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/auth.rs @@ -0,0 +1,43 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Auth : This message defines request authentication attributes. Terminology is based on the JSON Web Token (JWT) standard, but the terms also correlate to concepts in other standards. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Auth { + /// A list of access level resource names that allow resources to be accessed by authenticated requester. It is part of Secure GCP processing for the incoming request. An access level string has the format: \"//{api_service_name}/accessPolicies/{policy_id}/accessLevels/{short_name}\" Example: \"//accesscontextmanager.googleapis.com/accessPolicies/MY_POLICY_ID/accessLevels/MY_LEVEL\" + #[serde(rename = "accessLevels", skip_serializing_if = "Option::is_none")] + pub access_levels: Option>, + /// The intended audience(s) for this authentication information. Reflects the audience (`aud`) claim within a JWT. The audience value(s) depends on the `issuer`, but typically include one or more of the following pieces of information: * The services intended to receive the credential. For example, [\"https://pubsub.googleapis.com/\", \"https://storage.googleapis.com/\"]. * A set of service-based scopes. For example, [\"https://www.googleapis.com/auth/cloud-platform\"]. * The client id of an app, such as the Firebase project id for JWTs from Firebase Auth. Consult the documentation for the credential issuer to determine the information provided. + #[serde(rename = "audiences", skip_serializing_if = "Option::is_none")] + pub audiences: Option>, + /// Structured claims presented with the credential. JWTs include `{key: value}` pairs for standard and private claims. The following is a subset of the standard required and optional claims that would typically be presented for a Google-based JWT: {'iss': 'accounts.google.com', 'sub': '113289723416554971153', 'aud': ['123456789012', 'pubsub.googleapis.com'], 'azp': '123456789012.apps.googleusercontent.com', 'email': 'jsmith@example.com', 'iat': 1353601026, 'exp': 1353604926} SAML assertions are similarly specified, but with an identity provider dependent structure. + #[serde(rename = "claims", skip_serializing_if = "Option::is_none")] + pub claims: Option<::std::collections::HashMap>, + /// The authorized presenter of the credential. Reflects the optional Authorized Presenter (`azp`) claim within a JWT or the OAuth client id. For example, a Google Cloud Platform client id looks as follows: \"123456789012.apps.googleusercontent.com\". + #[serde(rename = "presenter", skip_serializing_if = "Option::is_none")] + pub presenter: Option, + /// The authenticated principal. Reflects the issuer (`iss`) and subject (`sub`) claims within a JWT. The issuer and subject should be `/` delimited, with `/` percent-encoded within the subject fragment. For Google accounts, the principal format is: \"https://accounts.google.com/{id}\" + #[serde(rename = "principal", skip_serializing_if = "Option::is_none")] + pub principal: Option, +} + +impl Auth { + /// This message defines request authentication attributes. Terminology is based on the JSON Web Token (JWT) standard, but the terms also correlate to concepts in other standards. + pub fn new() -> Auth { + Auth { + access_levels: None, + audiences: None, + claims: None, + presenter: None, + principal: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/authentication_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/authentication_info.rs new file mode 100644 index 000000000..955c14476 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/authentication_info.rs @@ -0,0 +1,65 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// AuthenticationInfo : Authentication information for the operation. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct AuthenticationInfo { + /// The authority selector specified by the requestor, if any. It is not guaranteed that the principal was allowed to use this authority. + #[serde(rename = "authoritySelector", skip_serializing_if = "Option::is_none")] + pub authority_selector: Option, + /// The email address of the authenticated user (or service account on behalf of third party principal) making the request. For third party identity callers, the `principal_subject` field is populated instead of this field. For privacy reasons, the principal email address is sometimes redacted. For more information, see [Caller identities in audit logs](https://cloud.google.com/logging/docs/audit#user-id). + #[serde(rename = "principalEmail", skip_serializing_if = "Option::is_none")] + pub principal_email: Option, + /// String representation of identity of requesting party. Populated for both first and third party identities. + #[serde(rename = "principalSubject", skip_serializing_if = "Option::is_none")] + pub principal_subject: Option, + /// Identity delegation history of an authenticated service account that makes the request. It contains information on the real authorities that try to access GCP resources by delegating on a service account. When multiple authorities present, they are guaranteed to be sorted based on the original ordering of the identity delegation events. + #[serde( + rename = "serviceAccountDelegationInfo", + skip_serializing_if = "Option::is_none" + )] + pub service_account_delegation_info: Option< + Vec, + >, + /// The name of the service account key used to create or exchange credentials for authenticating the service account making the request. This is a scheme-less URI full resource name. For example: \"//iam.googleapis.com/projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT}/keys/{key}\" + #[serde( + rename = "serviceAccountKeyName", + skip_serializing_if = "Option::is_none" + )] + pub service_account_key_name: Option, + #[serde( + rename = "serviceDelegationHistory", + skip_serializing_if = "Option::is_none" + )] + pub service_delegation_history: + Option>, + /// The third party identification (if any) of the authenticated user making the request. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the `@type` property. + #[serde( + rename = "thirdPartyPrincipal", + skip_serializing_if = "Option::is_none" + )] + pub third_party_principal: Option<::std::collections::HashMap>, +} + +impl AuthenticationInfo { + /// Authentication information for the operation. + pub fn new() -> AuthenticationInfo { + AuthenticationInfo { + authority_selector: None, + principal_email: None, + principal_subject: None, + service_account_delegation_info: None, + service_account_key_name: None, + service_delegation_history: None, + third_party_principal: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/authorization_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/authorization_info.rs new file mode 100644 index 000000000..912355d77 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/authorization_info.rs @@ -0,0 +1,39 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// AuthorizationInfo : Authorization information for the operation. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct AuthorizationInfo { + /// Whether or not authorization for `resource` and `permission` was granted. + #[serde(rename = "granted", skip_serializing_if = "Option::is_none")] + pub granted: Option, + /// The required IAM permission. + #[serde(rename = "permission", skip_serializing_if = "Option::is_none")] + pub permission: Option, + /// The resource being accessed, as a REST-style or cloud resource string. For example: bigquery.googleapis.com/projects/PROJECTID/datasets/DATASETID or projects/PROJECTID/datasets/DATASETID + #[serde(rename = "resource", skip_serializing_if = "Option::is_none")] + pub resource: Option, + #[serde(rename = "resourceAttributes", skip_serializing_if = "Option::is_none")] + pub resource_attributes: + Option>, +} + +impl AuthorizationInfo { + /// Authorization information for the operation. + pub fn new() -> AuthorizationInfo { + AuthorizationInfo { + granted: None, + permission: None, + resource: None, + resource_attributes: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_error.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_error.rs new file mode 100644 index 000000000..71837d2a9 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_error.rs @@ -0,0 +1,123 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// CheckError : Defines the errors to be returned in google.api.servicecontrol.v1.CheckResponse.check_errors. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct CheckError { + /// The error code. + #[serde(rename = "code", skip_serializing_if = "Option::is_none")] + pub code: Option, + /// Free-form text providing details on the error cause of the error. + #[serde(rename = "detail", skip_serializing_if = "Option::is_none")] + pub detail: Option, + #[serde(rename = "status", skip_serializing_if = "Option::is_none")] + pub status: Option>, + /// Subject to whom this error applies. See the specific code enum for more details on this field. For example: - \"project:\" - \"folder:\" - \"organization:\" + #[serde(rename = "subject", skip_serializing_if = "Option::is_none")] + pub subject: Option, +} + +impl CheckError { + /// Defines the errors to be returned in google.api.servicecontrol.v1.CheckResponse.check_errors. + pub fn new() -> CheckError { + CheckError { + code: None, + detail: None, + status: None, + subject: None, + } + } +} + +/// The error code. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum Code { + #[serde(rename = "ERROR_CODE_UNSPECIFIED")] + ErrorCodeUnspecified, + #[serde(rename = "NOT_FOUND")] + NotFound, + #[serde(rename = "PERMISSION_DENIED")] + PermissionDenied, + #[serde(rename = "RESOURCE_EXHAUSTED")] + ResourceExhausted, + #[serde(rename = "BUDGET_EXCEEDED")] + BudgetExceeded, + #[serde(rename = "DENIAL_OF_SERVICE_DETECTED")] + DenialOfServiceDetected, + #[serde(rename = "LOAD_SHEDDING")] + LoadShedding, + #[serde(rename = "ABUSER_DETECTED")] + AbuserDetected, + #[serde(rename = "SERVICE_NOT_ACTIVATED")] + ServiceNotActivated, + #[serde(rename = "VISIBILITY_DENIED")] + VisibilityDenied, + #[serde(rename = "BILLING_DISABLED")] + BillingDisabled, + #[serde(rename = "PROJECT_DELETED")] + ProjectDeleted, + #[serde(rename = "PROJECT_INVALID")] + ProjectInvalid, + #[serde(rename = "CONSUMER_INVALID")] + ConsumerInvalid, + #[serde(rename = "IP_ADDRESS_BLOCKED")] + IpAddressBlocked, + #[serde(rename = "REFERER_BLOCKED")] + RefererBlocked, + #[serde(rename = "CLIENT_APP_BLOCKED")] + ClientAppBlocked, + #[serde(rename = "API_TARGET_BLOCKED")] + ApiTargetBlocked, + #[serde(rename = "API_KEY_INVALID")] + ApiKeyInvalid, + #[serde(rename = "API_KEY_EXPIRED")] + ApiKeyExpired, + #[serde(rename = "API_KEY_NOT_FOUND")] + ApiKeyNotFound, + #[serde(rename = "SPATULA_HEADER_INVALID")] + SpatulaHeaderInvalid, + #[serde(rename = "LOAS_ROLE_INVALID")] + LoasRoleInvalid, + #[serde(rename = "NO_LOAS_PROJECT")] + NoLoasProject, + #[serde(rename = "LOAS_PROJECT_DISABLED")] + LoasProjectDisabled, + #[serde(rename = "SECURITY_POLICY_VIOLATED")] + SecurityPolicyViolated, + #[serde(rename = "INVALID_CREDENTIAL")] + InvalidCredential, + #[serde(rename = "LOCATION_POLICY_VIOLATED")] + LocationPolicyViolated, + #[serde(rename = "NAMESPACE_LOOKUP_UNAVAILABLE")] + NamespaceLookupUnavailable, + #[serde(rename = "SERVICE_STATUS_UNAVAILABLE")] + ServiceStatusUnavailable, + #[serde(rename = "BILLING_STATUS_UNAVAILABLE")] + BillingStatusUnavailable, + #[serde(rename = "QUOTA_CHECK_UNAVAILABLE")] + QuotaCheckUnavailable, + #[serde(rename = "LOAS_PROJECT_LOOKUP_UNAVAILABLE")] + LoasProjectLookupUnavailable, + #[serde(rename = "CLOUD_RESOURCE_MANAGER_BACKEND_UNAVAILABLE")] + CloudResourceManagerBackendUnavailable, + #[serde(rename = "SECURITY_POLICY_BACKEND_UNAVAILABLE")] + SecurityPolicyBackendUnavailable, + #[serde(rename = "LOCATION_POLICY_BACKEND_UNAVAILABLE")] + LocationPolicyBackendUnavailable, + #[serde(rename = "INJECTED_ERROR")] + InjectedError, +} + +impl Default for Code { + fn default() -> Code { + Self::ErrorCodeUnspecified + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_info.rs new file mode 100644 index 000000000..c87abd44c --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_info.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// CheckInfo : Contains additional information about the check operation. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct CheckInfo { + /// The unique id of the api key in the format of \"apikey:\". This field will be populated when the consumer passed to Chemist is an API key and all the API key related validations are successful. + #[serde(rename = "apiKeyUid", skip_serializing_if = "Option::is_none")] + pub api_key_uid: Option, + #[serde(rename = "consumerInfo", skip_serializing_if = "Option::is_none")] + pub consumer_info: + Option>, + /// A list of fields and label keys that are ignored by the server. The client doesn't need to send them for following requests to improve performance and allow better aggregation. + #[serde(rename = "unusedArguments", skip_serializing_if = "Option::is_none")] + pub unused_arguments: Option>, +} + +impl CheckInfo { + /// Contains additional information about the check operation. + pub fn new() -> CheckInfo { + CheckInfo { + api_key_uid: None, + consumer_info: None, + unused_arguments: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_request.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_request.rs new file mode 100644 index 000000000..92e94b7ab --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_request.rs @@ -0,0 +1,44 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// CheckRequest : Request message for the Check method. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct CheckRequest { + #[serde(rename = "operation", skip_serializing_if = "Option::is_none")] + pub operation: Option>, + /// Requests the project settings to be returned as part of the check response. + #[serde( + rename = "requestProjectSettings", + skip_serializing_if = "Option::is_none" + )] + pub request_project_settings: Option, + /// Specifies which version of service configuration should be used to process the request. If unspecified or no matching version can be found, the latest one will be used. + #[serde(rename = "serviceConfigId", skip_serializing_if = "Option::is_none")] + pub service_config_id: Option, + /// Indicates if service activation check should be skipped for this request. Default behavior is to perform the check and apply relevant quota. WARNING: Setting this flag to \"true\" will disable quota enforcement. + #[serde( + rename = "skipActivationCheck", + skip_serializing_if = "Option::is_none" + )] + pub skip_activation_check: Option, +} + +impl CheckRequest { + /// Request message for the Check method. + pub fn new() -> CheckRequest { + CheckRequest { + operation: None, + request_project_settings: None, + service_config_id: None, + skip_activation_check: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_response.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_response.rs new file mode 100644 index 000000000..77020aaaf --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/check_response.rs @@ -0,0 +1,45 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// CheckResponse : Response message for the Check method. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct CheckResponse { + /// Indicate the decision of the check. If no check errors are present, the service should process the operation. Otherwise the service should use the list of errors to determine the appropriate action. + #[serde(rename = "checkErrors", skip_serializing_if = "Option::is_none")] + pub check_errors: Option>, + #[serde(rename = "checkInfo", skip_serializing_if = "Option::is_none")] + pub check_info: Option>, + /// The same operation_id value used in the CheckRequest. Used for logging and diagnostics purposes. + #[serde(rename = "operationId", skip_serializing_if = "Option::is_none")] + pub operation_id: Option, + #[serde(rename = "quotaInfo", skip_serializing_if = "Option::is_none")] + pub quota_info: Option>, + /// The actual config id used to process the request. + #[serde(rename = "serviceConfigId", skip_serializing_if = "Option::is_none")] + pub service_config_id: Option, + /// The current service rollout id used to process the request. + #[serde(rename = "serviceRolloutId", skip_serializing_if = "Option::is_none")] + pub service_rollout_id: Option, +} + +impl CheckResponse { + /// Response message for the Check method. + pub fn new() -> CheckResponse { + CheckResponse { + check_errors: None, + check_info: None, + operation_id: None, + quota_info: None, + service_config_id: None, + service_rollout_id: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/consumer_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/consumer_info.rs new file mode 100644 index 000000000..4d17732fd --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/consumer_info.rs @@ -0,0 +1,56 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ConsumerInfo : `ConsumerInfo` provides information about the consumer. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ConsumerInfo { + /// The consumer identity number, can be Google cloud project number, folder number or organization number e.g. 1234567890. A value of 0 indicates no consumer number is found. + #[serde(rename = "consumerNumber", skip_serializing_if = "Option::is_none")] + pub consumer_number: Option, + /// The Google cloud project number, e.g. 1234567890. A value of 0 indicates no project number is found. NOTE: This field is deprecated after Chemist support flexible consumer id. New code should not depend on this field anymore. + #[serde(rename = "projectNumber", skip_serializing_if = "Option::is_none")] + pub project_number: Option, + /// The type of the consumer which should have been defined in [Google Resource Manager](https://cloud.google.com/resource-manager/). + #[serde(rename = "type", skip_serializing_if = "Option::is_none")] + pub r#type: Option, +} + +impl ConsumerInfo { + /// `ConsumerInfo` provides information about the consumer. + pub fn new() -> ConsumerInfo { + ConsumerInfo { + consumer_number: None, + project_number: None, + r#type: None, + } + } +} + +/// The type of the consumer which should have been defined in [Google Resource Manager](https://cloud.google.com/resource-manager/). +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum Type { + #[serde(rename = "CONSUMER_TYPE_UNSPECIFIED")] + ConsumerTypeUnspecified, + #[serde(rename = "PROJECT")] + Project, + #[serde(rename = "FOLDER")] + Folder, + #[serde(rename = "ORGANIZATION")] + Organization, + #[serde(rename = "SERVICE_SPECIFIC")] + ServiceSpecific, +} + +impl Default for Type { + fn default() -> Type { + Self::ConsumerTypeUnspecified + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/distribution.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/distribution.rs new file mode 100644 index 000000000..1dff21ffa --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/distribution.rs @@ -0,0 +1,66 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Distribution : Distribution represents a frequency distribution of double-valued sample points. It contains the size of the population of sample points plus additional optional information: * the arithmetic mean of the samples * the minimum and maximum of the samples * the sum-squared-deviation of the samples, used to compute variance * a histogram of the values of the sample points + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Distribution { + /// The number of samples in each histogram bucket. `bucket_counts` are optional. If present, they must sum to the `count` value. The buckets are defined below in `bucket_option`. There are N buckets. `bucket_counts[0]` is the number of samples in the underflow bucket. `bucket_counts[1]` to `bucket_counts[N-1]` are the numbers of samples in each of the finite buckets. And `bucket_counts[N] is the number of samples in the overflow bucket. See the comments of `bucket_option` below for more details. Any suffix of trailing zeros may be omitted. + #[serde(rename = "bucketCounts", skip_serializing_if = "Option::is_none")] + pub bucket_counts: Option>, + /// The total number of samples in the distribution. Must be >= 0. + #[serde(rename = "count", skip_serializing_if = "Option::is_none")] + pub count: Option, + /// Example points. Must be in increasing order of `value` field. + #[serde(rename = "exemplars", skip_serializing_if = "Option::is_none")] + pub exemplars: Option>, + #[serde(rename = "explicitBuckets", skip_serializing_if = "Option::is_none")] + pub explicit_buckets: + Option>, + #[serde(rename = "exponentialBuckets", skip_serializing_if = "Option::is_none")] + pub exponential_buckets: + Option>, + #[serde(rename = "linearBuckets", skip_serializing_if = "Option::is_none")] + pub linear_buckets: + Option>, + /// The maximum of the population of values. Ignored if `count` is zero. + #[serde(rename = "maximum", skip_serializing_if = "Option::is_none")] + pub maximum: Option, + /// The arithmetic mean of the samples in the distribution. If `count` is zero then this field must be zero. + #[serde(rename = "mean", skip_serializing_if = "Option::is_none")] + pub mean: Option, + /// The minimum of the population of values. Ignored if `count` is zero. + #[serde(rename = "minimum", skip_serializing_if = "Option::is_none")] + pub minimum: Option, + /// The sum of squared deviations from the mean: Sum[i=1..count]((x_i - mean)^2) where each x_i is a sample values. If `count` is zero then this field must be zero, otherwise validation of the request fails. + #[serde( + rename = "sumOfSquaredDeviation", + skip_serializing_if = "Option::is_none" + )] + pub sum_of_squared_deviation: Option, +} + +impl Distribution { + /// Distribution represents a frequency distribution of double-valued sample points. It contains the size of the population of sample points plus additional optional information: * the arithmetic mean of the samples * the minimum and maximum of the samples * the sum-squared-deviation of the samples, used to compute variance * a histogram of the values of the sample points + pub fn new() -> Distribution { + Distribution { + bucket_counts: None, + count: None, + exemplars: None, + explicit_buckets: None, + exponential_buckets: None, + linear_buckets: None, + maximum: None, + mean: None, + minimum: None, + sum_of_squared_deviation: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/exemplar.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/exemplar.rs new file mode 100644 index 000000000..3d5320cf1 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/exemplar.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Exemplar : Exemplars are example points that may be used to annotate aggregated distribution values. They are metadata that gives information about a particular value added to a Distribution bucket, such as a trace ID that was active when a value was added. They may contain further information, such as a example values and timestamps, origin, etc. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Exemplar { + /// Contextual information about the example value. Examples are: Trace: type.googleapis.com/google.monitoring.v3.SpanContext Literal string: type.googleapis.com/google.protobuf.StringValue Labels dropped during aggregation: type.googleapis.com/google.monitoring.v3.DroppedLabels There may be only a single attachment of any given message type in a single exemplar, and this is enforced by the system. + #[serde(rename = "attachments", skip_serializing_if = "Option::is_none")] + pub attachments: Option>>, + /// The observation (sampling) time of the above value. + #[serde(rename = "timestamp", skip_serializing_if = "Option::is_none")] + pub timestamp: Option, + /// Value of the exemplar point. This value determines to which bucket the exemplar belongs. + #[serde(rename = "value", skip_serializing_if = "Option::is_none")] + pub value: Option, +} + +impl Exemplar { + /// Exemplars are example points that may be used to annotate aggregated distribution values. They are metadata that gives information about a particular value added to a Distribution bucket, such as a trace ID that was active when a value was added. They may contain further information, such as a example values and timestamps, origin, etc. + pub fn new() -> Exemplar { + Exemplar { + attachments: None, + timestamp: None, + value: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/explicit_buckets.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/explicit_buckets.rs new file mode 100644 index 000000000..8cc5179e5 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/explicit_buckets.rs @@ -0,0 +1,25 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ExplicitBuckets : Describing buckets with arbitrary user-provided width. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ExplicitBuckets { + /// 'bound' is a list of strictly increasing boundaries between buckets. Note that a list of length N-1 defines N buckets because of fenceposting. See comments on `bucket_options` for details. The i'th finite bucket covers the interval [bound[i-1], bound[i]) where i ranges from 1 to bound_size() - 1. Note that there are no finite buckets at all if 'bound' only contains a single element; in that special case the single bound defines the boundary between the underflow and overflow buckets. bucket number lower bound upper bound i == 0 (underflow) -inf bound[i] 0 < i < bound_size() bound[i-1] bound[i] i == bound_size() (overflow) bound[i-1] +inf + #[serde(rename = "bounds", skip_serializing_if = "Option::is_none")] + pub bounds: Option>, +} + +impl ExplicitBuckets { + /// Describing buckets with arbitrary user-provided width. + pub fn new() -> ExplicitBuckets { + ExplicitBuckets { bounds: None } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/exponential_buckets.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/exponential_buckets.rs new file mode 100644 index 000000000..c5c206988 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/exponential_buckets.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ExponentialBuckets : Describing buckets with exponentially growing width. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ExponentialBuckets { + /// The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be larger than 1.0. + #[serde(rename = "growthFactor", skip_serializing_if = "Option::is_none")] + pub growth_factor: Option, + /// The number of finite buckets. With the underflow and overflow buckets, the total number of buckets is `num_finite_buckets` + 2. See comments on `bucket_options` for details. + #[serde(rename = "numFiniteBuckets", skip_serializing_if = "Option::is_none")] + pub num_finite_buckets: Option, + /// The i'th exponential bucket covers the interval [scale * growth_factor^(i-1), scale * growth_factor^i) where i ranges from 1 to num_finite_buckets inclusive. Must be > 0. + #[serde(rename = "scale", skip_serializing_if = "Option::is_none")] + pub scale: Option, +} + +impl ExponentialBuckets { + /// Describing buckets with exponentially growing width. + pub fn new() -> ExponentialBuckets { + ExponentialBuckets { + growth_factor: None, + num_finite_buckets: None, + scale: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/first_party_principal.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/first_party_principal.rs new file mode 100644 index 000000000..bf3609064 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/first_party_principal.rs @@ -0,0 +1,31 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// FirstPartyPrincipal : First party identity principal. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct FirstPartyPrincipal { + /// The email address of a Google account. . + #[serde(rename = "principalEmail", skip_serializing_if = "Option::is_none")] + pub principal_email: Option, + /// Metadata about the service that uses the service account. . + #[serde(rename = "serviceMetadata", skip_serializing_if = "Option::is_none")] + pub service_metadata: Option<::std::collections::HashMap>, +} + +impl FirstPartyPrincipal { + /// First party identity principal. + pub fn new() -> FirstPartyPrincipal { + FirstPartyPrincipal { + principal_email: None, + service_metadata: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/http_request.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/http_request.rs new file mode 100644 index 000000000..ad0d24cff --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/http_request.rs @@ -0,0 +1,86 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// HttpRequest : A common proto for logging HTTP requests. Only contains semantics defined by the HTTP specification. Product-specific logging information MUST be defined in a separate message. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct HttpRequest { + /// The number of HTTP response bytes inserted into cache. Set only when a cache fill was attempted. + #[serde(rename = "cacheFillBytes", skip_serializing_if = "Option::is_none")] + pub cache_fill_bytes: Option, + /// Whether or not an entity was served from cache (with or without validation). + #[serde(rename = "cacheHit", skip_serializing_if = "Option::is_none")] + pub cache_hit: Option, + /// Whether or not a cache lookup was attempted. + #[serde(rename = "cacheLookup", skip_serializing_if = "Option::is_none")] + pub cache_lookup: Option, + /// Whether or not the response was validated with the origin server before being served from cache. This field is only meaningful if `cache_hit` is True. + #[serde( + rename = "cacheValidatedWithOriginServer", + skip_serializing_if = "Option::is_none" + )] + pub cache_validated_with_origin_server: Option, + /// The request processing latency on the server, from the time the request was received until the response was sent. + #[serde(rename = "latency", skip_serializing_if = "Option::is_none")] + pub latency: Option, + /// Protocol used for the request. Examples: \"HTTP/1.1\", \"HTTP/2\", \"websocket\" + #[serde(rename = "protocol", skip_serializing_if = "Option::is_none")] + pub protocol: Option, + /// The referer URL of the request, as defined in [HTTP/1.1 Header Field Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). + #[serde(rename = "referer", skip_serializing_if = "Option::is_none")] + pub referer: Option, + /// The IP address (IPv4 or IPv6) of the client that issued the HTTP request. Examples: `\"192.168.1.1\"`, `\"FE80::0202:B3FF:FE1E:8329\"`. + #[serde(rename = "remoteIp", skip_serializing_if = "Option::is_none")] + pub remote_ip: Option, + /// The request method. Examples: `\"GET\"`, `\"HEAD\"`, `\"PUT\"`, `\"POST\"`. + #[serde(rename = "requestMethod", skip_serializing_if = "Option::is_none")] + pub request_method: Option, + /// The size of the HTTP request message in bytes, including the request headers and the request body. + #[serde(rename = "requestSize", skip_serializing_if = "Option::is_none")] + pub request_size: Option, + /// The scheme (http, https), the host name, the path, and the query portion of the URL that was requested. Example: `\"http://example.com/some/info?color=red\"`. + #[serde(rename = "requestUrl", skip_serializing_if = "Option::is_none")] + pub request_url: Option, + /// The size of the HTTP response message sent back to the client, in bytes, including the response headers and the response body. + #[serde(rename = "responseSize", skip_serializing_if = "Option::is_none")] + pub response_size: Option, + /// The IP address (IPv4 or IPv6) of the origin server that the request was sent to. + #[serde(rename = "serverIp", skip_serializing_if = "Option::is_none")] + pub server_ip: Option, + /// The response code indicating the status of the response. Examples: 200, 404. + #[serde(rename = "status", skip_serializing_if = "Option::is_none")] + pub status: Option, + /// The user agent sent by the client. Example: `\"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)\"`. + #[serde(rename = "userAgent", skip_serializing_if = "Option::is_none")] + pub user_agent: Option, +} + +impl HttpRequest { + /// A common proto for logging HTTP requests. Only contains semantics defined by the HTTP specification. Product-specific logging information MUST be defined in a separate message. + pub fn new() -> HttpRequest { + HttpRequest { + cache_fill_bytes: None, + cache_hit: None, + cache_lookup: None, + cache_validated_with_origin_server: None, + latency: None, + protocol: None, + referer: None, + remote_ip: None, + request_method: None, + request_size: None, + request_url: None, + response_size: None, + server_ip: None, + status: None, + user_agent: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/linear_buckets.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/linear_buckets.rs new file mode 100644 index 000000000..87a5e0ef5 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/linear_buckets.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// LinearBuckets : Describing buckets with constant width. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct LinearBuckets { + /// The number of finite buckets. With the underflow and overflow buckets, the total number of buckets is `num_finite_buckets` + 2. See comments on `bucket_options` for details. + #[serde(rename = "numFiniteBuckets", skip_serializing_if = "Option::is_none")] + pub num_finite_buckets: Option, + /// The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive. + #[serde(rename = "offset", skip_serializing_if = "Option::is_none")] + pub offset: Option, + /// The i'th linear bucket covers the interval [offset + (i-1) * width, offset + i * width) where i ranges from 1 to num_finite_buckets, inclusive. Must be strictly positive. + #[serde(rename = "width", skip_serializing_if = "Option::is_none")] + pub width: Option, +} + +impl LinearBuckets { + /// Describing buckets with constant width. + pub fn new() -> LinearBuckets { + LinearBuckets { + num_finite_buckets: None, + offset: None, + width: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry.rs new file mode 100644 index 000000000..f7693a6d4 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry.rs @@ -0,0 +1,99 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// LogEntry : An individual log entry. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct LogEntry { + #[serde(rename = "httpRequest", skip_serializing_if = "Option::is_none")] + pub http_request: Option>, + /// A unique ID for the log entry used for deduplication. If omitted, the implementation will generate one based on operation_id. + #[serde(rename = "insertId", skip_serializing_if = "Option::is_none")] + pub insert_id: Option, + /// A set of user-defined (key, value) data that provides additional information about the log entry. + #[serde(rename = "labels", skip_serializing_if = "Option::is_none")] + pub labels: Option<::std::collections::HashMap>, + /// Required. The log to which this log entry belongs. Examples: `\"syslog\"`, `\"book_log\"`. + #[serde(rename = "name", skip_serializing_if = "Option::is_none")] + pub name: Option, + #[serde(rename = "operation", skip_serializing_if = "Option::is_none")] + pub operation: + Option>, + /// The log entry payload, represented as a protocol buffer that is expressed as a JSON object. The only accepted type currently is AuditLog. + #[serde(rename = "protoPayload", skip_serializing_if = "Option::is_none")] + pub proto_payload: Option<::std::collections::HashMap>, + /// The severity of the log entry. The default value is `LogSeverity.DEFAULT`. + #[serde(rename = "severity", skip_serializing_if = "Option::is_none")] + pub severity: Option, + #[serde(rename = "sourceLocation", skip_serializing_if = "Option::is_none")] + pub source_location: + Option>, + /// The log entry payload, represented as a structure that is expressed as a JSON object. + #[serde(rename = "structPayload", skip_serializing_if = "Option::is_none")] + pub struct_payload: Option<::std::collections::HashMap>, + /// The log entry payload, represented as a Unicode string (UTF-8). + #[serde(rename = "textPayload", skip_serializing_if = "Option::is_none")] + pub text_payload: Option, + /// The time the event described by the log entry occurred. If omitted, defaults to operation start time. + #[serde(rename = "timestamp", skip_serializing_if = "Option::is_none")] + pub timestamp: Option, + /// Optional. Resource name of the trace associated with the log entry, if any. If this field contains a relative resource name, you can assume the name is relative to `//tracing.googleapis.com`. Example: `projects/my-projectid/traces/06796866738c859f2f19b7cfb3214824` + #[serde(rename = "trace", skip_serializing_if = "Option::is_none")] + pub trace: Option, +} + +impl LogEntry { + /// An individual log entry. + pub fn new() -> LogEntry { + LogEntry { + http_request: None, + insert_id: None, + labels: None, + name: None, + operation: None, + proto_payload: None, + severity: None, + source_location: None, + struct_payload: None, + text_payload: None, + timestamp: None, + trace: None, + } + } +} + +/// The severity of the log entry. The default value is `LogSeverity.DEFAULT`. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum Severity { + #[serde(rename = "DEFAULT")] + Default, + #[serde(rename = "DEBUG")] + Debug, + #[serde(rename = "INFO")] + Info, + #[serde(rename = "NOTICE")] + Notice, + #[serde(rename = "WARNING")] + Warning, + #[serde(rename = "ERROR")] + Error, + #[serde(rename = "CRITICAL")] + Critical, + #[serde(rename = "ALERT")] + Alert, + #[serde(rename = "EMERGENCY")] + Emergency, +} + +impl Default for Severity { + fn default() -> Severity { + Self::Default + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry_operation.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry_operation.rs new file mode 100644 index 000000000..8d93914f5 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry_operation.rs @@ -0,0 +1,39 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// LogEntryOperation : Additional information about a potentially long-running operation with which a log entry is associated. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct LogEntryOperation { + /// Optional. Set this to True if this is the first log entry in the operation. + #[serde(rename = "first", skip_serializing_if = "Option::is_none")] + pub first: Option, + /// Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation. + #[serde(rename = "id", skip_serializing_if = "Option::is_none")] + pub id: Option, + /// Optional. Set this to True if this is the last log entry in the operation. + #[serde(rename = "last", skip_serializing_if = "Option::is_none")] + pub last: Option, + /// Optional. An arbitrary producer identifier. The combination of `id` and `producer` must be globally unique. Examples for `producer`: `\"MyDivision.MyBigCompany.com\"`, `\"github.com/MyProject/MyApplication\"`. + #[serde(rename = "producer", skip_serializing_if = "Option::is_none")] + pub producer: Option, +} + +impl LogEntryOperation { + /// Additional information about a potentially long-running operation with which a log entry is associated. + pub fn new() -> LogEntryOperation { + LogEntryOperation { + first: None, + id: None, + last: None, + producer: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry_source_location.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry_source_location.rs new file mode 100644 index 000000000..ee00a9d5b --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/log_entry_source_location.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// LogEntrySourceLocation : Additional information about the source code location that produced the log entry. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct LogEntrySourceLocation { + /// Optional. Source file name. Depending on the runtime environment, this might be a simple name or a fully-qualified name. + #[serde(rename = "file", skip_serializing_if = "Option::is_none")] + pub file: Option, + /// Optional. Human-readable name of the function or method being invoked, with optional context such as the class or package name. This information may be used in contexts such as the logs viewer, where a file and line number are less meaningful. The format can vary by language. For example: `qual.if.ied.Class.method` (Java), `dir/package.func` (Go), `function` (Python). + #[serde(rename = "function", skip_serializing_if = "Option::is_none")] + pub function: Option, + /// Optional. Line within the source file. 1-based; 0 indicates no line number available. + #[serde(rename = "line", skip_serializing_if = "Option::is_none")] + pub line: Option, +} + +impl LogEntrySourceLocation { + /// Additional information about the source code location that produced the log entry. + pub fn new() -> LogEntrySourceLocation { + LogEntrySourceLocation { + file: None, + function: None, + line: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/metric_value.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/metric_value.rs new file mode 100644 index 000000000..334793398 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/metric_value.rs @@ -0,0 +1,58 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// MetricValue : Represents a single metric value. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct MetricValue { + /// A boolean value. + #[serde(rename = "boolValue", skip_serializing_if = "Option::is_none")] + pub bool_value: Option, + #[serde(rename = "distributionValue", skip_serializing_if = "Option::is_none")] + pub distribution_value: + Option>, + /// A double precision floating point value. + #[serde(rename = "doubleValue", skip_serializing_if = "Option::is_none")] + pub double_value: Option, + /// The end of the time period over which this metric value's measurement applies. If not specified, google.api.servicecontrol.v1.Operation.end_time will be used. + #[serde(rename = "endTime", skip_serializing_if = "Option::is_none")] + pub end_time: Option, + /// A signed 64-bit integer value. + #[serde(rename = "int64Value", skip_serializing_if = "Option::is_none")] + pub int64_value: Option, + /// The labels describing the metric value. See comments on google.api.servicecontrol.v1.Operation.labels for the overriding relationship. Note that this map must not contain monitored resource labels. + #[serde(rename = "labels", skip_serializing_if = "Option::is_none")] + pub labels: Option<::std::collections::HashMap>, + #[serde(rename = "moneyValue", skip_serializing_if = "Option::is_none")] + pub money_value: Option>, + /// The start of the time period over which this metric value's measurement applies. The time period has different semantics for different metric types (cumulative, delta, and gauge). See the metric definition documentation in the service configuration for details. If not specified, google.api.servicecontrol.v1.Operation.start_time will be used. + #[serde(rename = "startTime", skip_serializing_if = "Option::is_none")] + pub start_time: Option, + /// A text string value. + #[serde(rename = "stringValue", skip_serializing_if = "Option::is_none")] + pub string_value: Option, +} + +impl MetricValue { + /// Represents a single metric value. + pub fn new() -> MetricValue { + MetricValue { + bool_value: None, + distribution_value: None, + double_value: None, + end_time: None, + int64_value: None, + labels: None, + money_value: None, + start_time: None, + string_value: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/metric_value_set.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/metric_value_set.rs new file mode 100644 index 000000000..3e1bb9197 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/metric_value_set.rs @@ -0,0 +1,31 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// MetricValueSet : Represents a set of metric values in the same metric. Each metric value in the set should have a unique combination of start time, end time, and label values. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct MetricValueSet { + /// The metric name defined in the service configuration. + #[serde(rename = "metricName", skip_serializing_if = "Option::is_none")] + pub metric_name: Option, + /// The values in this metric. + #[serde(rename = "metricValues", skip_serializing_if = "Option::is_none")] + pub metric_values: Option>, +} + +impl MetricValueSet { + /// Represents a set of metric values in the same metric. Each metric value in the set should have a unique combination of start time, end time, and label values. + pub fn new() -> MetricValueSet { + MetricValueSet { + metric_name: None, + metric_values: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/mod.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/mod.rs new file mode 100644 index 000000000..f808f7891 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/mod.rs @@ -0,0 +1,113 @@ +use serde::{Deserialize, Serialize}; +pub mod allocate_info; +pub use self::allocate_info::AllocateInfo; +pub mod allocate_quota_request; +pub use self::allocate_quota_request::AllocateQuotaRequest; +pub mod allocate_quota_response; +pub use self::allocate_quota_response::AllocateQuotaResponse; +pub mod attribute_value; +pub use self::attribute_value::AttributeValue; +pub mod attributes; +pub use self::attributes::Attributes; +pub mod audit_log; +pub use self::audit_log::AuditLog; +pub mod auth; +pub use self::auth::Auth; +pub mod authentication_info; +pub use self::authentication_info::AuthenticationInfo; +pub mod authorization_info; +pub use self::authorization_info::AuthorizationInfo; +pub mod check_error; +pub use self::check_error::CheckError; +pub mod check_info; +pub use self::check_info::CheckInfo; +pub mod check_request; +pub use self::check_request::CheckRequest; +pub mod check_response; +pub use self::check_response::CheckResponse; +pub mod consumer_info; +pub use self::consumer_info::ConsumerInfo; +pub mod distribution; +pub use self::distribution::Distribution; +pub mod exemplar; +pub use self::exemplar::Exemplar; +pub mod explicit_buckets; +pub use self::explicit_buckets::ExplicitBuckets; +pub mod exponential_buckets; +pub use self::exponential_buckets::ExponentialBuckets; +pub mod first_party_principal; +pub use self::first_party_principal::FirstPartyPrincipal; +pub mod http_request; +pub use self::http_request::HttpRequest; +pub mod linear_buckets; +pub use self::linear_buckets::LinearBuckets; +pub mod log_entry; +pub use self::log_entry::LogEntry; +pub mod log_entry_operation; +pub use self::log_entry_operation::LogEntryOperation; +pub mod log_entry_source_location; +pub use self::log_entry_source_location::LogEntrySourceLocation; +pub mod metric_value; +pub use self::metric_value::MetricValue; +pub mod metric_value_set; +pub use self::metric_value_set::MetricValueSet; +pub mod money; +pub use self::money::Money; +pub mod operation; +pub use self::operation::Operation; +pub mod org_policy_violation_info; +pub use self::org_policy_violation_info::OrgPolicyViolationInfo; +pub mod peer; +pub use self::peer::Peer; +pub mod policy_violation_info; +pub use self::policy_violation_info::PolicyViolationInfo; +pub mod quota_error; +pub use self::quota_error::QuotaError; +pub mod quota_info; +pub use self::quota_info::QuotaInfo; +pub mod quota_operation; +pub use self::quota_operation::QuotaOperation; +pub mod quota_properties; +pub use self::quota_properties::QuotaProperties; +pub mod report_error; +pub use self::report_error::ReportError; +pub mod report_request; +pub use self::report_request::ReportRequest; +pub mod report_response; +pub use self::report_response::ReportResponse; +pub mod request; +pub use self::request::Request; +pub mod request_metadata; +pub use self::request_metadata::RequestMetadata; +pub mod resource; +pub use self::resource::Resource; +pub mod resource_info; +pub use self::resource_info::ResourceInfo; +pub mod resource_location; +pub use self::resource_location::ResourceLocation; +pub mod service_account_delegation_info; +pub use self::service_account_delegation_info::ServiceAccountDelegationInfo; +pub mod service_delegation_history; +pub use self::service_delegation_history::ServiceDelegationHistory; +pub mod service_metadata; +pub use self::service_metadata::ServiceMetadata; +pub mod span_context; +pub use self::span_context::SpanContext; +pub mod status; +pub use self::status::Status; +pub mod third_party_principal; +pub use self::third_party_principal::ThirdPartyPrincipal; +pub mod trace_span; +pub use self::trace_span::TraceSpan; +pub mod truncatable_string; +pub use self::truncatable_string::TruncatableString; +pub mod v1_http_request; +pub use self::v1_http_request::V1HttpRequest; +pub mod v1_log_entry; +pub use self::v1_log_entry::V1LogEntry; +pub mod v1_log_entry_operation; +pub use self::v1_log_entry_operation::V1LogEntryOperation; +pub mod v1_log_entry_source_location; +pub use self::v1_log_entry_source_location::V1LogEntrySourceLocation; +pub mod violation_info; +pub use self::violation_info::ViolationInfo; diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/money.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/money.rs new file mode 100644 index 000000000..17136f68d --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/money.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Money : Represents an amount of money with its currency type. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Money { + /// The three-letter currency code defined in ISO 4217. + #[serde(rename = "currencyCode", skip_serializing_if = "Option::is_none")] + pub currency_code: Option, + /// Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos` must be positive or zero. If `units` is zero, `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` must be negative or zero. For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000. + #[serde(rename = "nanos", skip_serializing_if = "Option::is_none")] + pub nanos: Option, + /// The whole units of the amount. For example if `currencyCode` is `\"USD\"`, then 1 unit is one US dollar. + #[serde(rename = "units", skip_serializing_if = "Option::is_none")] + pub units: Option, +} + +impl Money { + /// Represents an amount of money with its currency type. + pub fn new() -> Money { + Money { + currency_code: None, + nanos: None, + units: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/operation.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/operation.rs new file mode 100644 index 000000000..0d53a8fcf --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/operation.rs @@ -0,0 +1,95 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Operation : Represents information regarding an operation. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Operation { + /// Identity of the consumer who is using the service. This field should be filled in for the operations initiated by a consumer, but not for service-initiated operations that are not related to a specific consumer. - This can be in one of the following formats: - project:PROJECT_ID, - project`_`number:PROJECT_NUMBER, - projects/PROJECT_ID or PROJECT_NUMBER, - folders/FOLDER_NUMBER, - organizations/ORGANIZATION_NUMBER, - api`_`key:API_KEY. + #[serde(rename = "consumerId", skip_serializing_if = "Option::is_none")] + pub consumer_id: Option, + /// End time of the operation. Required when the operation is used in ServiceController.Report, but optional when the operation is used in ServiceController.Check. + #[serde(rename = "endTime", skip_serializing_if = "Option::is_none")] + pub end_time: Option, + /// DO NOT USE. This is an experimental field. + #[serde(rename = "importance", skip_serializing_if = "Option::is_none")] + pub importance: Option, + /// Labels describing the operation. Only the following labels are allowed: - Labels describing monitored resources as defined in the service configuration. - Default labels of metric values. When specified, labels defined in the metric value override these default. - The following labels defined by Google Cloud Platform: - `cloud.googleapis.com/location` describing the location where the operation happened, - `servicecontrol.googleapis.com/user_agent` describing the user agent of the API request, - `servicecontrol.googleapis.com/service_agent` describing the service used to handle the API request (e.g. ESP), - `servicecontrol.googleapis.com/platform` describing the platform where the API is served, such as App Engine, Compute Engine, or Kubernetes Engine. + #[serde(rename = "labels", skip_serializing_if = "Option::is_none")] + pub labels: Option<::std::collections::HashMap>, + /// Represents information to be logged. + #[serde(rename = "logEntries", skip_serializing_if = "Option::is_none")] + pub log_entries: Option>, + /// Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition. Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error. + #[serde(rename = "metricValueSets", skip_serializing_if = "Option::is_none")] + pub metric_value_sets: + Option>, + /// Identity of the operation. This must be unique within the scope of the service that generated the operation. If the service calls Check() and Report() on the same operation, the two calls should carry the same id. UUID version 4 is recommended, though not required. In scenarios where an operation is computed from existing information and an idempotent id is desirable for deduplication purpose, UUID version 5 is recommended. See RFC 4122 for details. + #[serde(rename = "operationId", skip_serializing_if = "Option::is_none")] + pub operation_id: Option, + /// Fully qualified name of the operation. Reserved for future use. + #[serde(rename = "operationName", skip_serializing_if = "Option::is_none")] + pub operation_name: Option, + #[serde(rename = "quotaProperties", skip_serializing_if = "Option::is_none")] + pub quota_properties: + Option>, + /// The resources that are involved in the operation. The maximum supported number of entries in this field is 100. + #[serde(rename = "resources", skip_serializing_if = "Option::is_none")] + pub resources: Option>, + /// Required. Start time of the operation. + #[serde(rename = "startTime", skip_serializing_if = "Option::is_none")] + pub start_time: Option, + /// Unimplemented. A list of Cloud Trace spans. The span names shall contain the id of the destination project which can be either the produce or the consumer project. + #[serde(rename = "traceSpans", skip_serializing_if = "Option::is_none")] + pub trace_spans: Option>, + /// Private Preview. This feature is only available for approved services. User defined labels for the resource that this operation is associated with. + #[serde(rename = "userLabels", skip_serializing_if = "Option::is_none")] + pub user_labels: Option<::std::collections::HashMap>, +} + +impl Operation { + /// Represents information regarding an operation. + pub fn new() -> Operation { + Operation { + consumer_id: None, + end_time: None, + importance: None, + labels: None, + log_entries: None, + metric_value_sets: None, + operation_id: None, + operation_name: None, + quota_properties: None, + resources: None, + start_time: None, + trace_spans: None, + user_labels: None, + } + } +} + +/// DO NOT USE. This is an experimental field. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum Importance { + #[serde(rename = "LOW")] + Low, + #[serde(rename = "HIGH")] + High, + #[serde(rename = "DEBUG")] + Debug, + #[serde(rename = "PROMOTED")] + Promoted, +} + +impl Default for Importance { + fn default() -> Importance { + Self::Low + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/org_policy_violation_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/org_policy_violation_info.rs new file mode 100644 index 000000000..ad4bdc51d --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/org_policy_violation_info.rs @@ -0,0 +1,40 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// OrgPolicyViolationInfo : Represents OrgPolicy Violation information. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct OrgPolicyViolationInfo { + /// Optional. Resource payload that is currently in scope and is subjected to orgpolicy conditions. This payload may be the subset of the actual Resource that may come in the request. This payload should not contain any core content. + #[serde(rename = "payload", skip_serializing_if = "Option::is_none")] + pub payload: Option<::std::collections::HashMap>, + /// Optional. Tags referenced on the resource at the time of evaluation. These also include the federated tags, if they are supplied in the CheckOrgPolicy or CheckCustomConstraints Requests. Optional field as of now. These tags are the Cloud tags that are available on the resource during the policy evaluation and will be available as part of the OrgPolicy check response for logging purposes. + #[serde(rename = "resourceTags", skip_serializing_if = "Option::is_none")] + pub resource_tags: Option<::std::collections::HashMap>, + /// Optional. Resource type that the orgpolicy is checked against. Example: compute.googleapis.com/Instance, store.googleapis.com/bucket + #[serde(rename = "resourceType", skip_serializing_if = "Option::is_none")] + pub resource_type: Option, + /// Optional. Policy violations + #[serde(rename = "violationInfo", skip_serializing_if = "Option::is_none")] + pub violation_info: + Option>, +} + +impl OrgPolicyViolationInfo { + /// Represents OrgPolicy Violation information. + pub fn new() -> OrgPolicyViolationInfo { + OrgPolicyViolationInfo { + payload: None, + resource_tags: None, + resource_type: None, + violation_info: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/peer.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/peer.rs new file mode 100644 index 000000000..3718f7c5d --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/peer.rs @@ -0,0 +1,43 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Peer : This message defines attributes for a node that handles a network request. The node can be either a service or an application that sends, forwards, or receives the request. Service peers should fill in `principal` and `labels` as appropriate. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Peer { + /// The IP address of the peer. + #[serde(rename = "ip", skip_serializing_if = "Option::is_none")] + pub ip: Option, + /// The labels associated with the peer. + #[serde(rename = "labels", skip_serializing_if = "Option::is_none")] + pub labels: Option<::std::collections::HashMap>, + /// The network port of the peer. + #[serde(rename = "port", skip_serializing_if = "Option::is_none")] + pub port: Option, + /// The identity of this peer. Similar to `Request.auth.principal`, but relative to the peer instead of the request. For example, the identity associated with a load balancer that forwarded the request. + #[serde(rename = "principal", skip_serializing_if = "Option::is_none")] + pub principal: Option, + /// The CLDR country/region code associated with the above IP address. If the IP address is private, the `region_code` should reflect the physical location where this peer is running. + #[serde(rename = "regionCode", skip_serializing_if = "Option::is_none")] + pub region_code: Option, +} + +impl Peer { + /// This message defines attributes for a node that handles a network request. The node can be either a service or an application that sends, forwards, or receives the request. Service peers should fill in `principal` and `labels` as appropriate. + pub fn new() -> Peer { + Peer { + ip: None, + labels: None, + port: None, + principal: None, + region_code: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/policy_violation_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/policy_violation_info.rs new file mode 100644 index 000000000..fce9222f0 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/policy_violation_info.rs @@ -0,0 +1,30 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// PolicyViolationInfo : Information related to policy violations for this request. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct PolicyViolationInfo { + #[serde( + rename = "orgPolicyViolationInfo", + skip_serializing_if = "Option::is_none" + )] + pub org_policy_violation_info: + Option>, +} + +impl PolicyViolationInfo { + /// Information related to policy violations for this request. + pub fn new() -> PolicyViolationInfo { + PolicyViolationInfo { + org_policy_violation_info: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_error.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_error.rs new file mode 100644 index 000000000..ace8b0dd7 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_error.rs @@ -0,0 +1,77 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// QuotaError : Represents error information for QuotaOperation. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct QuotaError { + /// Error code. + #[serde(rename = "code", skip_serializing_if = "Option::is_none")] + pub code: Option, + /// Free-form text that provides details on the cause of the error. + #[serde(rename = "description", skip_serializing_if = "Option::is_none")] + pub description: Option, + #[serde(rename = "status", skip_serializing_if = "Option::is_none")] + pub status: Option>, + /// Subject to whom this error applies. See the specific enum for more details on this field. For example, \"clientip:\" or \"project:\". + #[serde(rename = "subject", skip_serializing_if = "Option::is_none")] + pub subject: Option, +} + +impl QuotaError { + /// Represents error information for QuotaOperation. + pub fn new() -> QuotaError { + QuotaError { + code: None, + description: None, + status: None, + subject: None, + } + } +} + +/// Error code. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum Code { + #[serde(rename = "UNSPECIFIED")] + Unspecified, + #[serde(rename = "RESOURCE_EXHAUSTED")] + ResourceExhausted, + #[serde(rename = "OUT_OF_RANGE")] + OutOfRange, + #[serde(rename = "BILLING_NOT_ACTIVE")] + BillingNotActive, + #[serde(rename = "PROJECT_DELETED")] + ProjectDeleted, + #[serde(rename = "API_KEY_INVALID")] + ApiKeyInvalid, + #[serde(rename = "API_KEY_EXPIRED")] + ApiKeyExpired, + #[serde(rename = "SPATULA_HEADER_INVALID")] + SpatulaHeaderInvalid, + #[serde(rename = "LOAS_ROLE_INVALID")] + LoasRoleInvalid, + #[serde(rename = "NO_LOAS_PROJECT")] + NoLoasProject, + #[serde(rename = "PROJECT_STATUS_UNAVAILABLE")] + ProjectStatusUnavailable, + #[serde(rename = "SERVICE_STATUS_UNAVAILABLE")] + ServiceStatusUnavailable, + #[serde(rename = "BILLING_STATUS_UNAVAILABLE")] + BillingStatusUnavailable, + #[serde(rename = "QUOTA_SYSTEM_UNAVAILABLE")] + QuotaSystemUnavailable, +} + +impl Default for Code { + fn default() -> Code { + Self::Unspecified + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_info.rs new file mode 100644 index 000000000..87576ea35 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_info.rs @@ -0,0 +1,36 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// QuotaInfo : Contains the quota information for a quota check response. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct QuotaInfo { + /// Quota Metrics that have exceeded quota limits. For QuotaGroup-based quota, this is QuotaGroup.name For QuotaLimit-based quota, this is QuotaLimit.name See: google.api.Quota Deprecated: Use quota_metrics to get per quota group limit exceeded status. + #[serde(rename = "limitExceeded", skip_serializing_if = "Option::is_none")] + pub limit_exceeded: Option>, + /// Map of quota group name to the actual number of tokens consumed. If the quota check was not successful, then this will not be populated due to no quota consumption. We are not merging this field with 'quota_metrics' field because of the complexity of scaling in Chemist client code base. For simplicity, we will keep this field for Castor (that scales quota usage) and 'quota_metrics' for SuperQuota (that doesn't scale quota usage). + #[serde(rename = "quotaConsumed", skip_serializing_if = "Option::is_none")] + pub quota_consumed: Option<::std::collections::HashMap>, + /// Quota metrics to indicate the usage. Depending on the check request, one or more of the following metrics will be included: 1. For rate quota, per quota group or per quota metric incremental usage will be specified using the following delta metric: \"serviceruntime.googleapis.com/api/consumer/quota_used_count\" 2. For allocation quota, per quota metric total usage will be specified using the following gauge metric: \"serviceruntime.googleapis.com/allocation/consumer/quota_used_count\" 3. For both rate quota and allocation quota, the quota limit reached condition will be specified using the following boolean metric: \"serviceruntime.googleapis.com/quota/exceeded\" + #[serde(rename = "quotaMetrics", skip_serializing_if = "Option::is_none")] + pub quota_metrics: + Option>, +} + +impl QuotaInfo { + /// Contains the quota information for a quota check response. + pub fn new() -> QuotaInfo { + QuotaInfo { + limit_exceeded: None, + quota_consumed: None, + quota_metrics: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_operation.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_operation.rs new file mode 100644 index 000000000..e53f1454a --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_operation.rs @@ -0,0 +1,69 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// QuotaOperation : Represents information regarding a quota operation. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct QuotaOperation { + /// Identity of the consumer for whom this quota operation is being performed. This can be in one of the following formats: project:, project_number:, api_key:. + #[serde(rename = "consumerId", skip_serializing_if = "Option::is_none")] + pub consumer_id: Option, + /// Labels describing the operation. + #[serde(rename = "labels", skip_serializing_if = "Option::is_none")] + pub labels: Option<::std::collections::HashMap>, + /// Fully qualified name of the API method for which this quota operation is requested. This name is used for matching quota rules or metric rules and billing status rules defined in service configuration. This field should not be set if any of the following is true: (1) the quota operation is performed on non-API resources. (2) quota_metrics is set because the caller is doing quota override. Example of an RPC method name: google.example.library.v1.LibraryService.CreateShelf + #[serde(rename = "methodName", skip_serializing_if = "Option::is_none")] + pub method_name: Option, + /// Identity of the operation. For Allocation Quota, this is expected to be unique within the scope of the service that generated the operation, and guarantees idempotency in case of retries. In order to ensure best performance and latency in the Quota backends, operation_ids are optimally associated with time, so that related operations can be accessed fast in storage. For this reason, the recommended token for services that intend to operate at a high QPS is Unix time in nanos + UUID + #[serde(rename = "operationId", skip_serializing_if = "Option::is_none")] + pub operation_id: Option, + /// Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition. Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error. This field is mutually exclusive with method_name. + #[serde(rename = "quotaMetrics", skip_serializing_if = "Option::is_none")] + pub quota_metrics: + Option>, + /// Quota mode for this operation. + #[serde(rename = "quotaMode", skip_serializing_if = "Option::is_none")] + pub quota_mode: Option, +} + +impl QuotaOperation { + /// Represents information regarding a quota operation. + pub fn new() -> QuotaOperation { + QuotaOperation { + consumer_id: None, + labels: None, + method_name: None, + operation_id: None, + quota_metrics: None, + quota_mode: None, + } + } +} + +/// Quota mode for this operation. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum QuotaMode { + #[serde(rename = "UNSPECIFIED")] + Unspecified, + #[serde(rename = "NORMAL")] + Normal, + #[serde(rename = "BEST_EFFORT")] + BestEffort, + #[serde(rename = "CHECK_ONLY")] + CheckOnly, + #[serde(rename = "ADJUST_ONLY")] + AdjustOnly, +} + +impl Default for QuotaMode { + fn default() -> QuotaMode { + Self::Unspecified + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_properties.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_properties.rs new file mode 100644 index 000000000..c98488567 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/quota_properties.rs @@ -0,0 +1,42 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// QuotaProperties : Represents the properties needed for quota operations. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct QuotaProperties { + /// Quota mode for this operation. + #[serde(rename = "quotaMode", skip_serializing_if = "Option::is_none")] + pub quota_mode: Option, +} + +impl QuotaProperties { + /// Represents the properties needed for quota operations. + pub fn new() -> QuotaProperties { + QuotaProperties { quota_mode: None } + } +} + +/// Quota mode for this operation. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum QuotaMode { + #[serde(rename = "ACQUIRE")] + Acquire, + #[serde(rename = "ACQUIRE_BEST_EFFORT")] + AcquireBestEffort, + #[serde(rename = "CHECK")] + Check, +} + +impl Default for QuotaMode { + fn default() -> QuotaMode { + Self::Acquire + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_error.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_error.rs new file mode 100644 index 000000000..13f4a2485 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_error.rs @@ -0,0 +1,30 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ReportError : Represents the processing error of one Operation in the request. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ReportError { + /// The Operation.operation_id value from the request. + #[serde(rename = "operationId", skip_serializing_if = "Option::is_none")] + pub operation_id: Option, + #[serde(rename = "status", skip_serializing_if = "Option::is_none")] + pub status: Option>, +} + +impl ReportError { + /// Represents the processing error of one Operation in the request. + pub fn new() -> ReportError { + ReportError { + operation_id: None, + status: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_request.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_request.rs new file mode 100644 index 000000000..163fa80f2 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_request.rs @@ -0,0 +1,31 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ReportRequest : Request message for the Report method. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ReportRequest { + /// Operations to be reported. Typically the service should report one operation per request. Putting multiple operations into a single request is allowed, but should be used only when multiple operations are natually available at the time of the report. There is no limit on the number of operations in the same ReportRequest, however the ReportRequest size should be no larger than 1MB. See ReportResponse.report_errors for partial failure behavior. + #[serde(rename = "operations", skip_serializing_if = "Option::is_none")] + pub operations: Option>, + /// Specifies which version of service config should be used to process the request. If unspecified or no matching version can be found, the latest one will be used. + #[serde(rename = "serviceConfigId", skip_serializing_if = "Option::is_none")] + pub service_config_id: Option, +} + +impl ReportRequest { + /// Request message for the Report method. + pub fn new() -> ReportRequest { + ReportRequest { + operations: None, + service_config_id: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_response.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_response.rs new file mode 100644 index 000000000..6459856b8 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/report_response.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ReportResponse : Response message for the Report method. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ReportResponse { + /// Partial failures, one for each `Operation` in the request that failed processing. There are three possible combinations of the RPC status: 1. The combination of a successful RPC status and an empty `report_errors` list indicates a complete success where all `Operations` in the request are processed successfully. 2. The combination of a successful RPC status and a non-empty `report_errors` list indicates a partial success where some `Operations` in the request succeeded. Each `Operation` that failed processing has a corresponding item in this list. 3. A failed RPC status indicates a general non-deterministic failure. When this happens, it's impossible to know which of the 'Operations' in the request succeeded or failed. + #[serde(rename = "reportErrors", skip_serializing_if = "Option::is_none")] + pub report_errors: Option>, + /// The actual config id used to process the request. + #[serde(rename = "serviceConfigId", skip_serializing_if = "Option::is_none")] + pub service_config_id: Option, + /// The current service rollout id used to process the request. + #[serde(rename = "serviceRolloutId", skip_serializing_if = "Option::is_none")] + pub service_rollout_id: Option, +} + +impl ReportResponse { + /// Response message for the Report method. + pub fn new() -> ReportResponse { + ReportResponse { + report_errors: None, + service_config_id: None, + service_rollout_id: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/request.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/request.rs new file mode 100644 index 000000000..a230b5863 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/request.rs @@ -0,0 +1,70 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Request : This message defines attributes for an HTTP request. If the actual request is not an HTTP request, the runtime system should try to map the actual request to an equivalent HTTP request. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Request { + #[serde(rename = "auth", skip_serializing_if = "Option::is_none")] + pub auth: Option>, + /// The HTTP request headers. If multiple headers share the same key, they must be merged according to the HTTP spec. All header keys must be lowercased, because HTTP header keys are case-insensitive. + #[serde(rename = "headers", skip_serializing_if = "Option::is_none")] + pub headers: Option<::std::collections::HashMap>, + /// The HTTP request `Host` header value. + #[serde(rename = "host", skip_serializing_if = "Option::is_none")] + pub host: Option, + /// The unique ID for a request, which can be propagated to downstream systems. The ID should have low probability of collision within a single day for a specific service. + #[serde(rename = "id", skip_serializing_if = "Option::is_none")] + pub id: Option, + /// The HTTP request method, such as `GET`, `POST`. + #[serde(rename = "method", skip_serializing_if = "Option::is_none")] + pub method: Option, + /// The HTTP URL path, excluding the query parameters. + #[serde(rename = "path", skip_serializing_if = "Option::is_none")] + pub path: Option, + /// The network protocol used with the request, such as \"http/1.1\", \"spdy/3\", \"h2\", \"h2c\", \"webrtc\", \"tcp\", \"udp\", \"quic\". See https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids for details. + #[serde(rename = "protocol", skip_serializing_if = "Option::is_none")] + pub protocol: Option, + /// The HTTP URL query in the format of `name1=value1&name2=value2`, as it appears in the first line of the HTTP request. No decoding is performed. + #[serde(rename = "query", skip_serializing_if = "Option::is_none")] + pub query: Option, + /// A special parameter for request reason. It is used by security systems to associate auditing information with a request. + #[serde(rename = "reason", skip_serializing_if = "Option::is_none")] + pub reason: Option, + /// The HTTP URL scheme, such as `http` and `https`. + #[serde(rename = "scheme", skip_serializing_if = "Option::is_none")] + pub scheme: Option, + /// The HTTP request size in bytes. If unknown, it must be -1. + #[serde(rename = "size", skip_serializing_if = "Option::is_none")] + pub size: Option, + /// The timestamp when the `destination` service receives the last byte of the request. + #[serde(rename = "time", skip_serializing_if = "Option::is_none")] + pub time: Option, +} + +impl Request { + /// This message defines attributes for an HTTP request. If the actual request is not an HTTP request, the runtime system should try to map the actual request to an equivalent HTTP request. + pub fn new() -> Request { + Request { + auth: None, + headers: None, + host: None, + id: None, + method: None, + path: None, + protocol: None, + query: None, + reason: None, + scheme: None, + size: None, + time: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/request_metadata.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/request_metadata.rs new file mode 100644 index 000000000..0b294e48f --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/request_metadata.rs @@ -0,0 +1,49 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// RequestMetadata : Metadata about the request. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct RequestMetadata { + /// The IP address of the caller. For a caller from the internet, this will be the public IPv4 or IPv6 address. For calls made from inside Google's internal production network from one GCP service to another, `caller_ip` will be redacted to \"private\". For a caller from a Compute Engine VM with a external IP address, `caller_ip` will be the VM's external IP address. For a caller from a Compute Engine VM without a external IP address, if the VM is in the same organization (or project) as the accessed resource, `caller_ip` will be the VM's internal IPv4 address, otherwise `caller_ip` will be redacted to \"gce-internal-ip\". See https://cloud.google.com/compute/docs/vpc/ for more information. + #[serde(rename = "callerIp", skip_serializing_if = "Option::is_none")] + pub caller_ip: Option, + /// The network of the caller. Set only if the network host project is part of the same GCP organization (or project) as the accessed resource. See https://cloud.google.com/compute/docs/vpc/ for more information. This is a scheme-less URI full resource name. For example: \"//compute.googleapis.com/projects/PROJECT_ID/global/networks/NETWORK_ID\" + #[serde(rename = "callerNetwork", skip_serializing_if = "Option::is_none")] + pub caller_network: Option, + /// The user agent of the caller. This information is not authenticated and should be treated accordingly. For example: + `google-api-python-client/1.4.0`: The request was made by the Google API client for Python. + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/appengine; appid: s~my-project`: The request was made from the `my-project` App Engine app. + #[serde( + rename = "callerSuppliedUserAgent", + skip_serializing_if = "Option::is_none" + )] + pub caller_supplied_user_agent: Option, + #[serde( + rename = "destinationAttributes", + skip_serializing_if = "Option::is_none" + )] + pub destination_attributes: + Option>, + #[serde(rename = "requestAttributes", skip_serializing_if = "Option::is_none")] + pub request_attributes: + Option>, +} + +impl RequestMetadata { + /// Metadata about the request. + pub fn new() -> RequestMetadata { + RequestMetadata { + caller_ip: None, + caller_network: None, + caller_supplied_user_agent: None, + destination_attributes: None, + request_attributes: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource.rs new file mode 100644 index 000000000..5c17c2996 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource.rs @@ -0,0 +1,71 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Resource : This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Resource { + /// Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ + #[serde(rename = "annotations", skip_serializing_if = "Option::is_none")] + pub annotations: Option<::std::collections::HashMap>, + /// Output only. The timestamp when the resource was created. This may be either the time creation was initiated or when it was completed. + #[serde(rename = "createTime", skip_serializing_if = "Option::is_none")] + pub create_time: Option, + /// Output only. The timestamp when the resource was deleted. If the resource is not deleted, this must be empty. + #[serde(rename = "deleteTime", skip_serializing_if = "Option::is_none")] + pub delete_time: Option, + /// Mutable. The display name set by clients. Must be <= 63 characters. + #[serde(rename = "displayName", skip_serializing_if = "Option::is_none")] + pub display_name: Option, + /// Output only. An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written. + #[serde(rename = "etag", skip_serializing_if = "Option::is_none")] + pub etag: Option, + /// The labels or tags on the resource, such as AWS resource tags and Kubernetes resource labels. + #[serde(rename = "labels", skip_serializing_if = "Option::is_none")] + pub labels: Option<::std::collections::HashMap>, + /// Immutable. The location of the resource. The location encoding is specific to the service provider, and new encoding may be introduced as the service evolves. For Google Cloud products, the encoding is what is used by Google Cloud APIs, such as `us-east1`, `aws-us-east-1`, and `azure-eastus2`. The semantics of `location` is identical to the `cloud.googleapis.com/location` label used by some Google Cloud APIs. + #[serde(rename = "location", skip_serializing_if = "Option::is_none")] + pub location: Option, + /// The stable identifier (name) of a resource on the `service`. A resource can be logically identified as \"//{resource.service}/{resource.name}\". The differences between a resource name and a URI are: * Resource name is a logical identifier, independent of network protocol and API version. For example, `//pubsub.googleapis.com/projects/123/topics/news-feed`. * URI often includes protocol and version information, so it can be used directly by applications. For example, `https://pubsub.googleapis.com/v1/projects/123/topics/news-feed`. See https://cloud.google.com/apis/design/resource_names for details. + #[serde(rename = "name", skip_serializing_if = "Option::is_none")] + pub name: Option, + /// The name of the service that this resource belongs to, such as `pubsub.googleapis.com`. The service may be different from the DNS hostname that actually serves the request. + #[serde(rename = "service", skip_serializing_if = "Option::is_none")] + pub service: Option, + /// The type of the resource. The syntax is platform-specific because different platforms define their resources differently. For Google APIs, the type format must be \"{service}/{kind}\", such as \"pubsub.googleapis.com/Topic\". + #[serde(rename = "type", skip_serializing_if = "Option::is_none")] + pub r#type: Option, + /// The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4. + #[serde(rename = "uid", skip_serializing_if = "Option::is_none")] + pub uid: Option, + /// Output only. The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value. + #[serde(rename = "updateTime", skip_serializing_if = "Option::is_none")] + pub update_time: Option, +} + +impl Resource { + /// This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service. + pub fn new() -> Resource { + Resource { + annotations: None, + create_time: None, + delete_time: None, + display_name: None, + etag: None, + labels: None, + location: None, + name: None, + service: None, + r#type: None, + uid: None, + update_time: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource_info.rs new file mode 100644 index 000000000..9d74a60ff --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource_info.rs @@ -0,0 +1,39 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ResourceInfo : Describes a resource associated with this operation. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ResourceInfo { + /// The resource permission required for this request. + #[serde(rename = "permission", skip_serializing_if = "Option::is_none")] + pub permission: Option, + /// The identifier of the parent of this resource instance. Must be in one of the following formats: - `projects/` - `folders/` - `organizations/` + #[serde(rename = "resourceContainer", skip_serializing_if = "Option::is_none")] + pub resource_container: Option, + /// The location of the resource. If not empty, the resource will be checked against location policy. The value must be a valid zone, region or multiregion. For example: \"europe-west4\" or \"northamerica-northeast1-a\" + #[serde(rename = "resourceLocation", skip_serializing_if = "Option::is_none")] + pub resource_location: Option, + /// Name of the resource. This is used for auditing purposes. + #[serde(rename = "resourceName", skip_serializing_if = "Option::is_none")] + pub resource_name: Option, +} + +impl ResourceInfo { + /// Describes a resource associated with this operation. + pub fn new() -> ResourceInfo { + ResourceInfo { + permission: None, + resource_container: None, + resource_location: None, + resource_name: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource_location.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource_location.rs new file mode 100644 index 000000000..a500cb4e1 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/resource_location.rs @@ -0,0 +1,31 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ResourceLocation : Location information about a resource. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ResourceLocation { + /// The locations of a resource after the execution of the operation. Requests to create or delete a location based resource must populate the 'current_locations' field and not the 'original_locations' field. For example: \"europe-west1-a\" \"us-east1\" \"nam3\" + #[serde(rename = "currentLocations", skip_serializing_if = "Option::is_none")] + pub current_locations: Option>, + /// The locations of a resource prior to the execution of the operation. Requests that mutate the resource's location must populate both the 'original_locations' as well as the 'current_locations' fields. For example: \"europe-west1-a\" \"us-east1\" \"nam3\" + #[serde(rename = "originalLocations", skip_serializing_if = "Option::is_none")] + pub original_locations: Option>, +} + +impl ResourceLocation { + /// Location information about a resource. + pub fn new() -> ResourceLocation { + ResourceLocation { + current_locations: None, + original_locations: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_account_delegation_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_account_delegation_info.rs new file mode 100644 index 000000000..1b78578a1 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_account_delegation_info.rs @@ -0,0 +1,41 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ServiceAccountDelegationInfo : Identity delegation history of an authenticated service account. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ServiceAccountDelegationInfo { + #[serde( + rename = "firstPartyPrincipal", + skip_serializing_if = "Option::is_none" + )] + pub first_party_principal: + Option>, + /// A string representing the principal_subject associated with the identity. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subject/{subject)` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]` + #[serde(rename = "principalSubject", skip_serializing_if = "Option::is_none")] + pub principal_subject: Option, + #[serde( + rename = "thirdPartyPrincipal", + skip_serializing_if = "Option::is_none" + )] + pub third_party_principal: + Option>, +} + +impl ServiceAccountDelegationInfo { + /// Identity delegation history of an authenticated service account. + pub fn new() -> ServiceAccountDelegationInfo { + ServiceAccountDelegationInfo { + first_party_principal: None, + principal_subject: None, + third_party_principal: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_delegation_history.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_delegation_history.rs new file mode 100644 index 000000000..f518ebd38 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_delegation_history.rs @@ -0,0 +1,32 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ServiceDelegationHistory : The history of delegation across multiple services as the result of the original user's action. Such as \"service A uses its own account to do something for user B\". This differs from ServiceAccountDelegationInfo, which only tracks the history of direct token exchanges (impersonation). + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ServiceDelegationHistory { + /// The original end user who initiated the request to GCP. + #[serde(rename = "originalPrincipal", skip_serializing_if = "Option::is_none")] + pub original_principal: Option, + /// Data identifying the service specific jobs or units of work that were involved in a chain of service calls. + #[serde(rename = "serviceMetadata", skip_serializing_if = "Option::is_none")] + pub service_metadata: + Option>, +} + +impl ServiceDelegationHistory { + /// The history of delegation across multiple services as the result of the original user's action. Such as \"service A uses its own account to do something for user B\". This differs from ServiceAccountDelegationInfo, which only tracks the history of direct token exchanges (impersonation). + pub fn new() -> ServiceDelegationHistory { + ServiceDelegationHistory { + original_principal: None, + service_metadata: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_metadata.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_metadata.rs new file mode 100644 index 000000000..20a5c00b2 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/service_metadata.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ServiceMetadata : Metadata describing the service and additional service specific information used to identify the job or unit of work at hand. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ServiceMetadata { + /// Additional metadata provided by service teams to describe service specific job information that was triggered by the original principal. + #[serde(rename = "jobMetadata", skip_serializing_if = "Option::is_none")] + pub job_metadata: Option<::std::collections::HashMap>, + /// A string representing the principal_subject associated with the identity. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subject/{subject)` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]` If the identity is a Google account (e.g. workspace user account or service account), this will be the email of the prefixed by `serviceAccount:`. For example: `serviceAccount:my-service-account@project-1.iam.gserviceaccount.com`. If the identity is an individual user, the identity will be formatted as: `user:user_ABC@email.com`. + #[serde(rename = "principalSubject", skip_serializing_if = "Option::is_none")] + pub principal_subject: Option, + /// The service's fully qualified domain name, e.g. \"dataproc.googleapis.com\". + #[serde(rename = "serviceDomain", skip_serializing_if = "Option::is_none")] + pub service_domain: Option, +} + +impl ServiceMetadata { + /// Metadata describing the service and additional service specific information used to identify the job or unit of work at hand. + pub fn new() -> ServiceMetadata { + ServiceMetadata { + job_metadata: None, + principal_subject: None, + service_domain: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/span_context.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/span_context.rs new file mode 100644 index 000000000..98f9fb18f --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/span_context.rs @@ -0,0 +1,25 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// SpanContext : The context of a span. This is attached to an Exemplar in Distribution values during aggregation. It contains the name of a span with format: projects/[PROJECT_ID_OR_NUMBER]/traces/[TRACE_ID]/spans/[SPAN_ID] + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct SpanContext { + /// The resource name of the span. The format is: projects/[PROJECT_ID_OR_NUMBER]/traces/[TRACE_ID]/spans/[SPAN_ID] `[TRACE_ID]` is a unique identifier for a trace within a project; it is a 32-character hexadecimal encoding of a 16-byte array. `[SPAN_ID]` is a unique identifier for a span within a trace; it is a 16-character hexadecimal encoding of an 8-byte array. + #[serde(rename = "spanName", skip_serializing_if = "Option::is_none")] + pub span_name: Option, +} + +impl SpanContext { + /// The context of a span. This is attached to an Exemplar in Distribution values during aggregation. It contains the name of a span with format: projects/[PROJECT_ID_OR_NUMBER]/traces/[TRACE_ID]/spans/[SPAN_ID] + pub fn new() -> SpanContext { + SpanContext { span_name: None } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/status.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/status.rs new file mode 100644 index 000000000..8128bdc8c --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/status.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// Status : The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct Status { + /// The status code, which should be an enum value of google.rpc.Code. + #[serde(rename = "code", skip_serializing_if = "Option::is_none")] + pub code: Option, + /// A list of messages that carry the error details. There is a common set of message types for APIs to use. + #[serde(rename = "details", skip_serializing_if = "Option::is_none")] + pub details: Option>>, + /// A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. + #[serde(rename = "message", skip_serializing_if = "Option::is_none")] + pub message: Option, +} + +impl Status { + /// The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). + pub fn new() -> Status { + Status { + code: None, + details: None, + message: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/third_party_principal.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/third_party_principal.rs new file mode 100644 index 000000000..1a551933b --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/third_party_principal.rs @@ -0,0 +1,27 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ThirdPartyPrincipal : Third party identity principal. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ThirdPartyPrincipal { + /// Metadata about third party identity. + #[serde(rename = "thirdPartyClaims", skip_serializing_if = "Option::is_none")] + pub third_party_claims: Option<::std::collections::HashMap>, +} + +impl ThirdPartyPrincipal { + /// Third party identity principal. + pub fn new() -> ThirdPartyPrincipal { + ThirdPartyPrincipal { + third_party_claims: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/trace_span.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/trace_span.rs new file mode 100644 index 000000000..0a15c51b8 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/trace_span.rs @@ -0,0 +1,91 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// TraceSpan : A span represents a single operation within a trace. Spans can be nested to form a trace tree. Often, a trace contains a root span that describes the end-to-end latency, and one or more subspans for its sub-operations. A trace can also contain multiple root spans, or none at all. Spans do not need to be contiguous—there may be gaps or overlaps between spans in a trace. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct TraceSpan { + #[serde(rename = "attributes", skip_serializing_if = "Option::is_none")] + pub attributes: Option>, + /// An optional number of child spans that were generated while this span was active. If set, allows implementation to detect missing child spans. + #[serde(rename = "childSpanCount", skip_serializing_if = "Option::is_none")] + pub child_span_count: Option, + #[serde(rename = "displayName", skip_serializing_if = "Option::is_none")] + pub display_name: + Option>, + /// The end time of the span. On the client side, this is the time kept by the local machine where the span execution ends. On the server side, this is the time when the server application handler stops running. + #[serde(rename = "endTime", skip_serializing_if = "Option::is_none")] + pub end_time: Option, + /// The resource name of the span in the following format: projects/[PROJECT_ID]/traces/[TRACE_ID]/spans/SPAN_ID is a unique identifier for a trace within a project; it is a 32-character hexadecimal encoding of a 16-byte array. [SPAN_ID] is a unique identifier for a span within a trace; it is a 16-character hexadecimal encoding of an 8-byte array. + #[serde(rename = "name", skip_serializing_if = "Option::is_none")] + pub name: Option, + /// The [SPAN_ID] of this span's parent span. If this is a root span, then this field must be empty. + #[serde(rename = "parentSpanId", skip_serializing_if = "Option::is_none")] + pub parent_span_id: Option, + /// (Optional) Set this parameter to indicate whether this span is in the same process as its parent. If you do not set this parameter, Stackdriver Trace is unable to take advantage of this helpful information. + #[serde( + rename = "sameProcessAsParentSpan", + skip_serializing_if = "Option::is_none" + )] + pub same_process_as_parent_span: Option, + /// The [SPAN_ID] portion of the span's resource name. + #[serde(rename = "spanId", skip_serializing_if = "Option::is_none")] + pub span_id: Option, + /// Distinguishes between spans generated in a particular context. For example, two spans with the same name may be distinguished using `CLIENT` (caller) and `SERVER` (callee) to identify an RPC call. + #[serde(rename = "spanKind", skip_serializing_if = "Option::is_none")] + pub span_kind: Option, + /// The start time of the span. On the client side, this is the time kept by the local machine where the span execution starts. On the server side, this is the time when the server's application handler starts running. + #[serde(rename = "startTime", skip_serializing_if = "Option::is_none")] + pub start_time: Option, + #[serde(rename = "status", skip_serializing_if = "Option::is_none")] + pub status: Option>, +} + +impl TraceSpan { + /// A span represents a single operation within a trace. Spans can be nested to form a trace tree. Often, a trace contains a root span that describes the end-to-end latency, and one or more subspans for its sub-operations. A trace can also contain multiple root spans, or none at all. Spans do not need to be contiguous—there may be gaps or overlaps between spans in a trace. + pub fn new() -> TraceSpan { + TraceSpan { + attributes: None, + child_span_count: None, + display_name: None, + end_time: None, + name: None, + parent_span_id: None, + same_process_as_parent_span: None, + span_id: None, + span_kind: None, + start_time: None, + status: None, + } + } +} + +/// Distinguishes between spans generated in a particular context. For example, two spans with the same name may be distinguished using `CLIENT` (caller) and `SERVER` (callee) to identify an RPC call. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum SpanKind { + #[serde(rename = "SPAN_KIND_UNSPECIFIED")] + SpanKindUnspecified, + #[serde(rename = "INTERNAL")] + Internal, + #[serde(rename = "SERVER")] + Server, + #[serde(rename = "CLIENT")] + Client, + #[serde(rename = "PRODUCER")] + Producer, + #[serde(rename = "CONSUMER")] + Consumer, +} + +impl Default for SpanKind { + fn default() -> SpanKind { + Self::SpanKindUnspecified + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/truncatable_string.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/truncatable_string.rs new file mode 100644 index 000000000..3dd91c4ca --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/truncatable_string.rs @@ -0,0 +1,31 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// TruncatableString : Represents a string that might be shortened to a specified length. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct TruncatableString { + /// The number of bytes removed from the original string. If this value is 0, then the string was not shortened. + #[serde(rename = "truncatedByteCount", skip_serializing_if = "Option::is_none")] + pub truncated_byte_count: Option, + /// The shortened string. For example, if the original string is 500 bytes long and the limit of the string is 128 bytes, then `value` contains the first 128 bytes of the 500-byte string. Truncation always happens on a UTF8 character boundary. If there are multi-byte characters in the string, then the length of the shortened string might be less than the size limit. + #[serde(rename = "value", skip_serializing_if = "Option::is_none")] + pub value: Option, +} + +impl TruncatableString { + /// Represents a string that might be shortened to a specified length. + pub fn new() -> TruncatableString { + TruncatableString { + truncated_byte_count: None, + value: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_http_request.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_http_request.rs new file mode 100644 index 000000000..6a6e8ac23 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_http_request.rs @@ -0,0 +1,86 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// V1HttpRequest : A common proto for logging HTTP requests. Only contains semantics defined by the HTTP specification. Product-specific logging information MUST be defined in a separate message. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct V1HttpRequest { + /// The number of HTTP response bytes inserted into cache. Set only when a cache fill was attempted. + #[serde(rename = "cacheFillBytes", skip_serializing_if = "Option::is_none")] + pub cache_fill_bytes: Option, + /// Whether or not an entity was served from cache (with or without validation). + #[serde(rename = "cacheHit", skip_serializing_if = "Option::is_none")] + pub cache_hit: Option, + /// Whether or not a cache lookup was attempted. + #[serde(rename = "cacheLookup", skip_serializing_if = "Option::is_none")] + pub cache_lookup: Option, + /// Whether or not the response was validated with the origin server before being served from cache. This field is only meaningful if `cache_hit` is True. + #[serde( + rename = "cacheValidatedWithOriginServer", + skip_serializing_if = "Option::is_none" + )] + pub cache_validated_with_origin_server: Option, + /// The request processing latency on the server, from the time the request was received until the response was sent. + #[serde(rename = "latency", skip_serializing_if = "Option::is_none")] + pub latency: Option, + /// Protocol used for the request. Examples: \"HTTP/1.1\", \"HTTP/2\", \"websocket\" + #[serde(rename = "protocol", skip_serializing_if = "Option::is_none")] + pub protocol: Option, + /// The referer URL of the request, as defined in [HTTP/1.1 Header Field Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). + #[serde(rename = "referer", skip_serializing_if = "Option::is_none")] + pub referer: Option, + /// The IP address (IPv4 or IPv6) of the client that issued the HTTP request. Examples: `\"192.168.1.1\"`, `\"FE80::0202:B3FF:FE1E:8329\"`. + #[serde(rename = "remoteIp", skip_serializing_if = "Option::is_none")] + pub remote_ip: Option, + /// The request method. Examples: `\"GET\"`, `\"HEAD\"`, `\"PUT\"`, `\"POST\"`. + #[serde(rename = "requestMethod", skip_serializing_if = "Option::is_none")] + pub request_method: Option, + /// The size of the HTTP request message in bytes, including the request headers and the request body. + #[serde(rename = "requestSize", skip_serializing_if = "Option::is_none")] + pub request_size: Option, + /// The scheme (http, https), the host name, the path, and the query portion of the URL that was requested. Example: `\"http://example.com/some/info?color=red\"`. + #[serde(rename = "requestUrl", skip_serializing_if = "Option::is_none")] + pub request_url: Option, + /// The size of the HTTP response message sent back to the client, in bytes, including the response headers and the response body. + #[serde(rename = "responseSize", skip_serializing_if = "Option::is_none")] + pub response_size: Option, + /// The IP address (IPv4 or IPv6) of the origin server that the request was sent to. + #[serde(rename = "serverIp", skip_serializing_if = "Option::is_none")] + pub server_ip: Option, + /// The response code indicating the status of the response. Examples: 200, 404. + #[serde(rename = "status", skip_serializing_if = "Option::is_none")] + pub status: Option, + /// The user agent sent by the client. Example: `\"Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)\"`. + #[serde(rename = "userAgent", skip_serializing_if = "Option::is_none")] + pub user_agent: Option, +} + +impl V1HttpRequest { + /// A common proto for logging HTTP requests. Only contains semantics defined by the HTTP specification. Product-specific logging information MUST be defined in a separate message. + pub fn new() -> V1HttpRequest { + V1HttpRequest { + cache_fill_bytes: None, + cache_hit: None, + cache_lookup: None, + cache_validated_with_origin_server: None, + latency: None, + protocol: None, + referer: None, + remote_ip: None, + request_method: None, + request_size: None, + request_url: None, + response_size: None, + server_ip: None, + status: None, + user_agent: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry.rs new file mode 100644 index 000000000..69e56b600 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry.rs @@ -0,0 +1,107 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// V1LogEntry : An individual log entry. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct V1LogEntry { + #[serde(rename = "httpRequest", skip_serializing_if = "Option::is_none")] + pub http_request: + Option>, + /// A unique ID for the log entry used for deduplication. If omitted, the implementation will generate one based on operation_id. + #[serde(rename = "insertId", skip_serializing_if = "Option::is_none")] + pub insert_id: Option, + /// A set of user-defined (key, value) data that provides additional information about the log entry. + #[serde(rename = "labels", skip_serializing_if = "Option::is_none")] + pub labels: Option<::std::collections::HashMap>, + /// A set of user-defined (key, value) data that provides additional information about the moniotored resource that the log entry belongs to. + #[serde( + rename = "monitoredResourceLabels", + skip_serializing_if = "Option::is_none" + )] + pub monitored_resource_labels: Option<::std::collections::HashMap>, + /// Required. The log to which this log entry belongs. Examples: `\"syslog\"`, `\"book_log\"`. + #[serde(rename = "name", skip_serializing_if = "Option::is_none")] + pub name: Option, + #[serde(rename = "operation", skip_serializing_if = "Option::is_none")] + pub operation: + Option>, + /// The log entry payload, represented as a protocol buffer that is expressed as a JSON object. The only accepted type currently is AuditLog. + #[serde(rename = "protoPayload", skip_serializing_if = "Option::is_none")] + pub proto_payload: Option<::std::collections::HashMap>, + /// The severity of the log entry. The default value is `LogSeverity.DEFAULT`. + #[serde(rename = "severity", skip_serializing_if = "Option::is_none")] + pub severity: Option, + #[serde(rename = "sourceLocation", skip_serializing_if = "Option::is_none")] + pub source_location: + Option>, + /// The log entry payload, represented as a structure that is expressed as a JSON object. + #[serde(rename = "structPayload", skip_serializing_if = "Option::is_none")] + pub struct_payload: Option<::std::collections::HashMap>, + /// The log entry payload, represented as a Unicode string (UTF-8). + #[serde(rename = "textPayload", skip_serializing_if = "Option::is_none")] + pub text_payload: Option, + /// The time the event described by the log entry occurred. If omitted, defaults to operation start time. + #[serde(rename = "timestamp", skip_serializing_if = "Option::is_none")] + pub timestamp: Option, + /// Optional. Resource name of the trace associated with the log entry, if any. If this field contains a relative resource name, you can assume the name is relative to `//tracing.googleapis.com`. Example: `projects/my-projectid/traces/06796866738c859f2f19b7cfb3214824` + #[serde(rename = "trace", skip_serializing_if = "Option::is_none")] + pub trace: Option, +} + +impl V1LogEntry { + /// An individual log entry. + pub fn new() -> V1LogEntry { + V1LogEntry { + http_request: None, + insert_id: None, + labels: None, + monitored_resource_labels: None, + name: None, + operation: None, + proto_payload: None, + severity: None, + source_location: None, + struct_payload: None, + text_payload: None, + timestamp: None, + trace: None, + } + } +} + +/// The severity of the log entry. The default value is `LogSeverity.DEFAULT`. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum Severity { + #[serde(rename = "DEFAULT")] + Default, + #[serde(rename = "DEBUG")] + Debug, + #[serde(rename = "INFO")] + Info, + #[serde(rename = "NOTICE")] + Notice, + #[serde(rename = "WARNING")] + Warning, + #[serde(rename = "ERROR")] + Error, + #[serde(rename = "CRITICAL")] + Critical, + #[serde(rename = "ALERT")] + Alert, + #[serde(rename = "EMERGENCY")] + Emergency, +} + +impl Default for Severity { + fn default() -> Severity { + Self::Default + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry_operation.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry_operation.rs new file mode 100644 index 000000000..fe04f587a --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry_operation.rs @@ -0,0 +1,39 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// V1LogEntryOperation : Additional information about a potentially long-running operation with which a log entry is associated. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct V1LogEntryOperation { + /// Optional. Set this to True if this is the first log entry in the operation. + #[serde(rename = "first", skip_serializing_if = "Option::is_none")] + pub first: Option, + /// Optional. An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation. + #[serde(rename = "id", skip_serializing_if = "Option::is_none")] + pub id: Option, + /// Optional. Set this to True if this is the last log entry in the operation. + #[serde(rename = "last", skip_serializing_if = "Option::is_none")] + pub last: Option, + /// Optional. An arbitrary producer identifier. The combination of `id` and `producer` must be globally unique. Examples for `producer`: `\"MyDivision.MyBigCompany.com\"`, `\"github.com/MyProject/MyApplication\"`. + #[serde(rename = "producer", skip_serializing_if = "Option::is_none")] + pub producer: Option, +} + +impl V1LogEntryOperation { + /// Additional information about a potentially long-running operation with which a log entry is associated. + pub fn new() -> V1LogEntryOperation { + V1LogEntryOperation { + first: None, + id: None, + last: None, + producer: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry_source_location.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry_source_location.rs new file mode 100644 index 000000000..1b58ed4c2 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/v1_log_entry_source_location.rs @@ -0,0 +1,35 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// V1LogEntrySourceLocation : Additional information about the source code location that produced the log entry. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct V1LogEntrySourceLocation { + /// Optional. Source file name. Depending on the runtime environment, this might be a simple name or a fully-qualified name. + #[serde(rename = "file", skip_serializing_if = "Option::is_none")] + pub file: Option, + /// Optional. Human-readable name of the function or method being invoked, with optional context such as the class or package name. This information may be used in contexts such as the logs viewer, where a file and line number are less meaningful. The format can vary by language. For example: `qual.if.ied.Class.method` (Java), `dir/package.func` (Go), `function` (Python). + #[serde(rename = "function", skip_serializing_if = "Option::is_none")] + pub function: Option, + /// Optional. Line within the source file. 1-based; 0 indicates no line number available. + #[serde(rename = "line", skip_serializing_if = "Option::is_none")] + pub line: Option, +} + +impl V1LogEntrySourceLocation { + /// Additional information about the source code location that produced the log entry. + pub fn new() -> V1LogEntrySourceLocation { + V1LogEntrySourceLocation { + file: None, + function: None, + line: None, + } + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/violation_info.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/violation_info.rs new file mode 100644 index 000000000..b9e960e59 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/models/violation_info.rs @@ -0,0 +1,58 @@ +use serde::{Deserialize, Serialize}; /* + * Service Control API + * + * Provides admission control and telemetry reporting for services integrated with Service Infrastructure. + * + * The version of the OpenAPI document: v1 + * + * Generated by: https://openapi-generator.tech + */ + +/// ViolationInfo : Provides information about the Policy violation info for this request. + +#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)] +pub struct ViolationInfo { + /// Optional. Value that is being checked for the policy. This could be in encrypted form (if pii sensitive). This field will only be emitted in LIST_POLICY types + #[serde(rename = "checkedValue", skip_serializing_if = "Option::is_none")] + pub checked_value: Option, + /// Optional. Constraint name + #[serde(rename = "constraint", skip_serializing_if = "Option::is_none")] + pub constraint: Option, + /// Optional. Error message that policy is indicating. + #[serde(rename = "errorMessage", skip_serializing_if = "Option::is_none")] + pub error_message: Option, + /// Optional. Indicates the type of the policy. + #[serde(rename = "policyType", skip_serializing_if = "Option::is_none")] + pub policy_type: Option, +} + +impl ViolationInfo { + /// Provides information about the Policy violation info for this request. + pub fn new() -> ViolationInfo { + ViolationInfo { + checked_value: None, + constraint: None, + error_message: None, + policy_type: None, + } + } +} + +/// Optional. Indicates the type of the policy. +#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)] +pub enum PolicyType { + #[serde(rename = "POLICY_TYPE_UNSPECIFIED")] + PolicyTypeUnspecified, + #[serde(rename = "BOOLEAN_CONSTRAINT")] + BooleanConstraint, + #[serde(rename = "LIST_CONSTRAINT")] + ListConstraint, + #[serde(rename = "CUSTOM_CONSTRAINT")] + CustomConstraint, +} + +impl Default for PolicyType { + fn default() -> PolicyType { + Self::PolicyTypeUnspecified + } +} diff --git a/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/rest_client_factory.rs b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/rest_client_factory.rs new file mode 100644 index 000000000..b7ab753c4 --- /dev/null +++ b/gcloud-sdk/src/rest_apis/google_rest_apis/servicecontrol_v1/rest_client_factory.rs @@ -0,0 +1,17 @@ +impl crate::GoogleRestApi { + pub async fn create_google_servicecontrol_v1_config( + &self, + ) -> crate::error::Result< + crate::google_rest_apis::servicecontrol_v1::apis::configuration::Configuration, + > { + let token = self.token_generator.create_token().await?; + Ok( + crate::google_rest_apis::servicecontrol_v1::apis::configuration::Configuration { + client: self.client.clone(), + user_agent: Some(crate::GCLOUD_SDK_USER_AGENT.to_string()), + oauth_access_token: Some(token.token.as_sensitive_str().to_string()), + ..Default::default() + }, + ) + } +}