Skip to content

Commit 449bef5

Browse files
Regenerate servicemanagement client (googleapis#6926)
This PR was generated using Autosynth. 🌈 <details><summary>Log from Synthtool</summary> ``` 2021-01-26 03:55:55,926 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-java-client-services/synth.py. On branch autosynth-servicemanagement nothing to commit, working tree clean 2021-01-26 03:55:56,354 synthtool [DEBUG] > Cloning https://github.com/googleapis/discovery-artifact-manager.git. DEBUG:synthtool:Cloning https://github.com/googleapis/discovery-artifact-manager.git. 2021-01-26 03:55:56,752 synthtool [DEBUG] > Cleaning output directory. DEBUG:synthtool:Cleaning output directory. 2021-01-26 03:55:56,754 synthtool [DEBUG] > Installing dependencies. DEBUG:synthtool:Installing dependencies. 2021-01-26 03:55:58,452 synthtool [INFO] > Generating servicemanagement v1. INFO:synthtool:Generating servicemanagement v1. 2021-01-26 03:55:58,452 synthtool [INFO] > 1.31.0 INFO:synthtool: 1.31.0 WARNING:root:object without properties DeleteServiceStrategy: OrderedDict([(u'description', u'Strategy used to delete a service. This strategy is a placeholder only used by the system generated rollout to delete a service.'), (u'id', u'DeleteServiceStrategy'), (u'properties', OrderedDict()), (u'type', u'object')]) WARNING:root:object without properties DisableServiceResponse: OrderedDict([(u'id', u'DisableServiceResponse'), (u'properties', OrderedDict()), (u'type', u'object'), (u'description', u'Operation payload for DisableService method.')]) WARNING:root:object without properties EnableServiceResponse: OrderedDict([(u'properties', OrderedDict()), (u'type', u'object'), (u'id', u'EnableServiceResponse'), (u'description', u'Operation payload for EnableService method.')]) Writing json metadata to clients/google-api-services-servicemanagement/v1.metadata.json 2021-01-26 03:55:59,881 synthtool [DEBUG] > Wrote metadata to clients/google-api-services-servicemanagement/synth.metadata. DEBUG:synthtool:Wrote metadata to clients/google-api-services-servicemanagement/synth.metadata. ``` </details> Full log will be available here: https://source.cloud.google.com/results/invocations/1a42608d-cd17-42ae-9390-c3421c65638c/targets - [ ] To automatically regenerate this PR, check this box.
1 parent cf8abcd commit 449bef5

File tree

6 files changed

+2687
-2687
lines changed

6 files changed

+2687
-2687
lines changed

clients/google-api-services-servicemanagement/v1.metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"maven": {
33
"groupId": "com.google.apis",
44
"artifactId": "google-api-services-servicemanagement",
5-
"version": "v1-rev20210108-1.31.0"
5+
"version": "v1-rev20210122-1.31.0"
66
}
77
}

