Skip to content

Commit 1ff7a90

Browse files
dependabot[bot]ahl
andauthored
Bump typify from 0.0.7 to 0.0.8 (#69)
* Bump typify from 0.0.7 to 0.0.8 Bumps [typify](https://github.com/oxidecomputer/typify) from 0.0.7 to 0.0.8. - [Release notes](https://github.com/oxidecomputer/typify/releases) - [Changelog](https://github.com/oxidecomputer/typify/blob/main/CHANGELOG.adoc) - [Commits](https://github.com/oxidecomputer/typify/commits) --- updated-dependencies: - dependency-name: typify dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * overwrite Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adam H. Leventhal <[email protected]>
1 parent eec8526 commit 1ff7a90

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

progenitor-impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = { version = "1.0", features = ["derive"] }
2020
serde_json = "1.0"
2121
syn = { version = "1.0", features = ["parsing"] }
2222
thiserror = "1.0"
23-
typify = "0.0.7"
23+
typify = "0.0.8"
2424
unicode-xid = "0.2"
2525

2626
[dev-dependencies]

progenitor-impl/tests/output/nexus.out

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,13 @@ pub mod types {
9898
Creating,
9999
#[serde(rename = "detached")]
100100
Detached,
101+
#[doc = "Disk is being attached to the given Instance"]
101102
#[serde(rename = "attaching")]
102103
Attaching(uuid::Uuid),
104+
#[doc = "Disk is attached to the given Instance"]
103105
#[serde(rename = "attached")]
104106
Attached(uuid::Uuid),
107+
#[doc = "Disk is being detached from the given Instance"]
105108
#[serde(rename = "detaching")]
106109
Detaching(uuid::Uuid),
107110
#[serde(rename = "destroyed")]
@@ -238,6 +241,7 @@ pub mod types {
238241
#[derive(Serialize, Deserialize, Debug, Clone)]
239242
#[serde(tag = "type", content = "params")]
240243
pub enum InstanceNetworkInterfaceAttachment {
244+
#[doc = "Create one or more `NetworkInterface`s for the `Instance`"]
241245
Create(InstanceNetworkInterfaceCreate),
242246
Default,
243247
None,
@@ -586,12 +590,16 @@ pub mod types {
586590
#[derive(Serialize, Deserialize, Debug, Clone)]
587591
#[serde(tag = "type", content = "value")]
588592
pub enum RouteDestination {
593+
#[doc = "Route applies to traffic destined for a specific IP address"]
589594
#[serde(rename = "ip")]
590595
Ip(String),
596+
#[doc = "Route applies to traffic destined for a specific IP subnet"]
591597
#[serde(rename = "ip_net")]
592598
IpNet(IpNet),
599+
#[doc = "Route applies to traffic destined for the given VPC."]
593600
#[serde(rename = "vpc")]
594601
Vpc(Name),
602+
#[doc = "Route applies to traffic"]
595603
#[serde(rename = "subnet")]
596604
Subnet(Name),
597605
}
@@ -600,14 +608,19 @@ pub mod types {
600608
#[derive(Serialize, Deserialize, Debug, Clone)]
601609
#[serde(tag = "type", content = "value")]
602610
pub enum RouteTarget {
611+
#[doc = "Forward traffic to a particular IP address."]
603612
#[serde(rename = "ip")]
604613
Ip(String),
614+
#[doc = "Forward traffic to a VPC"]
605615
#[serde(rename = "vpc")]
606616
Vpc(Name),
617+
#[doc = "Forward traffic to a VPC Subnet"]
607618
#[serde(rename = "subnet")]
608619
Subnet(Name),
620+
#[doc = "Forward traffic to a specific instance"]
609621
#[serde(rename = "instance")]
610622
Instance(Name),
623+
#[doc = "Forward traffic to an internet gateway"]
611624
#[serde(rename = "internet_gateway")]
612625
InternetGateway(Name),
613626
}
@@ -970,14 +983,19 @@ pub mod types {
970983
#[derive(Serialize, Deserialize, Debug, Clone)]
971984
#[serde(tag = "type", content = "value")]
972985
pub enum VpcFirewallRuleHostFilter {
986+
#[doc = "The rule applies to traffic from/to all instances in the VPC"]
973987
#[serde(rename = "vpc")]
974988
Vpc(Name),
989+
#[doc = "The rule applies to traffic from/to all instances in the VPC Subnet"]
975990
#[serde(rename = "subnet")]
976991
Subnet(Name),
992+
#[doc = "The rule applies to traffic from/to this specific instance"]
977993
#[serde(rename = "instance")]
978994
Instance(Name),
995+
#[doc = "The rule applies to traffic from/to a specific IP address"]
979996
#[serde(rename = "ip")]
980997
Ip(String),
998+
#[doc = "The rule applies to traffic from/to a specific IP subnet"]
981999
#[serde(rename = "ip_net")]
9821000
IpNet(IpNet),
9831001
}
@@ -1024,14 +1042,19 @@ pub mod types {
10241042
#[derive(Serialize, Deserialize, Debug, Clone)]
10251043
#[serde(tag = "type", content = "value")]
10261044
pub enum VpcFirewallRuleTarget {
1045+
#[doc = "The rule applies to all instances in the VPC"]
10271046
#[serde(rename = "vpc")]
10281047
Vpc(Name),
1048+
#[doc = "The rule applies to all instances in the VPC Subnet"]
10291049
#[serde(rename = "subnet")]
10301050
Subnet(Name),
1051+
#[doc = "The rule applies to this specific instance"]
10311052
#[serde(rename = "instance")]
10321053
Instance(Name),
1054+
#[doc = "The rule applies to a specific IP address"]
10331055
#[serde(rename = "ip")]
10341056
Ip(String),
1057+
#[doc = "The rule applies to a specific IP subnet"]
10351058
#[serde(rename = "ip_net")]
10361059
IpNet(IpNet),
10371060
}

0 commit comments

Comments
 (0)