Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2242)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Oct 31, 2023
1 parent e5a53db commit c84e6ff
Show file tree
Hide file tree
Showing 30 changed files with 901 additions and 296 deletions.
22 changes: 21 additions & 1 deletion analyticsadmin/v1alpha/analyticsadmin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4298,7 +4298,7 @@
}
}
},
"revision": "20231018",
"revision": "20231027",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
Expand Down Expand Up @@ -5822,6 +5822,10 @@
"readOnly": true,
"type": "boolean"
},
"defaultConversionValue": {
"$ref": "GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue",
"description": "Optional. Defines a default value/currency for a conversion event."
},
"deletable": {
"description": "Output only. If set, this event can currently be deleted with DeleteConversionEvent.",
"readOnly": true,
Expand All @@ -5839,6 +5843,22 @@
},
"type": "object"
},
"GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue": {
"description": "Defines a default value/currency for a conversion event. Both value and currency must be provided.",
"id": "GoogleAnalyticsAdminV1alphaConversionEventDefaultConversionValue",
"properties": {
"currencyCode": {
"description": "When a conversion event for this event_name has no set currency, this currency will be applied as the default. Must be in ISO 4217 currency code format. See https://en.wikipedia.org/wiki/ISO_4217 for more.",
"type": "string"
},
"value": {
"description": "This value will be used to populate the value for all conversions of the specified event_name where the event \"value\" parameter is unset.",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1alphaConversionValues": {
"description": "Conversion value settings for a postback window for SKAdNetwork conversion value schema.",
"id": "GoogleAnalyticsAdminV1alphaConversionValues",
Expand Down
56 changes: 56 additions & 0 deletions analyticsadmin/v1alpha/analyticsadmin-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 21 additions & 1 deletion analyticsadmin/v1beta/analyticsadmin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1628,7 +1628,7 @@
}
}
},
"revision": "20231004",
"revision": "20231027",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1betaAccessBetweenFilter": {
Expand Down Expand Up @@ -2241,6 +2241,10 @@
"readOnly": true,
"type": "boolean"
},
"defaultConversionValue": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue",
"description": "Optional. Defines a default value/currency for a conversion event."
},
"deletable": {
"description": "Output only. If set, this event can currently be deleted with DeleteConversionEvent.",
"readOnly": true,
Expand All @@ -2258,6 +2262,22 @@
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue": {
"description": "Defines a default value/currency for a conversion event. Both value and currency must be provided.",
"id": "GoogleAnalyticsAdminV1betaConversionEventDefaultConversionValue",
"properties": {
"currencyCode": {
"description": "When a conversion event for this event_name has no set currency, this currency will be applied as the default. Must be in ISO 4217 currency code format. See https://en.wikipedia.org/wiki/ISO_4217 for more.",
"type": "string"
},
"value": {
"description": "This value will be used to populate the value for all conversions of the specified event_name where the event \"value\" parameter is unset.",
"format": "double",
"type": "number"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaCustomDimension": {
"description": "A definition for a CustomDimension.",
"id": "GoogleAnalyticsAdminV1betaCustomDimension",
Expand Down
56 changes: 56 additions & 0 deletions analyticsadmin/v1beta/analyticsadmin-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 13 additions & 3 deletions androiddeviceprovisioning/v1/androiddeviceprovisioning-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -851,13 +851,18 @@
}
}
},
"revision": "20230906",
"revision": "20231029",
"rootUrl": "https://androiddeviceprovisioning.googleapis.com/",
"schemas": {
"ClaimDeviceRequest": {
"description": "Request message to claim a device on behalf of a customer.",
"id": "ClaimDeviceRequest",
"properties": {
"configurationId": {
"description": "Optional. The unique identifier of the configuration (internally known as profile) to set for the section.",
"format": "int64",
"type": "string"
},
"customerId": {
"description": "The ID of the customer for whom the device is being claimed.",
"format": "int64",
Expand Down Expand Up @@ -894,7 +899,7 @@
"type": "string"
},
"simlockProfileId": {
"description": "Optional. Must and can only be set when DeviceProvisioningSectionType is SECTION_TYPE_SIM_LOCK. The unique identifier of the SimLock profile.",
"description": "Optional. ",
"format": "int64",
"type": "string"
}
Expand Down Expand Up @@ -1709,6 +1714,11 @@
"description": "Identifies one claim request.",
"id": "PartnerClaim",
"properties": {
"configurationId": {
"description": "Optional. The unique identifier of the configuration (internally known as profile) to set for the section.",
"format": "int64",
"type": "string"
},
"customerId": {
"description": "The ID of the customer for whom the device is being claimed.",
"format": "int64",
Expand Down Expand Up @@ -1745,7 +1755,7 @@
"type": "string"
},
"simlockProfileId": {
"description": "Optional. Must and can only be set when DeviceProvisioningSectionType is SECTION_TYPE_SIM_LOCK. The unique identifier of the SimLock profile.",
"description": "Optional. ",
"format": "int64",
"type": "string"
}
Expand Down
46 changes: 26 additions & 20 deletions androiddeviceprovisioning/v1/androiddeviceprovisioning-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c84e6ff

Please sign in to comment.