clients/google-api-services-servicemanagement/v1/1.31.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-servicemanagement</artifactId>
25-
<version>v1-rev20210108-1.31.0</version>
25+
<version>v1-rev20210122-1.31.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
compile 'com.google.apis:google-api-services-servicemanagement:v1-rev20210108-1.31.0'
38+
compile 'com.google.apis:google-api-services-servicemanagement:v1-rev20210122-1.31.0'
3939
}
4040
```
4141

clients/google-api-services-servicemanagement/v1/1.31.0/com/google/api/services/servicemanagement/model/MetricDescriptor.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,17 @@ public final class MetricDescriptor extends com.google.api.client.json.GenericJs
115115
/**
116116
* The units in which the metric value is reported. It is only applicable if the `value_type` is
117117
* `INT64`, `DOUBLE`, or `DISTRIBUTION`. The `unit` defines the representation of the stored
118-
* metric values. Different systems may scale the values to be more easily displayed (so a value
119-
* of `0.02KBy` _might_ be displayed as `20By`, and a value of `3523KBy` _might_ be displayed as
120-
* `3.5MBy`). However, if the `unit` is `KBy`, then the value of the metric is always in thousands
121-
* of bytes, no matter how it may be displayed.. If you want a custom metric to record the exact
118+
* metric values. Different systems might scale the values to be more easily displayed (so a value
119+
* of `0.02kBy` _might_ be displayed as `20By`, and a value of `3523kBy` _might_ be displayed as
120+
* `3.5MBy`). However, if the `unit` is `kBy`, then the value of the metric is always in thousands
121+
* of bytes, no matter how it might be displayed. If you want a custom metric to record the exact
122122
* number of CPU-seconds used by a job, you can create an `INT64 CUMULATIVE` metric whose `unit`
123123
* is `s{CPU}` (or equivalently `1s{CPU}` or just `s`). If the job uses 12,005 CPU-seconds, then
124124
* the value is written as `12005`. Alternatively, if you want a custom metric to record data in a
125125
* more granular way, you can create a `DOUBLE CUMULATIVE` metric whose `unit` is `ks{CPU}`, and
126126
* then write the value `12.005` (which is `12005/1000`), or use `Kis{CPU}` and write `11.723`
127127
* (which is `12005/1024`). The supported units are a subset of [The Unified Code for Units of
128-
* Measure](http://unitsofmeasure.org/ucum.html) standard: **Basic units (UNIT)** * `bit` bit *
128+
* Measure](https://unitsofmeasure.org/ucum.html) standard: **Basic units (UNIT)** * `bit` bit *
129129
* `By` byte * `s` second * `min` minute * `h` hour * `d` day * `1` dimensionless **Prefixes
130130
* (PREFIX)** * `k` kilo (10^3) * `M` mega (10^6) * `G` giga (10^9) * `T` tera (10^12) * `P` peta
131131
* (10^15) * `E` exa (10^18) * `Z` zetta (10^21) * `Y` yotta (10^24) * `m` milli (10^-3) * `u`
@@ -344,17 +344,17 @@ public MetricDescriptor setType(java.lang.String type) {
344344
/**
345345
* The units in which the metric value is reported. It is only applicable if the `value_type` is
346346
* `INT64`, `DOUBLE`, or `DISTRIBUTION`. The `unit` defines the representation of the stored
347-
* metric values. Different systems may scale the values to be more easily displayed (so a value
348-
* of `0.02KBy` _might_ be displayed as `20By`, and a value of `3523KBy` _might_ be displayed as
349-
* `3.5MBy`). However, if the `unit` is `KBy`, then the value of the metric is always in thousands
350-
* of bytes, no matter how it may be displayed.. If you want a custom metric to record the exact
347+
* metric values. Different systems might scale the values to be more easily displayed (so a value
348+
* of `0.02kBy` _might_ be displayed as `20By`, and a value of `3523kBy` _might_ be displayed as
349+
* `3.5MBy`). However, if the `unit` is `kBy`, then the value of the metric is always in thousands
350+
* of bytes, no matter how it might be displayed. If you want a custom metric to record the exact
351351
* number of CPU-seconds used by a job, you can create an `INT64 CUMULATIVE` metric whose `unit`
352352
* is `s{CPU}` (or equivalently `1s{CPU}` or just `s`). If the job uses 12,005 CPU-seconds, then
353353
* the value is written as `12005`. Alternatively, if you want a custom metric to record data in a
354354
* more granular way, you can create a `DOUBLE CUMULATIVE` metric whose `unit` is `ks{CPU}`, and
355355
* then write the value `12.005` (which is `12005/1000`), or use `Kis{CPU}` and write `11.723`
356356
* (which is `12005/1024`). The supported units are a subset of [The Unified Code for Units of
357-
* Measure](http://unitsofmeasure.org/ucum.html) standard: **Basic units (UNIT)** * `bit` bit *
357+
* Measure](https://unitsofmeasure.org/ucum.html) standard: **Basic units (UNIT)** * `bit` bit *
358358
* `By` byte * `s` second * `min` minute * `h` hour * `d` day * `1` dimensionless **Prefixes
359359
* (PREFIX)** * `k` kilo (10^3) * `M` mega (10^6) * `G` giga (10^9) * `T` tera (10^12) * `P` peta
360360
* (10^15) * `E` exa (10^18) * `Z` zetta (10^21) * `Y` yotta (10^24) * `m` milli (10^-3) * `u`
@@ -389,17 +389,17 @@ public java.lang.String getUnit() {
389389
/**
390390
* The units in which the metric value is reported. It is only applicable if the `value_type` is
391391
* `INT64`, `DOUBLE`, or `DISTRIBUTION`. The `unit` defines the representation of the stored
392-
* metric values. Different systems may scale the values to be more easily displayed (so a value
393-
* of `0.02KBy` _might_ be displayed as `20By`, and a value of `3523KBy` _might_ be displayed as
394-
* `3.5MBy`). However, if the `unit` is `KBy`, then the value of the metric is always in thousands
395-
* of bytes, no matter how it may be displayed.. If you want a custom metric to record the exact
392+
* metric values. Different systems might scale the values to be more easily displayed (so a value
393+
* of `0.02kBy` _might_ be displayed as `20By`, and a value of `3523kBy` _might_ be displayed as
394+
* `3.5MBy`). However, if the `unit` is `kBy`, then the value of the metric is always in thousands
395+
* of bytes, no matter how it might be displayed. If you want a custom metric to record the exact
396396
* number of CPU-seconds used by a job, you can create an `INT64 CUMULATIVE` metric whose `unit`
397397
* is `s{CPU}` (or equivalently `1s{CPU}` or just `s`). If the job uses 12,005 CPU-seconds, then
398398
* the value is written as `12005`. Alternatively, if you want a custom metric to record data in a
399399
* more granular way, you can create a `DOUBLE CUMULATIVE` metric whose `unit` is `ks{CPU}`, and
400400
* then write the value `12.005` (which is `12005/1000`), or use `Kis{CPU}` and write `11.723`
401401
* (which is `12005/1024`). The supported units are a subset of [The Unified Code for Units of
402-
* Measure](http://unitsofmeasure.org/ucum.html) standard: **Basic units (UNIT)** * `bit` bit *
402+
* Measure](https://unitsofmeasure.org/ucum.html) standard: **Basic units (UNIT)** * `bit` bit *
403403
* `By` byte * `s` second * `min` minute * `h` hour * `d` day * `1` dimensionless **Prefixes
404404
* (PREFIX)** * `k` kilo (10^3) * `M` mega (10^6) * `G` giga (10^9) * `T` tera (10^12) * `P` peta
405405
* (10^15) * `E` exa (10^18) * `Z` zetta (10^21) * `Y` yotta (10^24) * `m` milli (10^-3) * `u`

clients/google-api-services-servicemanagement/v1/1.31.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-servicemanagement</artifactId>
11-
<version>v1-rev20210108-1.31.0</version>
12-
<name>Service Management API v1-rev20210108-1.31.0</name>
11+
<version>v1-rev20210122-1.31.0</version>
12+
<name>Service Management API v1-rev20210122-1.31.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)