You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Deleted keys were detected in the following stable discovery artifacts:
artifactregistry v1 45409ce
bigquery v2 58dcafa
connectors v1 5cb3b52
gameservices v1 1dbe4d1
orgpolicy v2 04de88b
recaptchaenterprise v1 e3e13dd
redis v1 5524626
vmmigration v1 689775f
## Deleted keys were detected in the following pre-stable discovery artifacts:
artifactregistry v1beta2 45409ce
cloudsupport v2beta d11e33d
gameservices v1beta 1dbe4d1
redis v1beta1 5524626
## Discovery Artifact Change Summary:
feat(analyticsadmin): update the api 1857db0
feat(apigee): update the api 5891817
feat(artifactregistry): update the api 45409ce
feat(bigquery): update the api 58dcafa
feat(chat): update the api 00a4b27
feat(classroom): update the api 13d8599
feat(cloudbuild): update the api f30d7d4
feat(clouddeploy): update the api ee2f63c
feat(cloudidentity): update the api d88519b
feat(cloudkms): update the api e8a865c
feat(cloudsearch): update the api 1778efa
feat(cloudsupport): update the api d11e33d
feat(compute): update the api 4fddcac
feat(connectors): update the api 5cb3b52
feat(dataproc): update the api 2cb1c07
feat(digitalassetlinks): update the api 8c45114
feat(displayvideo): update the api 93c6063
feat(dns): update the api 28c2e2c
feat(documentai): update the api 6749e1b
feat(eventarc): update the api fb99401
feat(gameservices): update the api 1dbe4d1
feat(gkehub): update the api 7f9103e
feat(logging): update the api b61344a
feat(metastore): update the api f59f0bd
feat(orgpolicy): update the api 04de88b
feat(prod_tt_sasportal): update the api a2466e3
feat(recaptchaenterprise): update the api e3e13dd
feat(redis): update the api 5524626
feat(retail): update the api f44e1a0
feat(run): update the api d8098d5
feat(searchconsole): update the api ae9b18d
feat(servicenetworking): update the api 186f055
feat(spanner): update the api 46715e5
feat(sqladmin): update the api 7f3cd9c
feat(storagetransfer): update the api 695b77d
feat(vmmigration): update the api 689775f
Copy file name to clipboardexpand all lines: docs/dyn/admin_directory_v1.customers.chrome.printers.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -388,7 +388,7 @@ <h3>Method Details</h3>
388
388
389
389
{ # Response for listing printers.
390
390
"nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
391
-
"printers": [ # List of printers. If `org_unit_id` was given in the request, then only printers visible for this OU will be returned. If `org_unit_id` was given in the request, then all printers will be returned.
391
+
"printers": [ # List of printers. If `org_unit_id` was given in the request, then only printers visible for this OU will be returned. If `org_unit_id` was not given in the request, then all printers will be returned.
392
392
{ # Printer configuration.
393
393
"auxiliaryMessages": [ # Output only. Auxiliary messages about issues with the printer configuration if any.
394
394
{ # Auxiliary message about issues with printers or settings. Example: {message_type:AUXILIARY_MESSAGE_WARNING, field_mask:make_and_model, message:"Given printer is invalid or no longer supported."}
Copy file name to clipboardexpand all lines: docs/dyn/admin_directory_v1.groups.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,7 @@ <h3>Method Details</h3>
211
211
212
212
Args:
213
213
customer: string, The unique ID for the customer's Google Workspace account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain. As an account administrator, you can also use the `my_customer` alias to represent your account's `customerId`. The `customerId` is also returned as part of the [Users](/admin-sdk/directory/v1/reference/users)
214
-
domain: string, The domain name. Use this field to get fields from only one domain. To return all domains for a customer account, use the `customer` query parameter instead.
214
+
domain: string, The domain name. Use this field to get groups from only one domain. To return all domains for a customer account, use the `customer` query parameter instead.
215
215
maxResults: integer, Maximum number of results to return. Max allowed value is 200.
216
216
orderBy: string, Column to use for sorting results
Copy file name to clipboardexpand all lines: docs/dyn/admob_v1.accounts.mediationReport.html
+4-4
Original file line number
Diff line number
Diff line change
@@ -98,12 +98,12 @@ <h3>Method Details</h3>
98
98
{ # Request to generate an AdMob Mediation report.
99
99
"reportSpec": { # The specification for generating an AdMob Mediation report. For example, the specification to get observed ECPM sliced by ad source and app for the 'US' and 'CN' countries can look like the following example: { "date_range": { "start_date": {"year": 2021, "month": 9, "day": 1}, "end_date": {"year": 2021, "month": 9, "day": 30} }, "dimensions": ["AD_SOURCE", "APP", "COUNTRY"], "metrics": ["OBSERVED_ECPM"], "dimension_filters": [ { "dimension": "COUNTRY", "matches_any": {"values": [{"value": "US", "value": "CN"}]} } ], "sort_conditions": [ {"dimension":"APP", order: "ASCENDING"} ], "localization_settings": { "currency_code": "USD", "language_code": "en-US" } } For a better understanding, you can treat the preceding specification like the following pseudo SQL: SELECT AD_SOURCE, APP, COUNTRY, OBSERVED_ECPM FROM MEDIATION_REPORT WHERE DATE >= '2021-09-01' AND DATE <= '2021-09-30' AND COUNTRY IN ('US', 'CN') GROUP BY AD_SOURCE, APP, COUNTRY ORDER BY APP ASC; # Network report specification.
100
100
"dateRange": { # Specification of a single date range. Both dates are inclusive. # The date range for which the report is generated.
101
-
"endDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # End date of the date range, inclusive. Must be greater than or equal to the start date.
101
+
"endDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day, with a zero year (e.g., an anniversary) * A year on its own, with a zero month and a zero day * A year and month, with a zero day (e.g., a credit card expiration date) Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # End date of the date range, inclusive. Must be greater than or equal to the start date.
102
102
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
103
103
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
104
104
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
105
105
},
106
-
"startDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # Start date of the date range, inclusive. Must be less than or equal to the end date.
106
+
"startDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day, with a zero year (e.g., an anniversary) * A year on its own, with a zero month and a zero day * A year and month, with a zero day (e.g., a credit card expiration date) Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # Start date of the date range, inclusive. Must be less than or equal to the end date.
107
107
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
108
108
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
109
109
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
@@ -161,12 +161,12 @@ <h3>Method Details</h3>
161
161
},
162
162
"header": { # Groups data helps to treat the generated report. Always sent as a first message in the stream response. # Report generation settings that describes the report contents, such as the report date range and localization settings.
163
163
"dateRange": { # Specification of a single date range. Both dates are inclusive. # The date range for which the report is generated. This is identical to the range specified in the report request.
164
-
"endDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # End date of the date range, inclusive. Must be greater than or equal to the start date.
164
+
"endDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day, with a zero year (e.g., an anniversary) * A year on its own, with a zero month and a zero day * A year and month, with a zero day (e.g., a credit card expiration date) Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # End date of the date range, inclusive. Must be greater than or equal to the start date.
165
165
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
166
166
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
167
167
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
168
168
},
169
-
"startDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`. # Start date of the date range, inclusive. Must be less than or equal to the end date.
169
+
"startDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day, with a zero year (e.g., an anniversary) * A year on its own, with a zero month and a zero day * A year and month, with a zero day (e.g., a credit card expiration date) Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # Start date of the date range, inclusive. Must be less than or equal to the end date.
170
170
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
171
171
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
172
172
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
0 commit comments